/* =========================================
   RESET
========================================= */

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

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:#f5f5f5;
    font-family:'Inter',sans-serif;
    overflow-x:hidden;
    line-height:1.7;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

button{
    border:none;
    outline:none;
    cursor:pointer;
    font-family:'Inter',sans-serif;
}

/* =========================================
   VARIABLES
========================================= */

:root{

    --bg:#050505;
    --card:#111111;

    --bronze:#c79a76;
    --bronze-light:#e0b394;

    --white:#f5f5f5;
    --grey:#a8a8a8;

    --section-padding:120px;
    --transition:.4s ease;
}

/* =========================================
   SCROLLBAR
========================================= */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#050505;
}

::-webkit-scrollbar-thumb{
    background:var(--bronze);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:var(--bronze-light);
}

/* =========================================
   TEXT SELECTION
========================================= */

::selection{
    background:var(--bronze);
    color:#050505;
}

/* =========================================
   GLOBAL SECTIONS
========================================= */

section{
    padding:var(--section-padding) 8%;
}

.section-title{

    font-family:'Bebas Neue',sans-serif;

    font-size:4rem;

    letter-spacing:4px;

    color:var(--bronze);

    text-align:center;

    margin-bottom:70px;
}

/* =========================================
   BUTTONS
========================================= */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 34px;

    background:var(--bronze);

    border:1px solid var(--bronze);

    color:#050505;

    font-weight:600;

    letter-spacing:1px;

    transition:all .35s ease;
}

.btn:hover{

    background:transparent;

    color:var(--bronze);

    transform:translateY(-3px);

    box-shadow:0 8px 24px rgba(199,154,118,.18);
}

/* =========================================
   LOADER
========================================= */

.loader{

    position:fixed;

    inset:0;

    background:#050505;

    z-index:99999;

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.8s ease;

    animation: loader-fadeout 0.8s ease forwards;

    animation-delay:7s;
}

.loader img{

    width:min(60vw,650px);

    animation:pulseLogo 2s infinite;
}

@keyframes pulseLogo{

    0%{
        opacity:.5;
        transform:scale(.98);
    }

    50%{
        opacity:1;
        transform:scale(1);
    }

    100%{
        opacity:.5;
        transform:scale(.98);
    }
}

@keyframes loader-fadeout {

    0%, 99% {
        opacity:1;
        visibility:visible;
    }

    100% {
        opacity:0;
        visibility:hidden;
    }
}

/* =========================================
   CURSOR GLOW
========================================= */

.cursor-glow{

    width:22px;
    height:22px;

    border-radius:50%;

    background:rgba(199,154,118,.5);

    position:fixed;

    pointer-events:none;

    z-index:9999;

    transform:translate(-50%,-50%);

    filter:blur(12px);
}

/* =========================================
   VIEWFINDER CORNERS
========================================= */

.viewfinder{

    position:fixed;

    width:70px;
    height:70px;

    z-index:5500;

    pointer-events:none;
}

.top-left{

    top:20px;
    left:20px;

    border-top:2px solid var(--bronze);
    border-left:2px solid var(--bronze);
}

.top-right{

    top:20px;
    right:20px;

    border-top:2px solid var(--bronze);
    border-right:2px solid var(--bronze);
}

.bottom-left{

    bottom:20px;
    left:20px;

    border-bottom:2px solid var(--bronze);
    border-left:2px solid var(--bronze);
}

.bottom-right{

    bottom:20px;
    right:20px;

    border-bottom:2px solid var(--bronze);
    border-right:2px solid var(--bronze);
}

/* =========================================
   NAVBAR
========================================= */

nav{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    z-index:5000;

    opacity:0;

    visibility:hidden;

    transform:translateY(-15px);

    background:transparent;

    border-bottom:1px solid transparent;

    transition:opacity .35s ease, visibility .35s ease, transform .35s cubic-bezier(0.16, 1, 0.3, 1), padding .35s cubic-bezier(0.16, 1, 0.3, 1), background .35s cubic-bezier(0.16, 1, 0.3, 1), border-color .35s cubic-bezier(0.16, 1, 0.3, 1), backdrop-filter .35s cubic-bezier(0.16, 1, 0.3, 1);
}

