:root {
    --bg-dark: #0a0a0a;
    --text-gold: #c5a059;
    --text-white: #f0f0f0;
    --text-grey: #a0a0a0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background-color: var(--bg-dark);
    font-family: 'Manrope', sans-serif;
    color: var(--text-white);
    overflow: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 35%; /* Matches text column width */
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: transparent;
}

.logo { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 1px; }
.home-link { color: var(--text-white); text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.home-link:hover { color: var(--text-gold); }

/* Scroll Setup */
.scroll-container {
    height: 100vh;
    width: 100vw;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
}

/* The Panel Layout */
.panel {
    height: 100vh;
    width: 100vw;
    scroll-snap-align: start;
    display: flex;
    overflow: hidden;
}

/* --- LEFT COLUMN: TEXT --- */
.text-column {
    width: 35%;
    height: 100%;
    background: #111;
    display: flex;
    align-items: center;
    padding: 0 4rem;
    position: relative;
    z-index: 10;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.content-wrapper {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.2s;
}

.panel.active .content-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: rgba(255,255,255,0.1);
    line-height: 1;
    margin-bottom: 1rem;
}

.category {
    color: var(--text-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-wrapper h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.content-wrapper p {
    color: var(--text-grey);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 400px;
}

.btn {
    display: inline-block;
    margin-top: 10px;
    color: var(--text-gold);
    text-decoration: none;
    border: 1px solid var(--text-gold);
    padding: 10px 20px;
    transition: 0.3s;
}
.btn:hover { background: var(--text-gold); color: #000; }


/* --- RIGHT COLUMN: IMAGE STAGE --- */
.image-column {
    width: 65%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. The Blurred Background (Fills blank space) */
.blur-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(30px) brightness(0.4);
    transform: scale(1.1); /* Prevent blur edges showing */
    z-index: 1;
}

/* Special case for video background */
.video-bg {
    background: #000; /* Fallback for video */
}

/* 2. The Main Image/Video (No Cutting!) */
.main-media {
    max-width: 90%;  /* Leaves a nice frame around */
    max-height: 90%; 
    width: auto;
    height: auto;
    object-fit: contain; /* THE MAGIC FIX: Shows full image */
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    opacity: 0;
    transform: scale(0.95);
    transition: transform 1s ease-out, opacity 1s ease;
}

.panel.active .main-media {
    opacity: 1;
    transform: scale(1);
}

/* Responsive: Stack on Mobile */
@media (max-width: 900px) {
    .panel { flex-direction: column-reverse; }
    
    .text-column {
        width: 100%;
        height: 45%;
        padding: 2rem;
        justify-content: center;
    }
    
    .image-column {
        width: 100%;
        height: 55%;
    }

    .navbar {
        width: 100%;
        padding: 1rem;
        background: rgba(0,0,0,0.8);
    }
    
    .number { font-size: 3rem; position: absolute; top: 20px; right: 20px; }
    .content-wrapper h1 { font-size: 1.8rem; }
    .content-wrapper p { font-size: 0.9rem; }
    .main-media { max-width: 95%; max-height: 95%; }
}































/* --- PREMIUM HEADER STYLES --- */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    backdrop-filter: blur(15px); /* Glass blur effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.header-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand .gold { color: var(--text-gold); }

.nav-menu { display: flex; gap: 2rem; align-items: center; }

.nav-item {
    text-decoration: none;
    color: #ccc;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-item:hover, .nav-item.active { color: #fff; }

/* Animated Underline for links */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--text-gold);
    transition: width 0.3s ease;
}

.nav-item:hover::after, .nav-item.active::after { width: 100%; }

/* Contact Button style in Header */
.btn-contact {
    border: 1px solid var(--text-gold);
    padding: 8px 20px;
    border-radius: 30px;
    color: var(--text-gold);
}

.btn-contact:hover {
    background: var(--text-gold);
    color: #000;
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.btn-contact::after { display: none; } /* Remove underline for button */

/* --- FOOTER & MAP STYLES --- */
.footer-panel .content-wrapper {
    width: 100%;
}

.contact-grid {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s;
}

.contact-item:hover { transform: translateX(10px); background: rgba(255,255,255,0.06); }

.icon-gold {
    color: var(--text-gold);
    font-size: 1.2rem;
    background: rgba(197, 160, 89, 0.1);
    padding: 10px;
    border-radius: 50%;
}

.contact-item h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 1rem;
    color: #fff;
    line-height: 1.4;
    margin: 0;
}

.social-links { margin-top: 1rem; display: flex; gap: 1rem; }

.social-links a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--text-gold);
    color: #000;
    transform: translateY(-3px);
}

.copyright {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #555;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1rem;
}

/* Map Specifics */
.map-column {
    position: relative;
    filter: grayscale(0.2); /* Slight stylized look for map */
    transition: filter 0.5s;
}

.map-column:hover { filter: grayscale(0); }

/* Mobile Adjustments */
.hamburger { display: none; cursor: pointer; }
.line { width: 25px; height: 3px; background: #fff; margin: 4px; }

@media (max-width: 900px) {
    .header-content { padding: 1rem; }
    .nav-menu { display: none; } /* Hide menu on mobile for now */
    .hamburger { display: block; }
    
    .contact-grid { gap: 1rem; }
    .footer-left { height: auto; padding: 3rem 2rem; }
    .map-column { height: 400px; } /* Set specific height for map on mobile */
}












@media (max-width: 900px) {
    .nav-menu {
        display: flex; /* <--- THIS WAS MISSING */
        position: fixed;
        left: -100%; 
        top: 70px; /* Adjust this if your header is taller/shorter */
        gap: 0;
        flex-direction: column;
        background: rgba(0,0,0,0.95); /* Solid dark background */
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        z-index: 999; /* Ensures it sits on top of images */
    }

    .nav-menu.active {
        left: 0; 
    }

    .nav-item {
        margin: 16px 0;
        display: block;
        font-size: 1.2rem;
    }
    
    /* Animation for Hamburger Icon turning into X */
    .hamburger.toggle .line:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle .line:nth-child(2) { opacity: 0; }
    .hamburger.toggle .line:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }
}





/* --- HIDE HEADER ANIMATION --- */
.glass-header {
    /* Existing styles remain... */
    transition: transform 0.4s ease-in-out, background 0.4s;
}

/* This class will be added by JS when scrolling down */
.glass-header.header-hidden {
    transform: translateY(-100%); /* Moves header up out of view */
}








