```css
/* =========================
   BROKEN BUDDY STUDIOS
   PREMIUM CINEMATIC THEME
========================= */

:root{
    --black:#050505;
    --dark:#0d0d0d;
    --gold:#c8a06b;
    --white:#ffffff;
    --gray:#b6b6b6;
    --border:rgba(255,255,255,0.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:var(--black);
    color:var(--white);
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* SCROLLBAR */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#000;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:20px;
}

/* PRELOADER */

#preloader{
    position:fixed;
    inset:0;
    background:#000;
    z-index:99999;
    display:flex;
    justify-content:center;
    align-items:center;
    transition:.5s;
}

.loader-text{
    font-family:'Cinzel',serif;
    color:var(--gold);
    letter-spacing:8px;
    font-size:2rem;
    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{opacity:.4;}
    50%{opacity:1;}
    100%{opacity:.4;}
}

/* NAVBAR */

.custom-nav{
    background:rgba(0,0,0,.2);
    backdrop-filter:blur(15px);
    padding:20px 0;
    transition:.4s;
    z-index:9999;
}

.custom-nav.scrolled{
    background:#000;
}

.logo{
    font-family:'Cinzel',serif;
    color:#fff !important;
    line-height:1;
}

.logo span{
    display:block;
    color:var(--gold);
    letter-spacing:4px;
    font-size:12px;
}

.nav-link{
    color:#fff !important;
    margin-left:20px;
    position:relative;
}

.nav-link.active{
    color:var(--gold)!important;
}

.nav-link::after{
    content:'';
    position:absolute;
    width:0;
    height:2px;
    left:0;
    bottom:0;
    background:var(--gold);
    transition:.4s;
}

.nav-link:hover::after{
    width:100%;
}

/* HERO */

.hero{
    height:100vh;
    background:url('../images/hero.jpg') center center/cover no-repeat;
    position:relative;
    animation:heroZoom 20s infinite alternate;
}

@keyframes heroZoom{
    from{background-size:100%;}
    to{background-size:115%;}
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        rgba(0,0,0,.85),
        rgba(0,0,0,.55)
    );
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-subtitle{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.hero h1{
    font-family:'Cinzel',serif;
    font-size:6rem;
    margin-top:20px;
}

.hero h1 span{
    display:block;
    color:var(--gold);
}

.hero p{
    color:var(--gray);
    max-width:650px;
    margin-top:20px;
    font-size:18px;
}

/* BUTTONS */

.btn-gold{
    display:inline-block;
    background:var(--gold);
    color:#000;
    padding:14px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:.4s;
}

.btn-gold:hover{
    transform:translateY(-4px);
    color:#000;
}

.btn-outline-custom{
    display:inline-block;
    border:1px solid var(--gold);
    color:#fff;
    padding:14px 35px;
    border-radius:50px;
    margin-left:15px;
    text-decoration:none;
    transition:.4s;
}

.btn-outline-custom:hover{
    background:var(--gold);
    color:#000;
}

/* SECTIONS */

section{
    padding:120px 0;
}

.section-heading span{
    color:var(--gold);
    letter-spacing:4px;
    font-size:13px;
}

.section-heading h2{
    font-family:'Cinzel',serif;
    font-size:4rem;
    margin-top:15px;
}

/* STATS */

.stats-section{
    background:#080808;
}

.stats-section h2{
    color:var(--gold);
    font-size:4rem;
    font-family:'Cinzel',serif;
}

.stats-section p{
    color:#ccc;
}

/* STORIES */

.story-card{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    height:500px;
}

.story-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.story-card:hover img{
    transform:scale(1.1);
}

.story-overlay{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:end;
    padding:30px;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.9)
    );
}

/* TEAM */

.team-section{
    background:#080808;
}

.team-card{
    background:#111;
    border-radius:20px;
    overflow:hidden;
    text-align:center;
    transition:.4s;
}

.team-card:hover{
    transform:translateY(-10px);
}

.team-card img{
    width:100%;
    height:420px;
    object-fit:cover;
}

.team-card h4{
    margin-top:20px;
}

/* JOURNEY */

.small-title{
    color:var(--gold);
    letter-spacing:4px;
}

.journey-preview h2{
    font-size:3rem;
    font-family:'Cinzel',serif;
    margin:20px 0;
}

.journey-preview p{
    color:var(--gray);
}

/* CTA */

.cta-section{
    background:url('../images/studio.jpg') center center/cover;
    position:relative;
}

.cta-section::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.75);
}

.cta-section .container{
    position:relative;
    z-index:2;
}

.cta-section h2{
    font-size:4rem;
    font-family:'Cinzel',serif;
}

/* FOOTER */

.footer-v2{
    background:#000;
    padding:80px 0 30px;
    border-top:1px solid var(--border);
}

.footer-v2 h3,
.footer-v2 h5{
    color:var(--gold);
}

.footer-links{
    list-style:none;
    padding:0;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-links a{
    color:#ccc;
    text-decoration:none;
}

.footer-links a:hover{
    color:var(--gold);
}

/* CURSOR */

.custom-cursor{
    width:20px;
    height:20px;
    border:2px solid var(--gold);
    border-radius:50%;
    position:fixed;
    pointer-events:none;
    z-index:99999;
    transform:translate(-50%,-50%);
}

/* MOBILE */

@media(max-width:991px){

.hero h1{
    font-size:4rem;
}

.section-heading h2{
    font-size:3rem;
}

}

@media(max-width:768px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:3rem;
}

.btn-outline-custom{
    display:block;
    margin:15px 0 0;
}

.section-heading h2{
    font-size:2.2rem;
}

.story-card{
    height:350px;
}

.cta-section h2{
    font-size:2.5rem;
}

}
/* FADE ANIMATION */

.fade-up{
    opacity:0;
    transform:translateY(40px);
    transition:all .8s ease;
}

.fade-up.show{
    opacity:1;
    transform:translateY(0);
}

/* PRELOADER FADE */

#preloader{
    transition:.5s;
}

/* CURSOR HOVER */

a:hover ~ .custom-cursor{
    transform:translate(-50%,-50%) scale(1.5);
}

/* =========================
   RESPONSIVE FIXES
========================= */

/* Tablet */

@media (max-width: 991px){

    .hero{
        min-height:100vh;
        text-align:center;
    }

    .hero-content{
        padding-top:80px;
    }

    .hero h1{
        font-size:4rem;
        line-height:1.1;
    }

    .hero p{
        max-width:100%;
        margin:auto;
        margin-top:20px;
    }

    .hero-buttons{
        margin-top:30px;
    }

    .section-heading h2{
        font-size:2.8rem;
    }

    .team-card img{
        height:320px;
    }

    .journey-preview{
        text-align:center;
    }

    .journey-preview img{
        margin-bottom:30px;
    }

}

/* Mobile */

@media (max-width:768px){

    .navbar-collapse{
        background:#000;
        padding:20px;
        margin-top:15px;
        border-radius:10px;
    }

    .nav-link{
        margin-left:0;
        padding:10px 0;
    }

    .hero{
        padding:100px 0 60px;
    }

    .hero h1{
        font-size:2.8rem;
    }

    .hero-subtitle{
        font-size:11px;
        letter-spacing:2px;
    }

    .hero p{
        font-size:15px;
        line-height:1.8;
    }

    .hero-buttons{
        display:flex;
        flex-direction:column;
        gap:15px;
    }

    .btn-gold,
    .btn-outline-custom{
        width:100%;
        margin:0;
        text-align:center;
    }

    .section-heading h2{
        font-size:2rem;
    }

    .stats-section h2{
        font-size:2.5rem;
    }

    .stats-section .col-6{
        margin-bottom:25px;
    }

    .story-card{
        height:300px;
    }

    .team-card img{
        height:280px;
    }

    .journey-preview h2{
        font-size:2rem;
    }

    .cta-section h2{
        font-size:2rem;
    }

    .footer-v2{
        text-align:center;
    }

    .footer-v2 .col-lg-4{
        margin-bottom:30px;
    }

}

/* Extra Small Mobile */

@media (max-width:480px){

    .hero h1{
        font-size:2.2rem;
    }

    .logo{
        font-size:16px;
    }

    .logo span{
        font-size:10px;
    }

    .stats-section h2{
        font-size:2rem;
    }

    .section-heading h2{
        font-size:1.8rem;
    }

    .story-card{
        height:250px;
    }

    .team-card img{
        height:220px;
    }

    section{
        padding:70px 0;
    }

}


#preloader.hide{
    opacity:0;
    visibility:hidden;
}

/* =========================
   TEXT COLOR FIX
========================= */

body,
section,
footer,
.stats-section,
.stories-section,
.team-section,
.journey-preview,
.cta-section,
.footer-v2{
    color:#ffffff;
}

/* Headings */

h1,h2,h3,h4,h5,h6{
    color:#ffffff;
}

/* Paragraphs */

p{
    color:#d6d6d6;
}

/* Story Cards */

.story-overlay h4,
.story-overlay p{
    color:#ffffff;
}

/* Team Section */

.team-card h4,
.team-card p{
    color:#ffffff;
}

/* Journey Section */

.journey-preview h2{
    color:#ffffff;
}

.journey-preview p{
    color:#d6d6d6;
}

/* Stats */

.stats-section p{
    color:#ffffff;
}

/* Footer */

.footer-v2 p,
.footer-v2 li,
.footer-v2 a{
    color:#d6d6d6;
}

.footer-v2 a:hover{
    color:#c8a06b;
}

/* CTA */

.cta-section h2,
.cta-section p{
    color:#ffffff;
}

/* Team Cards */

.team-card{
    color:#ffffff;
}

/* Story Cards */

.story-card{
    color:#ffffff;
}