body.page nav{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

    padding:12px 8%;

    background:rgba(5,5,5,.85);

    backdrop-filter:blur(18px);

    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(199,154,118,.2);

}

nav.scrolled{

    padding:12px 8%;

    background:rgba(5,5,5,.85);

    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);

    border-bottom:1px solid rgba(199,154,118,.2);
}

nav.visible{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}

.hero-logo{

    position:fixed;

    left:10vw;

    top:50%;

    width:min(550px,40vw);

    height:auto;

    transform:translateY(-50%);

    object-fit:contain;

    z-index:5501;

    filter:
        drop-shadow(0 25px 50px rgba(0,0,0,.42))
        drop-shadow(0 0 22px rgba(199,154,118,.12));

    transform-origin:center center;

    transition:

        left .35s ease,

        top .35s ease,

        width .35s ease,

        transform .35s ease,

        filter .35s ease;

    will-change:

        left,

        top,

        transform,

        width;

}

#heroLogoLink{

    position:fixed;

    display:block;

    pointer-events:auto;

    cursor:pointer;

    z-index:5500;

}

#heroLogoLink img{

    pointer-events:none;

    display:block;

}

nav.scrolled .logo-target img{

    opacity:1;

}


/* =========================================
   LOGO
========================================= */

.navbar-left{

    display:flex;

    align-items:center;

    justify-content:flex-start;

    min-width:90px;

    height:45px;
}

.logo-target{

    width:75px;

    height:75px;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

    flex-shrink:0;

    pointer-events:auto;

}

.logo-target img{

    width:100%;

    height:auto;

    opacity:0;

    user-select:none;

    pointer-events:none;

}

/* =========================================
   NAV LINKS
========================================= */

nav ul{

    display:flex;

    gap:26px;

    align-items:center;

    opacity:1;

    transform:none;
}

nav.scrolled ul{

    opacity:1;

    transform:none;
}

nav ul li{

    opacity:1;

    transform:none;

    list-style:none;
}

nav ul li a{

    color:var(--white);

    transition:color .3s ease, text-shadow .3s ease;

    font-size:.95rem;

    font-weight:500;

    letter-spacing:.5px;

    position:relative;
}

nav ul li a:hover{

    color:var(--bronze);

    text-shadow:0 0 10px rgba(199,154,118,0.35);
}

nav ul li.active a{

    color:var(--bronze);
}

/* =========================================
   HAMBURGER
========================================= */

.hamburger{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;
}

.hamburger span{

    width:28px;
    height:2px;

    background:var(--white);

    transition:var(--transition);
}

/* =========================================
   HERO
========================================= */

.hero{

    position:relative;

    width:100%;

    height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    isolation:isolate;

    background:#050505;
}

/* =========================================
   HERO BACKGROUND
========================================= */

.hero-bg{

    position:absolute;

    inset:0;

    background:url("../assets/street/1.webp");

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    transform:scale(1);

    transition:
        opacity .9s ease,
        filter .8s ease,
        transform .25s linear;

    will-change:
        transform,
        opacity,
        filter;

    z-index:0;
}

/* =========================================
   OVERLAY
========================================= */

.hero-overlay{

    position:absolute;

    inset:0;

    background:

        radial-gradient(circle at center,
            rgba(0,0,0,.08) 0%,
            rgba(0,0,0,.25) 45%,
            rgba(0,0,0,.72) 100%),

        linear-gradient(
            to bottom,
            rgba(5,5,5,.15),
            rgba(5,5,5,.45)
        );

    z-index:1;
}

/* =========================================
   FILM GRAIN
========================================= */

.hero-noise{

    position:absolute;

    inset:0;

    background-image:
        radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);

    background-size:4px 4px;

    opacity:.12;

    mix-blend-mode:soft-light;

    pointer-events:none;

    z-index:2;
}

