/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;600&display=swap');

:root {
    --primary-color: #2C3E50;    /* น้ำเงินเข้ม สุภาพ */
    --secondary-color: #3498DB;  /* ฟ้าสดใส */
    --accent-color: #F1C40F;     /* เหลืองทอง */
    --bg-light: #F8F9FA;
}

body {
    font-family: 'Kanit', sans-serif;
    background-color: var(--bg-light);
    color: #333;
}

/* Navbar */
.navbar-custom {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.navbar-brand {
    font-weight: 600;
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4CA1AF 100%);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 50px 50px; /* ลูกเล่นโค้งมนด้านล่าง */
}

/* Cards */
.card-custom {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Buttons */
.btn-primary-custom {
    background-color: var(--secondary-color);
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    color: white;
}
.btn-primary-custom:hover {
    background-color: #2980B9;
    color: white;
}