/* ==========================================================================
   HANAN OLIVA - CSS DESIGN SYSTEM & STYLES (GLASSMORPHISM THEME)
   ========================================================================== */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Color Palette (Olive Oil & Warm Mediterranean) */
    --primary: #52662c;          /* Warm Olive Green */
    --primary-light: #6a823b;    /* Leaf Green */
    --primary-dark: #36451d;     /* Deep Forest Olive Green */
    --accent: #caa634;           /* Warm Golden Olive Oil Yellow */
    --accent-light: #dfbe4d;     /* Translucent Golden Glow */
    --accent-dark: #9e7f20;      /* Amber / Honey Olive Oil */
    
    --bg-cream: #faf8f2;         /* Warm Ivory Crème */
    --bg-white: #ffffff;         /* Pure White */
    --bg-dark: #1f2613;          /* Dark Olive Green / Black */
    
    --text-dark: #2e3326;        /* Deep Charcoal Olive */
    --text-muted: #666d5b;       /* Muted Olive Gray */
    --text-light: #ffffff;       /* Pure White Text */
    
    --border-color: rgba(82, 102, 44, 0.12);
    
    /* Glassmorphism Tokens */
    --glass-bg-light: rgba(255, 248, 228, 0.72);      /* Golden frosted glass */
    --glass-bg-ultra-light: rgba(255, 245, 218, 0.48);/* Light golden frosted glass */
    --glass-bg-dark: rgba(36, 30, 15, 0.72);          /* Dark golden frosted glass */
    --glass-bg-card: rgba(255, 223, 112, 0.06);       /* Translucent card gold glass */
    --glass-border-light: rgba(255, 223, 112, 0.38);  /* Metallic gold glass border */
    --glass-border-card: rgba(255, 223, 112, 0.22);   /* Thin gold card border */
    --glass-blur: blur(16px);                         /* Frosting effect */
    
    /* Layout & Spacing */
    --max-width: 1200px;
    --header-height: 110px;
    
    /* Fonts */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    
    /* Shadow Effects */
    --shadow-sm: 0 4px 12px rgba(202, 166, 52, 0.08);
    --shadow-md: 0 8px 32px 0 rgba(202, 166, 52, 0.18);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.35);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Base Reset & Defaults --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent; /* Disable blue tap highlight on mobile devices */
}

a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus,
.btn:focus,
.social-icon:focus {
    outline: none !important;
    box-shadow: none !important;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    /* Full-page fixed background gradient representing rich olive oils */
    background: linear-gradient(135deg, #141a0d 0%, #293416 35%, #465725 70%, #806718 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Typography Utilities --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.3;
}

/* --- Reusable Components --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #caa634 0%, #ffe596 25%, #caa634 50%, #8a6c1c 75%, #caa634 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.4));
    animation: gold-shimmer 8s linear infinite;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    margin: 10px auto 0 auto;
    border-radius: 2px;
}

.section-title-left {
    font-size: 2.2rem;
    margin-bottom: 20px;
    position: relative;
    background: linear-gradient(to right, #caa634 0%, #ffe596 25%, #caa634 50%, #8a6c1c 75%, #caa634 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0px 1px 3px rgba(0, 0, 0, 0.3));
    animation: gold-shimmer 8s linear infinite;
}

.section-title-left::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    margin-top: 10px;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8); /* readable on dark gradient */
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.text-light {
    color: var(--text-light) !important;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 34px; /* Slightly taller and wider for premium look */
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px; /* Beautifully rounded pill shape */
    transition: var(--transition);
    cursor: pointer;
    border: none;
    transform: translateY(0);
}

.btn-primary {
    background-color: rgba(202, 166, 52, 0.28); /* Frosted gold glass background */
    color: var(--text-light);
    border: 2px solid rgba(255, 223, 112, 0.65); /* Rich gold glass border */
    border-bottom: 5px solid rgba(162, 127, 32, 0.85); /* 3D bottom bevel */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Golden light glow under the button */
    box-shadow: 0 0 15px rgba(255, 223, 112, 0.2), 0 6px 15px rgba(0, 0, 0, 0.25);
}

.btn-primary:hover {
    background-color: rgba(202, 166, 52, 0.45);
    border-color: rgba(255, 223, 112, 0.90);
    border-bottom-width: 6px; /* slightly thicker bevel on lift */
    transform: translateY(-3px);
    /* Brighter glowing light on hover */
    box-shadow: 0 0 25px rgba(255, 223, 112, 0.5), 0 10px 25px rgba(202, 166, 52, 0.45), 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
    /* Turns solid shining gold when clicked */
    background: linear-gradient(135deg, #dfbe4d 0%, #caa634 50%, #9e7f20 100%) !important;
    color: #141a0d !important;
    border-color: rgba(255, 223, 112, 0.95) !important;
    border-bottom-color: var(--accent-dark) !important;
    transform: translateY(2px);
    border-bottom-width: 2px; /* compressed bevel */
    /* Intense golden backlight glow when pressed */
    box-shadow: 0 0 30px rgba(255, 223, 112, 0.85), 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.12); /* Frosted white glass background */
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.35); /* Translucent white border */
    border-bottom: 5px solid rgba(255, 255, 255, 0.55); /* 3D bottom bevel */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Soft white/gold ambient glow */
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.15), 0 6px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.85);
    border-bottom-width: 6px;
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.3), 0 10px 25px rgba(255, 255, 255, 0.25), 0 5px 10px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
    /* Turns solid shining gold when clicked */
    background: linear-gradient(135deg, #dfbe4d 0%, #caa634 50%, #9e7f20 100%) !important;
    color: #141a0d !important;
    border-color: rgba(255, 223, 112, 0.95) !important;
    border-bottom-color: var(--accent-dark) !important;
    transform: translateY(2px);
    border-bottom-width: 2px;
    box-shadow: 0 0 30px rgba(255, 223, 112, 0.85), 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* --- Header & Navigation --- */
.header-navigation-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.main-header {
    position: relative;
    width: 100%;
    height: var(--header-height);
    background-color: transparent; /* Completely transparent at the top */
    border-bottom: none; /* Remove border at the top */
    transition: var(--transition);
}

.main-header.scrolled {
    height: 70px;
    background-color: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.header-container {
    max-width: var(--max-width);
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    margin-top: 15px; /* Push logo down from the top edge */
}

.logo-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    /* Premium gold glow - the logo itself has black bg + gold border */
    background: transparent;
    border: none;
    box-shadow:
        0 0 22px rgba(255, 215, 80, 0.55),
        0 0 45px rgba(255, 193, 7, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    transform: translateY(0);
}

/* Outer gold glow ring on hover */
.logo-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 215, 80, 0);
    transition: var(--transition);
    pointer-events: none;
}