/* =========================================
   LIGHT LEAK
========================================= */

.hero-light-leak{

    position:absolute;

    inset:-20%;

    background:

        radial-gradient(circle at 18% 30%,
            rgba(199,154,118,.16),
            transparent 32%),

        radial-gradient(circle at 82% 72%,
            rgba(255,255,255,.05),
            transparent 38%);

    filter:blur(70px);

    opacity:.8;

    pointer-events:none;

    z-index:2;
}

/* =========================================
   HERO WRAPPER
========================================= */

.hero-wrapper{

    position:relative;

    z-index:10;

    width:min(1400px,90%);

    margin:auto;

    display:grid;

    grid-template-columns:42% 58%;

    align-items:center;

    gap:80px;
}

/* =========================================
   LEFT
========================================= */

.hero-left{

    min-height:500px;

    display:flex;

    align-items:center;

    justify-content:center;

}

.logo-slot{

    width:min(440px,32vw);

    height:240px;

    margin:auto;

    pointer-events:none;

}

/* =========================================
   LOGO
========================================= */

#heroLogoLink{

    position:fixed;

    left:0;

    top:0;

    width:0;

    height:0;

    z-index:5500;

    pointer-events:none;

}

/* =========================================
   RIGHT
========================================= */
/* =========================================
   RIGHT
========================================= */

.hero-right{

    display:flex;

    flex-direction:column;

    align-items:flex-end;

    text-align:right;

    z-index:15;
}

.hero-brand{

    font-family:'Cormorant Garamond',serif;

    font-size:clamp(5rem,8vw,8rem);

    font-weight:500;

    line-height:.95;

    margin-bottom:18px;

    color:#fff;

    text-shadow:0 8px 30px rgba(0,0,0,.35);
}

#heroSubtitle{

    font-family:'Bebas Neue',sans-serif;

    font-size:2rem;

    letter-spacing:10px;

    color:var(--bronze);

    margin-bottom:18px;
}

.hero-right p{

    max-width:520px;

    color:#d8d8d8;

    font-size:1.05rem;

    line-height:1.9;

    margin-bottom:36px;
}

/* =========================================
   BUTTONS
========================================= */

.hero-buttons{

    display:flex;

    justify-content:flex-end;

    gap:18px;

    margin-bottom:28px;
}

/* =========================================
   INSTAGRAM
========================================= */

.hero-instagram{

    color:#b8b8b8;

    letter-spacing:1px;

    transition:.35s ease;
}

.hero-instagram:hover{

    color:var(--bronze);
}

/* =========================================
   CAMERA HUD
========================================= */

.hero-camera-hud{

    position:absolute;

    inset:0;

    pointer-events:none;

    z-index:5;

    font-family:'Inter',sans-serif;

    font-size:.78rem;

    letter-spacing:2px;

    color:rgba(255,255,255,.24);
}

.hud-top-left{

    position:absolute;

    top:42px;

    left:42px;
}

.hud-top-right{

    position:absolute;

    top:42px;

    right:42px;

    display:flex;

    gap:18px;
}

.hud-bottom-left{

    position:absolute;

    bottom:42px;

    left:42px;
}

.hud-bottom-right{

    position:absolute;

    bottom:42px;

    right:42px;
}

/* =========================================
   FOCUS BOX
========================================= */

.hero-focus-box{

    position:absolute;

    width:90px;

    height:90px;

    left:24%;

    top:50%;

    transform:translate(-50%,-50%);

    border:2px solid rgba(199,154,118,.55);

    opacity:0;

    z-index:15;

    pointer-events:none;
}


/* =========================================
   HERO BUTTONS
========================================= */

.hero-buttons{

    display:flex;

    justify-content:flex-end;

    gap:18px;

    margin-bottom:28px;
}

.hero-buttons .btn{

    min-width:210px;

    height:56px;

    display:flex;

    align-items:center;

    justify-content:center;

    border:1px solid rgba(199,154,118,.65);

    background:rgba(255,255,255,.03);

    backdrop-filter:blur(12px);

    color:#fff;

    letter-spacing:1px;

    transition:all .45s ease;

    position:relative;

    overflow:hidden;
}

