:root {
    /* Colors - Light & Chic Theme */
    --color-bg: #ffffff;
    --color-bg-alt: #f8f9fa;
    /* Very light gray for alternate sections */
    --color-bg-dark: #2c2c2c;
    /* Used for footer or dark accents */
    --color-primary: #c8a165;
    /* Gold/Bronze */
    --color-primary-hover: #e0b472;
    --color-text: #333333;
    --color-text-light: #555555;
    --color-text-muted: #777777;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Gradients & Shadows */
    --gradient-overlay: linear-gradient(to bottom, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
    /* Much lighter overlay */
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Softer, spread out shadow */
    --shadow-glow: 0 0 15px rgba(200, 161, 101, 0.4);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

/* =========================================
   2. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   3. UTILITY CLASSES
   ========================================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.text-gold {
    color: var(--color-primary);
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--color-primary);
    color: var(--color-black);
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn:hover {
    background-color: transparent;
    color: var(--color-primary);
    box-shadow: var(--shadow-glow);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-black);
}

/* =========================================
   4. NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(31, 31, 31, 0.95);
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--color-black);
    /* Dark text for navbar links on light bg */
    letter-spacing: 2px;
}

.logo span {
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    color: var(--color-text);
    /* Ensure links are visible */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-black);
    /* Dark icon */
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    height: 100vh;
    width: 100%;
    /* Add a darker overlay specifically for the hero image to ensure white text pops */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('../img/hero/hero-main.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    opacity: 0;
    animation: slideUp 1s forwards 0.5s;
    color: #ffffff;
    /* Keep hero text white */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: slideUp 1s forwards 0.8s;
}

.hero-content .btn {
    opacity: 0;
    animation: slideUp 1s forwards 1.1s;
}

/* Scroll Indicator */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    /* White indicator */
    font-size: 2rem;
    animation: bounce 2s infinite;
}

/* =========================================
   6. ANIMATIONS
   ========================================= */
@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Fade in on Scroll Class */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    background-color: var(--color-bg-dark);
    /* Keep footer dark for contrast */
    padding: var(--spacing-md) 0;
    border-top: none;
    color: #cccccc;
    text-align: center;
}

footer a {
    color: #cccccc;
    transition: var(--transition-fast);
}

footer a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

/* Service Card Updates for Light Theme */
.service-card {
    background-color: #ffffff !important;
    box-shadow: var(--shadow-md);
    border: 1px solid #eeeeee;
}

.service-card h3 {
    color: var(--color-black);
}

.service-card p {
    color: var(--color-text-light);
}

/* Dark Section overrides (if any specific dark sections remain) */
.bg-dark {
    background-color: var(--color-bg-alt) !important;
    /* Make sections light gray instead of dark */
}

/* Navbar Scrolled State Update */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled .logo {
    color: #000;
}

.navbar.scrolled .nav-links a {
    color: #333;
}

.navbar.scrolled .hamburger {
    color: #000;
}

/* Mobile Menu Background */
@media (max-width: 768px) {
    .navbar .nav-links {
        background-color: #ffffff;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links a {
        color: #333;
    }
}

/* =========================================
   8. MEDIA QUERIES
   ========================================= */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        width: 100%;
        background-color: #ffffff;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        border-top: 1px solid #eee;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}