.logo-icon {
    width: 130px;
    height: 130px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.6));
}

.logo:hover .logo-icon-wrapper {
    transform: scale(1.1) translateY(-3px);
    box-shadow:
        0 0 30px rgba(255, 215, 80, 0.8),
        0 0 60px rgba(255, 193, 7, 0.45),
        0 12px 30px rgba(0, 0, 0, 0.6);
}

.logo:hover .logo-icon-wrapper::after {
    border-color: rgba(255, 215, 80, 0.7);
}

.logo-text {
    display: none; /* Logo image already contains the brand name */
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
    transition: var(--transition);
}

.logo-title-main {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #e5242b; /* Polished crimson red */
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 5px rgba(0, 0, 0, 0.6);
    -webkit-text-stroke: 0.5px rgba(255, 215, 80, 0.45);
    transition: var(--transition);
}

.logo-title-sub {
    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 700;
    color: #ffd750; /* Metallic gold */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
}

.logo:hover .logo-title-main {
    transform: scale(1.03) translate(-1px, -1px);
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 0px #520a0d,
        5px 5px 8px rgba(0, 0, 0, 0.7);
    color: #ff333a;
}

.logo:hover .logo-title-sub {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 215, 80, 0.6), 0 2px 4px rgba(0, 0, 0, 0.8);
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: #e5242b; /* Brighter, shinier crimson red */
    line-height: 1.1;
    letter-spacing: -0.5px;
    /* Ultra-clean polished 3D block text shadow */
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 5px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
    display: inline-block;
    transform: translate(0, 0);
}

.logo:hover .logo-main {
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 0px #520a0d,
        5px 5px 0px #350608,
        6px 6px 8px rgba(0, 0, 0, 0.75);
    transform: translate(-2px, -2px);
}

.logo-sub {
    display: none; /* Hidden - name is inside the logo image */
}

.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-light);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-light);
}

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

.nav-link.active {
    color: var(--accent-light);
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: rgba(255, 223, 112, 0.08);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 223, 112, 0.20);
}

.social-icon:hover {
    background-color: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.3rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 5px;
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 650px; /* Increased from 550px to prevent button clipping */
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)), url('images/img_1782.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--text-light);
    text-align: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    padding: 0 24px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

.hero-glass-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px; /* Reduced from 35px to push buttons higher */
    max-width: 800px;
    margin: 0 auto;
    transform: translateY(-50px); /* Shift the card upwards */
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: softPulse 4s ease-in-out infinite;
}

.hero-title .highlight-text {
    color: #e5242b; /* Brighter polished crimson red */
    display: block;
    font-size: 4.8rem;
    letter-spacing: -0.5px;
    margin-top: 10px;
    -webkit-text-stroke: 1px rgba(255, 215, 80, 0.45);
    animation: neonGlow 4s ease-in-out infinite;
}