.hero-buttons .btn::before{

    content:"";

    position:absolute;

    inset:0;

    background:var(--bronze);

    transform:translateX(-101%);

    transition:transform .45s ease;

    z-index:-1;
}

.hero-buttons .btn:hover::before{

    transform:translateX(0);
}

.hero-buttons .btn:hover{

    color:#050505;

    transform:translateY(-3px);

    border-color:var(--bronze);

    box-shadow:0 12px 35px rgba(199,154,118,.25);
}

.btn-outline{

    background:transparent !important;
}

/* =========================================
   HERO INSTAGRAM
========================================= */

.hero-instagram{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:rgba(255,255,255,.72);

    font-size:.95rem;

    letter-spacing:1px;

    text-decoration:none;

    transition:all .35s ease;
}

.hero-instagram:hover{

    color:var(--bronze);

    transform:translateX(6px);
}

/* =========================================
   HERO ANIMATION
========================================= */

@keyframes kenburns{

    from{
        transform:scale(1);
    }

    to{
        transform:scale(1.12);
    }
}

@keyframes meshMove{

    0%{

        transform:
        translate(0,0)
        rotate(0deg)
        scale(1);

    }

    50%{

        transform:
        translate(-3%,2%)
        rotate(2deg)
        scale(1.08);

    }

    100%{

        transform:
        translate(3%,-2%)
        rotate(-2deg)
        scale(1.05);

    }

}

@keyframes grain{

    0%{

        transform:translate(0,0);

    }

    25%{

        transform:translate(-2px,1px);

    }

    50%{

        transform:translate(2px,-1px);

    }

    75%{

        transform:translate(-1px,2px);

    }

    100%{

        transform:translate(0,0);

    }

}

/* =========================================
   ABOUT SECTION
========================================= */

.about-container{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;
}

.about-image{

    overflow:hidden;

    border-radius:12px;
}

.about-image img{

    transition:.8s ease;
}

.about-image:hover img{

    transform:scale(1.05);
}

.about-text{

    color:var(--grey);

    font-size:1.1rem;

    display:flex;

    flex-direction:column;

    gap:25px;
}

.about-text p{

    line-height:1.9;
}

/* =========================================
   FEATURED STORIES
========================================= */

.stories-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;
}

.story-card{

    display:flex;

    flex-direction:column;

    background:#111;

    border:1px solid rgba(199,154,118,.12);

    border-radius:14px;

    overflow:hidden;

    cursor:pointer;

    transition:.35s ease;
}

.story-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    display:block;

    transition:.8s ease;
}

.story-info{

    padding:24px;

    background:#0b0b0b;

    color:#fff;

    flex:1;
}

.story-info h3{

    font-family:'Bebas Neue',sans-serif;

    font-size:2rem;

    letter-spacing:2px;

    margin:0;
}

.story-info p{

    margin-top:12px;

    font-family:'Inter',sans-serif;

    font-size:.95rem;

    line-height:1.7;

    color:#cfcfcf;
}

.story-card:hover{

    transform:translateY(-6px);

    border-color:rgba(199,154,118,.35);

    box-shadow:0 18px 35px rgba(0,0,0,.35);
}

.story-card:hover img{

    transform:scale(1.04);
}

/* =========================================
   WALL OF FRAMES
========================================= */

.gallery-filters{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:15px;

    margin-bottom:60px;
}

.gallery-filters button{

    padding:12px 22px;

    border:1px solid rgba(199,154,118,.4);

    background:transparent;

    color:white;

    transition:var(--transition);
}

.gallery-filters button:hover{

    background:var(--bronze);

    color:#050505;
}

.gallery-filters button.active{

    background:var(--bronze);

    color:#050505;
}

/* =========================================
   GALLERY GRID LAYOUT
========================================= */

