/* Root Variables */
:root {
    /* Primary Colors */
    --primary-gold: #e67e22;
    --secondary-gold: #C5A028;
    --deep-brown: #4A3C2B;
    --olive-green: #808000;
    
    /* Neutral Colors */
    --cream: #FFF8E7;
    --light-beige: #f5f5f5;
    --dark-beige: #E6D5B8;
    
    /* UI Colors */
    --text-dark: #2c3e50;
    --text-light: #FFF8E7;
    --background: #ffffff;
    --overlay: rgba(74, 60, 43, 0.85);
    --text-muted: #666;
    
    /* Layout */
    --header-height: 80px;
    --container-width: 1200px;
    
    /* Effects */
    --gold-gradient: linear-gradient(45deg, #e67e22, #f39c12);
    --shadow-soft: 0 2px 15px rgba(0, 0, 0, 0.05);
    --shadow-strong: 0 8px 24px rgba(74, 60, 43, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-lifted: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
}

h1, h2, h3, h4, .nav-links {
    font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--background);
    box-shadow: var(--shadow-soft);
    z-index: 1000;
    border-bottom: 2px solid var(--light-beige);
    transition: var(--transition-smooth);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4rem;
    max-width: var(--container-width);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-smooth);
}

.logo img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-links a.active {
    color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.15);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--background);
    box-shadow: var(--shadow-soft);
    border-radius: 8px;
    overflow: hidden;
    min-width: 200px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--text-light);
}

.btn-secondary {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
}

/* Footer Styles */
.footer {
    background: var(--deep-brown);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 2rem;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: brightness(2);
    margin-bottom: 1rem;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    nav {
        padding: 0 2rem;
    }

    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 1.5rem;
        box-shadow: var(--shadow-soft);
        backdrop-filter: blur(10px);
        gap: 1.5rem;
        animation: slideDown 0.3s ease-out;
    }
    
    .hamburger {
        display: block;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 4px;
        transition: var(--transition-smooth);
    }

    .hamburger:hover {
        background: rgba(212, 175, 55, 0.1);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Homepage Styles */
.home-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    background: linear-gradient(rgba(74, 60, 43, 0.7), rgba(74, 60, 43, 0.7)),
                url('../assets/images/hero-bg.jpg') center/cover no-repeat;
    color: var(--text-light);
}

.home-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.home-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .home-hero h1 {
        font-size: 2.5rem;
    }

    .home-hero p {
        font-size: 1rem;
    }
}
