/* css/mains.css - Fixed Hamburger + Mobile Friendly */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Inter:wght@400;500;600&display=swap');

:root {
    --primary: #c9a66b;
    --dark: #1a1a1a;
    --light: #f8f5f0;
    --gray: #555;
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 15px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo i {
    font-size: 2.1rem;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;                    /* Hidden on mobile by default */
    gap: 2rem;
}

.desktop-nav .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.desktop-nav .nav-link:hover,
.desktop-nav .nav-link.active {
    color: var(--primary);
}

/* Hamburger - NOW VISIBLE */
.hamburger {
    display: block;                   /* Visible on all screens until media query */
    background: none;
    border: none;
    color: white;
    font-size: 1.9rem;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a1a;
    flex-direction: column;
    padding: 1.5rem 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    text-align: center;
}

.mobile-nav.show {
    display: flex;                    /* Use .show class to toggle */
}

.mobile-nav a {
    color: white;
    text-decoration: none;
    font-size: 1.15rem;
    padding: 14px 20px;
    transition: background 0.3s;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: rgba(201, 166, 107, 0.15);
    color: var(--primary);
}

.mobile-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1.5rem 20px 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 1rem;
}

.mobile-social a {
    color: white;
    font-size: 1.6rem;
    transition: transform 0.3s;
}

.mobile-social a:hover {
    transform: scale(1.2);
    color: var(--primary);
}

/* ==================== HERO ==================== */
.hero {
    height: 100vh;
    min-height: 620px;
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.55)), 
                url('https://picsum.photos/id/1015/1920/1080') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.8rem, 9vw, 5.2rem);
    line-height: 1.05;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.hero-tagline {
    font-size: 1.1rem;
    margin-bottom: 2.2rem;
    opacity: 0.92;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    max-width: 320px;
    margin: 0 auto;
}

.btn-primary, .btn-secondary {
    padding: 15px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 280px;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.btn-primary {
    background: var(--primary);
    color: #1a1a1a;
}

.btn-primary:hover {
    background: #d4b88a;
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--dark);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.8);
}

@keyframes bounce {
    0%, 20% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 15px); }
    80%, 100% { transform: translate(-50%, 0); }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--dark);
    color: #ccc;
    padding: 3.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
}

.footer-col h4 {
    color: var(--primary);
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.9rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary);
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    margin-top: 1.5rem;
}

.social-icons a {
    color: #ccc;
    font-size: 1.7rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.copyright {
    margin-top: 2rem;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ==================== ANIMATIONS ==================== */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-300 { animation-delay: 300ms; }
.delay-600 { animation-delay: 600ms; }
.delay-900 { animation-delay: 900ms; }
.delay-1200 { animation-delay: 1200ms; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 769px) {
    .desktop-nav {
        display: flex;                /* Show desktop nav on large screens */
    }
    
    .hamburger {
        display: none;                /* Hide hamburger on desktop */
    }
    
    .hero-cta {
        flex-direction: row;
        justify-content: center;
        gap: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        width: auto;
        max-width: none;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        text-align: left;
    }
    
    .contact-link {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero-title {
        font-size: clamp(2.6rem, 10vw, 4.8rem);
    }
}