.gallery-grid{

    column-count:3;

    column-gap:22px;

    width:100%;

    max-width:1360px;

    margin:0 auto;
}

.gallery-item{

    display:inline-block;

    width:100%;

    margin-bottom:22px;

    break-inside:avoid;

    -webkit-column-break-inside:avoid;

    overflow:hidden;

    border-radius:16px;

    cursor:pointer;

    background:transparent;

    border:none;

    transition:all .4s ease;
}

.gallery-item.dimmed{

    opacity:.25;

    filter:grayscale(100%);

    transform:scale(.97);
}

.gallery-item.active-filter{

    opacity:1;

    filter:grayscale(0%);

    transform:scale(1.02);

    box-shadow:
    0 0 25px rgba(199,154,118,.18);
}

/* make active-filtered items visually above dimmed ones */
.gallery-item.active-filter{
    position:relative;
    z-index:5;
}

/* temporary focus highlight when filter selected on desktop */
.focus-highlight{
    outline:3px solid rgba(199,154,118,.9);
    box-shadow:0 0 34px rgba(199,154,118,.28);
    transform:translateY(-6px) scale(1.03);
    transition:all .35s ease;
}

.gallery-item img{

    width:100%;

    display:block;

    border-radius:16px;

    transition:.8s ease;

    object-fit:cover;

    background:transparent;
}

.gallery-item.dimmed img{

    filter:grayscale(100%);

    opacity:.35;
}

.gallery-item:hover{

    transform:translateY(-6px);

    box-shadow:
    0 0 20px rgba(199,154,118,.10);
}

.gallery-item:hover img{

    transform:scale(1.05);

    filter:brightness(1.08);
}

.gallery-cta{

    margin-top:60px;

    text-align:center;
}

/* Mobile: hide dimmed items (filters should remove non-matching items on small screens) */
@media (max-width: 1024px) {

    .gallery-item.dimmed{

        display: none !important;

        opacity: 1 !important;

        transform: none !important;

        filter: none !important;

    }

    .gallery-item.active-filter{

        display: block !important;

    }

}

/* =========================================
   THEME OF THE MONTH
========================================= */

.theme-container{

    display:grid;

    grid-template-columns:
    1.2fr 1fr;

    gap:70px;

    align-items:center;
}

.theme-image{

    overflow:hidden;

    border-radius:14px;
}

.theme-image img{

    transition:1s ease;
}

.theme-image:hover img{

    transform:scale(1.05);
}

.theme-content h3{

    font-family:'Cormorant Garamond';

    font-size:5rem;

    line-height:1;

    color:var(--bronze);

    margin-bottom:20px;
}

.theme-content p{

    color:var(--grey);

    font-size:1.1rem;

    line-height:1.9;
}

/* =========================================
   PHOTOS OF THE MONTH
========================================= */

.month-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    width:100%;

    max-width:1280px;

    margin:0 auto;
}

.month-card{

    position:relative;

    display:flex;

    flex-direction:column;

    background:#111;

    border:1px solid rgba(199,154,118,.12);

    border-radius:16px;

    padding:14px;

    transition:.35s ease;
}

.month-img-wrap{

    width:100%;

    overflow:hidden;

    border-radius:12px;
}

.month-card img{

    width:100%;

    aspect-ratio:4/5;

    object-fit:cover;

    display:block;

    transition:.8s ease;

    border-radius:12px;
}

/* #1 Porsche */
.month-card:nth-child(1) img{

    object-position:center center;
}

/* #2 Rider */
.month-card:nth-child(2) img{

    object-position:55% 25%;
}

/* #3 Royal Enfield */
.month-card:nth-child(3) img{

    object-position:65% center;
}

.month-card span{

    position:absolute;

    top:24px;

    left:24px;

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:var(--bronze);

    color:#050505;

    font-family:'Bebas Neue',sans-serif;

    font-size:1.3rem;

    z-index:5;

    box-shadow:0 4px 14px rgba(0,0,0,.4);
}