@keyframes softPulse {
    0%, 100% {
        opacity: 0.70;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    }
    50% {
        opacity: 1.0;
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.35), 0 2px 8px rgba(0, 0, 0, 0.9);
    }
}

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 
            0 0 12px rgba(229, 36, 43, 0.4),
            0 0 22px rgba(229, 36, 43, 0.2),
            1px 1px 0px #ab151b,
            2px 2px 0px #8f1217,
            3px 3px 0px #700e12,
            4px 4px 12px rgba(0, 0, 0, 0.85);
        opacity: 0.75;
    }
    50% {
        text-shadow: 
            0 0 25px rgba(255, 215, 80, 0.95),
            0 0 50px rgba(229, 36, 43, 0.85),
            0 0 70px rgba(229, 36, 43, 0.65),
            1px 1px 0px #ab151b,
            2px 2px 0px #8f1217,
            3px 3px 0px #700e12,
            4px 4px 12px rgba(0, 0, 0, 0.9);
        opacity: 1.0;
    }
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: var(--text-light);
    animation: bounce 2s infinite;
    z-index: 10;
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background: transparent; /* show full page gradient background */
}

.about-grid {
    background-color: rgba(255, 248, 228, 0.04); /* Frosted gold glass background */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid rgba(255, 223, 112, 0.35); /* Rich gold border */
    border-radius: 24px;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    /* 3D Board styling with shadows and highlights */
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3), 
        0 30px 60px rgba(0, 0, 0, 0.2), 
        inset 0 1px 0 rgba(255, 255, 255, 0.2), 
        inset 0 -1px 0 rgba(255, 223, 112, 0.15);
    transform: perspective(1000px) rotateX(1deg);
    transition: var(--transition);
}

.about-grid:hover {
    transform: perspective(1000px) rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 20px 45px rgba(0, 0, 0, 0.35),
        0 40px 80px rgba(202, 166, 52, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(255, 223, 112, 0.3);
}

.about-image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 223, 112, 0.25);
}

.about-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.03);
}

.about-info h2 {
    margin-bottom: 15px;
}

.about-lead {
    font-size: 1.15rem;
    color: #ffeba8; /* Soft golden text */
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.about-info p {
    margin-bottom: 16px;
    color: #ffe596; /* Warm golden text */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-features {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: rgba(255, 223, 112, 0.12);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 223, 112, 0.3);
}

.feature-item h3 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffeba8; /* Soft golden text */
}

/* --- Gallery & Filter Section --- */
.gallery-section {
    padding: 100px 0;
    background: transparent;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: rgba(255, 223, 112, 0.08);
    border: 2px solid rgba(255, 223, 112, 0.25);
    border-bottom: 5px solid rgba(255, 223, 112, 0.45); /* 3D bottom bevel */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 11px 26px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: var(--transition);
    /* Amber/gold backlight glow + dark drop shadow */
    box-shadow: 0 0 15px rgba(255, 223, 112, 0.25), 0 5px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
}

.filter-btn:hover {
    color: var(--text-light);
    border-color: rgba(255, 223, 112, 0.5);
    border-bottom-width: 6px; /* slightly thicker bevel on lift */
    background-color: rgba(255, 223, 112, 0.15);
    transform: translateY(-2px);
    /* Brighter glowing light on hover */
    box-shadow: 0 0 25px rgba(255, 223, 112, 0.5), 0 8px 18px rgba(0, 0, 0, 0.25);
}

