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

html {
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    background-color: #000;
}

body {
    background-color: #000;
    color: #fff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

section {
    height: 100dvh;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
}

/* --- HERO --- */
.hero-bg {
    position: absolute;
    top: 0;
    left: 7.5%;
    width: 85%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.8)), 
                url('logo.png') no-repeat center 45%;
    background-size: contain;
    animation: breathing-logo 8s ease-in-out infinite;
}

/* --- GALLERY CONTROLS --- */
.gallery-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
    width: 100%;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* --- GALLERY SCROLLER --- */
#gallery {
    width: 100%;
    margin-top: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
}

#gallery::-webkit-scrollbar { display: none; }

#gallery-track {
    display: flex;
    gap: 15px;
    min-height: 350px; 
}

.gallery-item {
    flex: 0 0 250px;
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #111;
    cursor: zoom-in;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.gallery-item img.loaded {
    opacity: 1;
}

/* --- LIGHTBOX --- */
#lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.98);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 100000;
}

#lightbox.active { display: flex; }

#lightbox-img {
    max-width: 90%;
    max-height: 75%;
    object-fit: contain; 
}

#lightbox-back {
    margin-bottom: 20px;
    background: transparent;
    color: #ff3b3b;
    border: 2px solid #ff3b3b;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
}

/* --- NAV & UTILS --- */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    display: flex;
    justify-content: space-around;
    z-index: 1000;
}

nav a { color: #eee; text-decoration: none; text-transform: uppercase; font-size: 0.6rem; letter-spacing: 2px; }

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    max-width: 550px;
}

h2 { font-size: 1.3rem; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 15px; font-weight: 200; }
p { color: #aaa; line-height: 1.6; font-size: 0.85rem; }

@keyframes breathing-logo {
    0%, 100% { transform: scale(1); filter: brightness(100%); }
    50% { transform: scale(1.03); filter: brightness(115%); }
}

.location-tag { position: absolute; bottom: 40px; width: 100%; text-align: center; letter-spacing: 10px; text-transform: uppercase; color: #444; font-size: 0.65rem; }