.month-card h3{

    padding:16px 10px 4px;

    margin:0;

    text-align:center;

    font-family:'Inter',sans-serif;

    font-size:1.05rem;

    font-weight:600;

    color:#fff;

    background:transparent;
}

.month-card h3 a{

    color:#fff;

    transition:color .3s ease;
}

.month-card h3 a:hover{

    color:var(--bronze);
}

.month-card:hover{

    transform:translateY(-6px);

    border-color:rgba(199,154,118,.35);

    box-shadow:0 18px 35px rgba(0,0,0,.35);
}

.month-card:hover img{

    transform:scale(1.06);
}

/* =========================================
   BEHIND THE LENS
========================================= */

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;
}

.stat-card{

    text-align:center;

    background:var(--card);

    padding:60px 30px;

    border-radius:14px;

    transition:var(--transition);
}

.stat-card h2{

    font-family:'Bebas Neue';

    font-size:4rem;

    color:var(--bronze);

    letter-spacing:3px;

    margin-bottom:10px;
}

.stat-card p{

    color:var(--grey);

    letter-spacing:1px;
}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 0 30px
    rgba(199,154,118,.15);
}

/* =========================================
   FADE-IN ANIMATION SUPPORT
========================================= */

.fade-up{

    opacity:0;

    transform:translateY(50px);

    transition:.8s ease;
}

.fade-up.show{

    opacity:1;

    transform:translateY(0);
}

/* =========================================
   JOIN US
========================================= */

#join{

    text-align:center;

    padding:140px 8%;
}

#join h2{

    font-family:'Bebas Neue';

    font-size:5rem;

    letter-spacing:4px;

    color:var(--bronze);

    margin-bottom:20px;
}

#join p{

    color:var(--grey);

    max-width:700px;

    margin:0 auto 40px auto;
}

#join a{

    display:inline-block;

    padding:16px 36px;

    background:var(--bronze);

    color:#050505;

    font-weight:600;

    transition:var(--transition);
}

#join a:hover{

    transform:translateY(-5px);

    background:var(--bronze-light);
}

/* =========================================
   CONTACT
========================================= */

#contact{

    display:grid;

    grid-template-columns:1fr 1.2fr;

    gap:60px;

    align-items:end;
}

.contact-left{

    display:flex;

    flex-direction:column;

    gap:25px;
}

.contact-left h2{

    font-family:'Bebas Neue';

    font-size:4rem;

    color:var(--bronze);

    letter-spacing:3px;
}

.contact-left a{

    color:var(--white);

    transition:var(--transition);

    font-size:1.05rem;
}

.contact-left a:hover{

    color:var(--bronze);
}

.contact-right{

    position:relative;

    overflow:hidden;

    border-radius:16px;
}

.contact-right img{

    width:100%;

    height:400px;

    object-fit:cover;

    transition:1s ease;
}

.contact-right:hover img{

    transform:scale(1.05);
}

.location-overlay{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    padding:25px;

    background:
    linear-gradient(
    to top,
    rgba(0,0,0,.95),
    transparent);

    color:white;

    font-weight:500;
}

/* =========================================
   FOOTER
========================================= */

footer{

    padding:80px 8%;

    text-align:center;

    border-top:1px solid rgba(199,154,118,.15);
}

footer img{

    width:180px;

    margin:0 auto 25px auto;
}

footer p{

    color:var(--grey);

    margin-bottom:20px;
}

footer a{

    color:var(--bronze);

    transition:var(--transition);
}

footer a:hover{

    color:var(--bronze-light);
}

/* =========================================
   PAGE HERO
========================================= */

.page-hero{

    height:60vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    position:relative;

    background:url("../assets/hero/hero2.webp");

    background-size:cover;

    background-position:center;
}

.page-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.75);
}

.page-hero h1{

    position:relative;

    z-index:2;

    font-family:'Bebas Neue';

    font-size:6rem;

    letter-spacing:8px;

    color:var(--bronze);
}

/* =========================================
   TEAM & ADVISORY
========================================= */

.team-section{

    padding-top:80px;
}