.filter-btn:active {
    transform: translateY(2px);
    border-bottom-width: 2px; /* compressed bevel */
    /* Turns gold when clicked/active */
    background: linear-gradient(135deg, #dfbe4d 0%, #caa634 50%, #9e7f20 100%) !important;
    color: #141a0d !important;
    border-color: rgba(255, 223, 112, 0.9) !important;
    border-bottom-color: var(--accent-dark) !important;
    box-shadow: 0 0 30px rgba(255, 223, 112, 0.85), 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.filter-btn.active {
    background: linear-gradient(135deg, #dfbe4d 0%, #caa634 50%, #9e7f20 100%); /* Solid gold gradient */
    color: #141a0d; /* Dark text for rich gold contrast */
    font-weight: 700;
    border: 2px solid rgba(255, 223, 112, 0.9);
    border-bottom: 5px solid var(--accent-dark); /* Solid 3D bevel */
    /* Glowing gold light under the active button */
    box-shadow: 0 0 25px rgba(255, 223, 112, 0.7), 0 5px 15px rgba(202, 166, 52, 0.4);
}

.filter-btn.active:hover {
    background: linear-gradient(135deg, #ffe596 0%, #dfbe4d 50%, #caa634 100%);
    border-bottom-width: 6px;
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(255, 223, 112, 0.9), 0 8px 20px rgba(202, 166, 52, 0.5);
}

.filter-btn.active:active {
    transform: translateY(2px);
    border-bottom-width: 2px;
    box-shadow: 0 0 20px rgba(255, 223, 112, 0.6), 0 2px 5px rgba(0, 0, 0, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    min-height: 250px;
}

.gallery-loader {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    color: rgba(255, 255, 255, 0.7);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 223, 112, 0.15);
    border-radius: 50%;
    border-top-color: var(--accent-light);
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    background-color: rgba(255, 223, 112, 0.03);
    border: 1px solid var(--glass-border-card);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease, box-shadow 0.3s ease;
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) translateZ(0);
}

.gallery-item:hover {
    transform: perspective(800px) rotateX(6deg) rotateY(-4deg) translateZ(30px) translateY(-12px); /* Lifts up and tilts forward! */
    border-color: rgba(255, 223, 112, 0.85);
    box-shadow: 
        0 20px 35px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(255, 215, 80, 0.3); /* Warm gold ambient glow */
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(18, 25, 12, 0.9) 0%, rgba(18, 25, 12, 0.2) 60%, rgba(18, 25, 12, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.12) translateZ(10px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-title {
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-item-category {
    color: var(--accent-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

/* --- Lightbox Modal --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(82, 102, 44, 0.35) 0%, rgba(20, 26, 13, 0.99) 75%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.lightbox-content img {
    width: 680px;
    height: 510px; /* Unified 4:3 Aspect Ratio */
    max-width: 90vw;
    max-height: 58vh;
    object-fit: cover; /* All photos have exactly the same size/shape */
    border-radius: 16px;
    box-shadow: 
        0 0 60px rgba(255, 215, 80, 0.40), /* Gold backlight ambient glow */
        0 15px 50px rgba(0, 0, 0, 0.85);     /* Deep drop shadow */
    border: 2px solid rgba(255, 223, 112, 0.55); /* Thick metallic gold border */
    
    /* 3D Pop-out transition starting state (tilted back, smaller, faded) */
    transform: perspective(1200px) rotateX(15deg) rotateY(-8deg) translateZ(-200px);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
    will-change: transform, opacity;
}

.lightbox.active img {
    /* Pops forward out of screen, slight 3D angle */
    transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateZ(60px) scale(1.04);
    opacity: 1;
    animation: float-3d 5s ease-in-out infinite alternate;
    animation-delay: 0.65s;
}

/* 3D Card-flip transition when changing images */
.lightbox-content img.changing {
    transform: perspective(1200px) rotateY(90deg) translateZ(0) scale(0.9) !important;
    opacity: 0 !important;
    transition: transform 0.25s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.25s ease-in !important;
}

.lightbox-caption {
    color: #ffd750; /* Polished metallic gold title */
    margin-top: 20px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    font-family: var(--font-body);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.9);
}

/* Play Button for Slideshow */
.lightbox-play {
    position: absolute;
    top: 25px;
    right: 90px;
    background: rgba(255, 223, 112, 0.08);
    border: 1px solid rgba(255, 223, 112, 0.25);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-play:hover {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
    transform: scale(1.1);
}

.lightbox-play.playing {
    background: #e5242b;
    border-color: #e5242b;
    animation: pulse-red 2s infinite;
}

@keyframes float-3d {
    0% {
        transform: perspective(1200px) rotateX(0deg) rotateY(0deg) translateZ(60px) scale(1.04) translateY(0);
    }
    100% {
        transform: perspective(1200px) rotateX(4deg) rotateY(-2deg) translateZ(85px) scale(1.06) translateY(-8px);
    }
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(229, 36, 43, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(229, 36, 43, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(229, 36, 43, 0);
    }
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 30px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2100;
}

.lightbox-close:hover {
    color: var(--accent-light);
    transform: scale(1.1);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 223, 112, 0.05);
    border: none;
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
    z-index: 2050;
    border: 1px solid rgba(255, 223, 112, 0.2);
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--accent);
    color: var(--text-light);
    border-color: var(--accent);
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* --- Markets / Location Section --- */
.markets-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

.markets-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(202, 166, 52, 0.08) 0%, rgba(0,0,0,0) 70%);
    top: -100px;
    right: -100px;
    z-index: 3;
}

.markets-section .section-subtitle {
    color: #ffe596 !important;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.markets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.market-card {
    background-color: rgba(255, 248, 228, 0.04); /* Highly transparent glass to see video clearly */
    border: 2px solid rgba(255, 223, 112, 0.35); /* Solid rich gold border */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px; /* Beautifully rounded corners */
    padding: 35px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.market-card:hover {
    transform: translateY(-8px); /* Lifts up more dynamically */
    background-color: rgba(255, 248, 228, 0.15); /* Brighter glass on hover */
    border-color: rgba(255, 223, 112, 0.75); /* Brighter gold border on hover */
    box-shadow: 0 15px 35px rgba(202, 166, 52, 0.25), 0 0 15px rgba(255, 223, 112, 0.2); /* Warm gold hover glow */
}

.market-card.popular {
    border-color: rgba(255, 223, 112, 0.6);
    background-color: rgba(255, 223, 112, 0.08);
    box-shadow: 0 8px 32px 0 rgba(202, 166, 52, 0.25);
}

.market-card.video-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    min-height: 350px;
}

.market-card.video-card .market-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    margin-bottom: 0;
    z-index: 5;
}

.market-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.market-badge {
    align-self: flex-start;
    background-color: rgba(255, 223, 112, 0.15); /* Frosted gold glass badge */
    color: var(--accent-light); /* Golden text */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px; /* Highly rounded badge */
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 223, 112, 0.55); /* Metallic gold border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    z-index: 5;
    transition: var(--transition);
}

.market-card:hover .market-badge {
    background-color: rgba(255, 223, 112, 0.3);
    border-color: rgba(255, 223, 112, 0.85);
    color: var(--text-light);
}

.market-card h3 {
    color: var(--accent-light); /* Golden text for h3 */
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.market-location, .market-time {
    color: #ffe596; /* Warm light gold text for readability */
    font-size: 0.95rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.market-location i, .market-time i {
    color: var(--accent-light);
    width: 14px;
}

.market-desc {
    color: #ffeba8; /* Soft golden text for full description theme */
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    flex-grow: 1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.market-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-light);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: auto;
    text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

.market-link:hover {
    color: var(--text-light);
}

.market-link i {
    transition: transform 0.2s ease;
}

.market-link:hover i {
    transform: translateX(4px);
}

/* --- Contact Section --- */
.contact-section {
    padding: 100px 0;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: 500px;
}

.contact-centered-container {
    background-color: rgba(255, 248, 228, 0.04); /* Frosted glass background */
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid rgba(255, 223, 112, 0.35); /* Rich gold border */
    border-radius: 24px; /* Matches rounded corners of markets cards */
    padding: 50px;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-lead {
    font-size: 1.1rem;
    color: #ffeba8; /* Soft golden text for dark background legibility */
    margin-bottom: 35px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-detail-item {
    display: flex;
    gap: 12px;
    align-items: center;
    text-align: left;
}

.detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 223, 112, 0.12);
    color: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 223, 112, 0.3);
}

.contact-detail-item h4 {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--accent-light);
    margin-bottom: 2px;
}

.contact-detail-item p {
    color: #ffe596;
    font-size: 0.95rem;
}

.contact-detail-item a:hover {
    color: var(--text-light);
}

.social-integration-box {
    background-color: rgba(255, 248, 228, 0.02); /* Multi-layer glassmorphism */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 223, 112, 0.22);
    padding: 35px 24px;
    border-radius: 16px;
    margin-top: 20px;
}

.social-integration-box h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--accent-light); /* Golden title */
    text-shadow: 0 1px 3px rgba(0,0,0,0.4);
}

