/* assets/css/style.css */
body {
    font-family: 'Kanit', sans-serif;
    color: var(--secondary-color);
    background-color: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Colors */
.text-primary-custom { color: var(--primary-color) !important; }
.text-secondary-custom { color: var(--secondary-color) !important; }
.bg-primary-custom { background-color: var(--primary-color) !important; }
.bg-secondary-custom { background-color: var(--secondary-color) !important; }

/* Buttons */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary-custom:hover {
    background-color: #e67e00;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.btn-outline-primary-custom {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
}
.btn-outline-primary-custom:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Base Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
}

/* Navbar */
.navbar-nav .nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    padding-left: 1rem;
    padding-right: 1rem;
    transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(255, 140, 0, 0.15) 100%);
    padding: 100px 0;
    position: relative;
}

/* Footer Links */
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

/* Badges */
.badge-custom {
    background-color: rgba(255, 140, 0, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Section Spacing */
.section-padding { padding: 80px 0; }

/* Micro animations */
.hover-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}
.hover-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