.team-section h2{

    text-align:center;

    font-family:'Bebas Neue';

    font-size:4.5rem;

    color:var(--bronze);

    letter-spacing:4px;

    margin:40px 0 80px;
}

.team-grid{

    display:flex;

    justify-content:center;

    align-items:flex-start;

    gap:70px;

    flex-wrap:wrap;

    margin:60px 0 100px;
}

.member-card{

    width:320px;

    text-align:center;

    transition:var(--transition);
}

.member-card:hover{

    transform:translateY(-8px);

   box-shadow:
0 0 30px rgba(199,154,118,.12);
}

.member-card h3{

    margin-top:22px;

    font-size:1.5rem;

    font-weight:600;
}

.member-card p{

    color:var(--grey);

    margin-top:10px;

    font-size:1.05rem;
}

.member-placeholder,
.member-card img{

    width:320px;

    aspect-ratio:4/5;

    background:#111;

    display:flex;

    align-items:center;

    justify-content:center;

    font-family:'Bebas Neue';

    font-size:5rem;

    color:var(--bronze);

    border-radius:14px;

    overflow:hidden;
}

.member-card img{

    object-fit:contain;
}

/* =========================================
   EVENTS PAGE
========================================= */

.events-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:35px;
}

.event-card{

    background:#111;

    border-radius:14px;

    overflow:hidden;

    transition:var(--transition);
}

.event-card:hover{

    transform:translateY(-8px);
}

.event-card img{

    height:300px;

    object-fit:cover;
}

.event-card h3{

    padding:25px;

    text-align:center;

    font-family:'Cormorant Garamond';

    font-size:2rem;

    color:var(--bronze);
}

.event-card p{

    padding:0 25px 25px;

    color:var(--grey);

    text-align:center;

    line-height:1.8;
}

/* =========================================
   FULL GALLERY PAGE
========================================= */

.gallery-page{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));

    gap:22px;
}

.gallery-page .gallery-item{

    break-inside:avoid;
}