.social-integration-box p {
    color: #ffeba8; /* Golden subtitle */
    font-size: 0.9rem;
    margin-bottom: 25px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px; /* Taller premium pill shape */
    border-radius: 50px;
    color: #ffe596; /* Golden text default */
    font-size: 0.9rem;
    font-weight: 700;
    background-color: rgba(255, 248, 228, 0.04); /* Translucent glass */
    border: 2px solid rgba(255, 223, 112, 0.35); /* Rich gold border */
    border-bottom: 5px solid rgba(255, 223, 112, 0.55); /* 3D bottom bevel */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    /* Soft golden backlight ambient glow */
    box-shadow: 0 0 15px rgba(255, 223, 112, 0.15), 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    transform: translateY(0);
}

.btn-social.fb:hover {
    background-color: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.85);
    border-bottom: 6px solid rgba(24, 119, 242, 0.95); /* brand-colored 3D border */
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(24, 119, 242, 0.35), 0 10px 25px rgba(24, 119, 242, 0.2), 0 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-social.ig:hover {
    background-color: rgba(220, 39, 67, 0.2);
    border-color: rgba(220, 39, 67, 0.85);
    border-bottom: 6px solid rgba(220, 39, 67, 0.95); /* brand-colored 3D border */
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(220, 39, 67, 0.35), 0 10px 25px rgba(220, 39, 67, 0.2), 0 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-social.tt:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: #25f4ee;
    border-bottom: 6px solid #1ecbc6; /* brand-colored 3D border */
    color: var(--text-light);
    box-shadow: 0 0 20px rgba(37, 244, 238, 0.35), 0 10px 25px rgba(37, 244, 238, 0.2), 0 5px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.btn-social:active {
    /* Turns solid shining gold when clicked */
    background: linear-gradient(135deg, #dfbe4d 0%, #caa634 50%, #9e7f20 100%) !important;
    color: #141a0d !important;
    border-color: rgba(255, 223, 112, 0.95) !important;
    border-bottom: 2px solid var(--accent-dark) !important;
    transform: translateY(2px) !important;
    /* Intense golden backlight glow when pressed */
    box-shadow: 0 0 25px rgba(255, 223, 112, 0.75), 0 2px 5px rgba(0, 0, 0, 0.3) !important;
}

/* --- Footer --- */
.main-footer {
    background-color: var(--glass-bg-dark);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px 0;
    border-top: 1px solid rgba(255, 223, 112, 0.22);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    text-decoration: none;
}

.footer-logo span {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #e5242b; /* Brighter, shinier crimson red */
    /* Ultra-clean polished 3D block text shadow */
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 5px rgba(0, 0, 0, 0.7);
    transition: var(--transition);
    display: inline-block;
    transform: translate(0, 0);
}

.footer-logo:hover span {
    text-shadow: 
        1px 1px 0px #ab151b,
        2px 2px 0px #8f1217,
        3px 3px 0px #700e12,
        4px 4px 0px #520a0d,
        5px 5px 0px #350608,
        6px 6px 8px rgba(0, 0, 0, 0.75);
    transform: translate(-2px, -2px);
}

.logo-icon-wrapper.footer-wrapper {
    width: 110px;
    height: 110px;
    background: transparent;
    border: none;
    box-shadow:
        0 0 22px rgba(255, 215, 80, 0.5),
        0 0 45px rgba(255, 193, 7, 0.2),
        0 8px 25px rgba(0, 0, 0, 0.5);
}

.logo-icon-footer {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
    filter: drop-shadow(0px 2px 6px rgba(0, 0, 0, 0.6));
}

.footer-logo:hover .logo-icon-wrapper.footer-wrapper {
    transform: scale(1.08) translateY(-3px);
    box-shadow:
        0 0 30px rgba(255, 215, 80, 0.8),
        0 0 60px rgba(255, 193, 7, 0.45),
        0 12px 30px rgba(0, 0, 0, 0.6);
}

.footer-col-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col-links h3,
.footer-col-contact h3 {
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col-links a {
    font-size: 0.9rem;
}

.footer-col-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.footer-col-contact p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    line-height: 1.5;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 223, 112, 0.15);
    text-align: center;
    font-size: 0.8rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 35px;
    }
    
    .about-img {
        height: 320px;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .logo {
        gap: 10px;
        margin-top: 0; /* Reset spacing on mobile */
    }
    
    .logo-icon-wrapper {
        width: 60px;
        height: 60px;
        box-shadow:
            0 0 10px rgba(255, 215, 80, 0.55),
            0 0 20px rgba(255, 193, 7, 0.25),
            0 4px 10px rgba(0, 0, 0, 0.5);
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-title-main {
        font-size: 1.15rem;
        -webkit-text-stroke: 0.2px rgba(255, 215, 80, 0.35);
    }
    
    .logo-title-sub {
        display: none; /* Hide subtitle on mobile to save space and look elegant */
    }
    
    .logo-main {
        font-size: 1.6rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
    
    .header-socials .social-icon {
        display: none; /* Hide header social icons on mobile to make room for the larger logo */
    }
    
    .hero-section {
        padding-top: 120px;
    }
    
    .hero-glass-card {
        gap: 20px;
        max-width: 95%;
        padding: 30px 15px;
        transform: translateY(0);
    }
    
    .hero-title {
        font-size: 1.45rem;
        margin-bottom: 15px;
    }
    .hero-title .highlight-text {
        font-size: 1.95rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-title-left {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: rgba(20, 26, 13, 0.96);
        backdrop-filter: var(--glass-blur);
        -webkit-backdrop-filter: var(--glass-blur);
        padding: 30px 24px;
        transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        border-top: 1px solid rgba(255, 223, 112, 0.2);
    }
    
    /* Dynamic menu offset when the live banner is active */
    #live-status-banner.active ~ .main-header .nav-menu {
        top: 145px;
        height: calc(100vh - 145px);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        color: var(--text-light);
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-container {
        padding: 0 8px;
    }

    .logo {
        gap: 6px;
        margin-left: -4px;
    }

    .logo-title-main {
        font-size: 1.05rem;
        -webkit-text-stroke: 0.1px rgba(255, 215, 80, 0.25);
    }

    .live-banner {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-bottom: none;
        line-height: 1.35;
    }

    .live-banner-content {
        gap: 6px;
    }

    .live-3d-marker-wrapper {
        width: 18px;
        height: 18px;
        margin-right: -2px;
    }

    .live-3d-marker {
        font-size: 0.95rem;
    }

    .live-ticker-container {
        max-width: 155px;
        padding: 0 5px;
    }

    .live-ticker-text {
        animation-duration: 16s;
    }

    .live-btn-link {
        padding: 5px 12px;
        font-size: 0.72rem;
        border-bottom-width: 2.5px;
        box-shadow: 0 0 10px rgba(255, 215, 80, 0.3), 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .live-btn-link:hover {
        border-bottom-width: 3px;
        transform: translateY(-1px) scale(1.02);
    }

    .live-btn-link::after {
        display: none; /* Disable shimmer on mobile for performance/clutter reasons */
    }

    .live-status-tag {
        padding: 2px 8px;
        font-size: 0.65rem;
        margin-right: 4px;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .social-buttons {
        grid-template-columns: 1fr;
    }
}

/* --- Shimmer Animation for Gold Text --- */
@keyframes gold-shimmer {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* --- Scroll Animations System --- */
.scroll-animate {
    opacity: 0;
    will-change: transform, opacity;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Slide in from left */
.scroll-animate.slide-left {
    transform: translateX(-80px);
}

.scroll-animate.slide-left.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Slide in from right */
.scroll-animate.slide-right {
    transform: translateX(80px);
}

.scroll-animate.slide-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Fade and slide up (bouncy) */
.scroll-animate.fade-up {
    transform: translateY(60px) scale(0.96);
    transition: opacity 0.9s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.9s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-animate.fade-up.animated {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Staggered transition delays for Social Buttons */
.social-buttons .btn-social:nth-child(1) { transition-delay: 0s; }
.social-buttons .btn-social:nth-child(2) { transition-delay: 0.15s; }
.social-buttons .btn-social:nth-child(3) { transition-delay: 0.3s; }
.social-buttons .btn-social:nth-child(4) { transition-delay: 0.45s; }

/* Staggered transition delays for Market Cards */
.markets-grid .market-card:nth-child(1) { transition-delay: 0s; }
.markets-grid .market-card:nth-child(2) { transition-delay: 0.1s; }
.markets-grid .market-card:nth-child(3) { transition-delay: 0.2s; }
.markets-grid .market-card:nth-child(4) { transition-delay: 0.3s; }
.markets-grid .market-card:nth-child(5) { transition-delay: 0.4s; }
.markets-grid .market-card:nth-child(6) { transition-delay: 0.5s; }

/* ==========================================================================
   HEALTH & NUTRITION SECTION
   ========================================================================== */
.health-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.health-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 80, 0.08);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.health-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--gold-primary);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.health-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.health-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.health-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--gold-primary);
    box-shadow: 0 15px 40px rgba(255, 215, 80, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.health-card:hover h4 {
    color: var(--text-light);
}

.health-card:hover .health-icon {
    transform: scale(1.2) rotate(8deg);
    color: var(--gold-secondary);
    text-shadow: 0 0 15px rgba(255, 215, 80, 0.5);
}

/* Staggered delay for health cards */
.health-grid .health-card:nth-child(1) { transition-delay: 0s; }
.health-grid .health-card:nth-child(2) { transition-delay: 0.15s; }
.health-grid .health-card:nth-child(3) { transition-delay: 0.3s; }

/* ==========================================================================
   DYNAMIC LIVE STATUS BANNER
   ========================================================================== */
.live-banner {
    background: transparent; /* Fully transparent so the video is visible underneath */
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    color: var(--text-light);
    padding: 12px 20px;
    font-family: var(--font-body);
    font-size: 1.05rem; /* Slightly larger for extra readability */
    font-weight: 800; /* Extra bold (dikker) so it stands out clearly over the video */
    text-align: center;
    position: relative;
    z-index: 1001;
    box-shadow: none; /* Removed shadow to keep video clear */
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.95), 0 0 15px rgba(0, 0, 0, 0.8); /* Enhanced text-shadow for white text readability over video */
}

.live-banner.active {
    display: block;
    opacity: 1;
    animation: slideDownBanner 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

.live-banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* --- 3D Rotating Map Pin --- */
.live-3d-marker-wrapper {
    perspective: 800px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    margin-right: -4px;
}

.live-3d-marker {
    font-size: 1.25rem;
    color: #ffd750; /* Golden pin */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
    animation: spin3DMarker 3.5s infinite linear;
    transform-style: preserve-3d;
}

@keyframes spin3DMarker {
    0% {
        transform: rotateY(0deg) translateZ(0);
    }
    50% {
        transform: rotateY(180deg) translateZ(3px); /* 3D depth shift */
    }
    100% {
        transform: rotateY(360deg) translateZ(0);
    }
}

/* --- Fixed Tag Container --- */
.live-status-tag-container {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

/* --- Conveyor Belt / Scrolling Ticker Container --- */
.live-ticker-container {
    overflow: hidden;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    flex-grow: 1;
    max-width: 650px;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15px, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15px, black 95%, transparent);
    padding: 0 15px;
}

.live-ticker-text {
    display: inline-block;
    padding-left: 100%; /* Start completely off-screen from the right */
    animation: marquee-ticker 22s infinite linear;
    will-change: transform;
}

@keyframes marquee-ticker {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Pause ticker animation when user hovers over the banner to make it easy to read/interact (only on devices with hover capabilities, like desktop) */
@media (hover: hover) {
    .live-banner:hover .live-ticker-text {
        animation-play-state: paused;
    }
}

.live-pulse-dot {
    width: 12px;
    height: 12px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.75);
    animation: pulse-dot 1.8s infinite;
}

.live-pulse-dot.preparing {
    background-color: #ffb703;
    box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.75);
    animation: pulse-dot-orange 1.8s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0.75);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 196, 182, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(46, 196, 182, 0);
    }
}

@keyframes pulse-dot-orange {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0.75);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(255, 183, 3, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 183, 3, 0);
    }
}

.live-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ffd750 0%, #caa634 100%); /* Radiant gold gradient */
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-bottom: 4px solid #9e7f20; /* 3D bottom bevel */
    color: #141a0d !important; /* Dark text for high contrast readability */
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-shadow: none;
    box-shadow: 
        0 0 15px rgba(255, 215, 80, 0.4), /* Golden aura glow */
        0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    animation: attention-bounce 8s infinite ease-in-out;
}

/* Shimmer shine effect that repeats every 4 seconds */
.live-btn-link::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.45);
    transform: rotate(30deg);
    animation: shine-btn 4.5s infinite ease-in-out;
}

@keyframes shine-btn {
    0% {
        left: -60%;
    }
    15% {
        left: 140%;
    }
    100% {
        left: 140%;
    }
}

@keyframes attention-bounce {
    0%, 90%, 100% {
        transform: translateY(0);
    }
    93% {
        transform: translateY(-6px) scale(1.03);
    }
    95% {
        transform: translateY(2px) scale(0.98);
    }
    97% {
        transform: translateY(-3px) scale(1.01);
    }
    99% {
        transform: translateY(0);
    }
}

/* Button hover state - scale up, stronger glow, press down animation */
.live-btn-link:hover {
    animation: none; /* Disables the attention bounce during hover so hover styles work perfectly */
    background: linear-gradient(135deg, #ffe596 0%, #dfbe4d 100%);
    border-color: rgba(255, 255, 255, 0.7);
    border-bottom-width: 5px;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 0 25px rgba(255, 215, 80, 0.7), /* Radiant glow */
        0 8px 20px rgba(255, 215, 80, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    color: #141a0d !important;
}

/* Arrow micro-animation on hover */
.live-btn-link:hover i {
    transform: translateX(4px);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
}

.live-btn-link i {
    transition: transform 0.3s ease;
}

/* Button active/clicked state - pressed down 3D effect */
.live-btn-link:active {
    transform: translateY(2px) scale(0.98) !important;
    border-bottom-width: 1px !important;
    box-shadow: 
        0 0 10px rgba(255, 215, 80, 0.4),
        0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

/* --- Status Badges inside Banner --- */
.live-status-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-right: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.25);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    vertical-align: middle;
}

.live-status-tag.active {
    background: linear-gradient(135deg, #2ec4b6 0%, #0f9f90 100%);
    color: #fff;
    border-color: rgba(46, 196, 182, 0.4);
    animation: live-tag-pulse 1.5s infinite alternate;
}

@keyframes live-tag-pulse {
    0% {
        box-shadow: 0 2px 5px rgba(46, 196, 182, 0.3);
    }
    100% {
        box-shadow: 0 2px 12px rgba(46, 196, 182, 0.75);
    }
}

.live-status-tag.upcoming {
    background: linear-gradient(135deg, #ffd750 0%, #d8ac1b 100%);
    color: #141a0d;
    border-color: rgba(255, 215, 80, 0.4);
    text-shadow: none;
}

.live-status-tag.prep {
    background: linear-gradient(135deg, #ffb703 0%, #d39100 100%);
    color: #fff;
    border-color: rgba(255, 183, 3, 0.4);
}

/* --- Tourism Call-out --- */
.tourism-callout {
    width: 100%;
    margin-top: 45px;
}

.tourism-card {
    background: rgba(255, 248, 228, 0.03);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 2px solid rgba(255, 223, 112, 0.25);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.tourism-card:hover {
    border-color: rgba(255, 223, 112, 0.45);
    box-shadow: 0 8px 32px rgba(255, 223, 112, 0.08);
    transform: translateY(-2px);
}

.tourism-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    background: rgba(255, 223, 112, 0.1);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 223, 112, 0.3);
}

.tourism-text h4 {
    color: var(--accent-light);
    font-size: 1.25rem;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.tourism-text p {
    color: #ffeba8;
    font-size: 0.95rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    margin: 0;
}

.tourism-text em {
    color: var(--accent-light);
}

@media (max-width: 768px) {
    .tourism-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
}

/* --- FAQ Accordion Section --- */
.faq-section {
    padding: 100px 0;
    background: transparent;
    content-visibility: auto;
    contain-intrinsic-size: 600px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 248, 228, 0.03);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1.5px solid rgba(255, 223, 112, 0.2);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 223, 112, 0.35);
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    gap: 15px;
    transition: var(--transition);
}

.faq-question span:first-child {
    background: linear-gradient(90deg, #ffdf70 0%, #ffc634 50%, #ffdf70 100%);
    background-size: 200% auto;
    color: var(--accent-light);
    background-clip: text;
    -webkit-background-clip: text;
    transition: color 0.3s ease;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.faq-question:hover span:first-child {
    color: var(--text-light);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--accent-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 223, 112, 0.1);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 223, 112, 0.3);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
    padding: 0 25px 20px 25px;
    border-top: 1px solid rgba(255, 223, 112, 0.1);
    padding-top: 15px;
}

.faq-answer-content p {
    color: #ffeba8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.faq-item.active {
    background: rgba(255, 248, 228, 0.05);
    border-color: rgba(255, 223, 112, 0.45);
    box-shadow: 0 4px 20px rgba(255, 223, 112, 0.08);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--accent-light);
    color: #141a0d;
}