/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu{

    position:fixed;

    inset:0;

    width:100%;

    height:100vh;

    background:rgba(5,5,5,.98);

    backdrop-filter:blur(18px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:20px;

    padding:80px 20px;

    overflow-y:auto;

    z-index:6000;

    opacity:0;

    visibility:hidden;

    transition:.4s ease;
}

.mobile-menu.active{

    opacity:1;

    visibility:visible;
}

.mobile-menu a{

    font-family:'Bebas Neue',sans-serif;

    font-size:1.8rem;

    letter-spacing:2px;

    color:var(--white);

    transition:.3s ease;
}

.mobile-menu a:hover{

    color:var(--bronze);

    transform:translateY(-2px);
}

.close-menu{

    position:absolute;

    top:20px;

    right:20px;

    background:none;

    border:none;

    color:var(--white);

    font-size:2.8rem;

    cursor:pointer;

    transition:.3s ease;
}

.close-menu:hover{

    color:var(--bronze);

    transform:rotate(90deg);
}

.mobile-menu-logo{

    width:90px;

    margin-bottom:20px;

    opacity:.95;
}

/* =========================================
   TABLET
========================================= */

@media(max-width:1024px){

    .stories-grid{

        grid-template-columns:1fr;
    }

    .month-grid{

        grid-template-columns:repeat(2,1fr);

        gap:24px;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .about-container{

        grid-template-columns:1fr;
    }

    .theme-container{

        grid-template-columns:1fr;
    }

    #contact{

        grid-template-columns:1fr;
    }

    .gallery-grid{

        column-count:2;

        column-gap:18px;

    }

    .gallery-item{

        margin-bottom:18px;

    }

    .gallery-page{

        display:grid;

        grid-template-columns:repeat(2,minmax(240px,1fr));

        gap:22px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

    section{

        padding:90px 6%;
    }

    .section-title{

        font-size:2.8rem;
    }

    nav ul{

        display:none;
    }

    .hamburger{

        display:flex;
    }

/* =========================================
   HERO
========================================= */

.hero{

    min-height:100svh;

    padding-top:110px;

    padding-bottom:60px;

    display:flex;

    align-items:center;

}

.hero-wrapper{

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    width:100%;

    max-width:420px;

    margin:auto;

    text-align:center;

    gap:22px;
}

.hero-left{

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

    order:1;

    min-height:auto;

}

.logo-slot{

    width:min(220px,58vw);

    height:230px;

    flex-shrink:0;

}

.hero-right{

    order:2;

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    text-align:center;
}

.hero-brand{

    font-size:clamp(3.6rem,12vw,4.6rem);

    margin:0;
}

#heroSubtitle{

    font-size:1.35rem;

    letter-spacing:3px;

    margin-top:6px;

    margin-bottom:10px;
}

.hero p{

    max-width:330px;

    font-size:.95rem;

    line-height:1.75;

    margin-bottom:28px;
}

.hero-buttons{

    width:100%;

    display:flex;

    flex-direction:column;

    gap:14px;
}

.hero-buttons .btn{

    width:100%;
}

.hero-instagram{

    margin-top:8px;

    font-size:.95rem;
}
   
    /* =========================================
       GALLERY
    ========================================= */

    .gallery-grid{

        flex-direction:column;

    }

    .gallery-column{

        min-width:100%;

    }

    .gallery-page{

        grid-template-columns:1fr;
    }

    /* =========================================
       PAGE HERO
    ========================================= */

    .page-hero h1{

        font-size:3.5rem;
    }

    #join h2{

        font-size:3.5rem;
    }

    .contact-left h2{

        font-size:3rem;
    }

    .theme-content h3{

        font-size:2.5rem;
    }

    /* =========================================
       STORIES
    ========================================= */

    .story-card{

        height:auto;
    }

    .story-card img{

        aspect-ratio:4/5;

        object-fit:cover;
    }

    .story-info{

        padding:18px;
    }

    .story-info h3{

        font-size:1.7rem;
    }

    .story-info p{

        font-size:.9rem;

        line-height:1.6;
    }

    /* =========================================
       GALLERY
    ========================================= */

    .gallery-grid{

        column-count:1;

        column-gap:0;

    }

    .gallery-item{

        margin-bottom:16px;

    }

    /* =========================================
       PHOTOS OF THE MONTH
    ========================================= */

    .month-grid{

        grid-template-columns:1fr;

        gap:20px;
    }

    .month-card img{

        aspect-ratio:4/5;

        object-fit:cover;
    }

    /* =========================================
       VIEWFINDER
    ========================================= */

    .viewfinder{

        width:38px;

        height:38px;
    }

    .top-left{

        top:10px;

        left:10px;
    }

    .top-right{

        top:10px;

        right:10px;
    }

    .bottom-left{

        bottom:15px;

        left:15px;
    }

    .bottom-right{

        bottom:15px;

        right:15px;
    }

  /* =========================================
   NAVBAR (MOBILE OVERRIDES)
========================================= */

nav{

    padding:14px 5%;

}

nav.scrolled{

    padding:10px 5%;

}

.navbar-left{

    min-width:70px;

    height:40px;

}

.logo-target{

    width:58px;

    height:38px;

}
   
/* =========================================
   LARGE SCREENS
========================================= */

@media(min-width:1600px){

    .hero-brand{

        font-size:10rem;
    }

    .hero h2{

        font-size:5rem;
    }

    .section-title{

        font-size:5rem;
    }
}

.gallery-item img,
.story-card img,
.month-card img,
.theme-image img{

    will-change:transform;
}

/* =========================================
   LIGHTBOX
========================================= */

.lightbox{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.95);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;
}

.lightbox.active{

    display:flex;
}

.lightbox img{

    max-width:90%;

    max-height:90vh;

    object-fit:contain;
}

.close-lightbox{

    position:absolute;

    top:30px;

    right:40px;

    font-size:3rem;

    color:white;

    cursor:pointer;

    transition:.3s ease;
}

.close-lightbox:hover{

    color:var(--bronze);
}
