body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding-top: 70px;
}

/* NAV */
.nav-link {
    letter-spacing: 3px;
    transition: 0.3s;
}

.nav-link:hover {
    letter-spacing: 6px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* VIDEO BACKGROUND */
.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 30px;
    }

    .parallax-text {
        font-size: 18px;
        letter-spacing: 4px;
        padding: 0 20px;
    }

    .parallax-img {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .img {
        width: 60vw;
    }
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-main {
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 1px;
}

/* animation */
.brand-main span {
    display: inline-block;
    transition: transform 0.2s ease;
}

.brand-wrapper:hover span {
    transform: translateY(-4px);
}

@font-face {
    font-family: "Coolvetica";
    src: url("fonts/Coolvetica.woff") format("woff");
}

.brand-sub,
.parallax-text,
.coming-soon {
    font-family: "Coolvetica", sans-serif;
}







html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background: white;
}

/* NAV spacing */
body {
    padding-top: 70px;
}

/* HERO */
.hero {
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 60px;
    letter-spacing: 8px;
    opacity: 0.6;
}

/* SPLIT SECTIONS */
.split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 120px 10%;
}

/* reverse layout */
.split.reverse {
    flex-direction: row-reverse;
}

/* images */
.split img {
    width: 40%;
    max-width: 500px;
    height: auto;
}

/* text */
.text {
    font-size: 28px;
    letter-spacing: 5px;
    max-width: 400px;
    line-height: 1.4;
}

/* double image section */
.double {
    align-items: flex-start;
}

.images {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.images img {
    width: 300px;
}

/* RESPONSIVE */
@media (max-width: 768px) {

    .split,
    .split.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .split img {
        width: 90%;
    }

    .text {
        font-size: 20px;
    }

    .images img {
        width: 90%;
    }
}

.coming-soon {
    font-size: clamp(40px, 6vw, 90px);
    font-weight: 700;
    letter-spacing: 10px;
    opacity: 0.9;
    animation: floaty 2.5s ease-in-out infinite;
    margin: 0;
    text-transform: uppercase;
    mix-blend-mode: difference;
}

/* smooth “breathing hop” */
@keyframes floaty {
    0% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-10px) scale(1.02);
        opacity: 0.9;
    }

    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
}

.bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

/* video fills screen */
.bg-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;

    /* THIS is your “fake transparency” */
    opacity: 0.70;

    /* optional nicer effect */
    filter: contrast(1.1) brightness(0.8);
}

.page-header {
    height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 0 20px;
}

/* page title */
.page-title {
    font-size: 16px;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* your existing style but slightly refined *

/* animation */
@keyframes floaty {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}



.side-section {
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 100px 10%;
    text-align: center;
}

/* images */
.side-img {
    width: 300px;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* text block */
.side-text {
    max-width: 400px;
    font-family: "Montserrat", sans-serif;
    line-height: 1.6;
}

/* title reuse */
.page-title {
    font-size: 14px;
    letter-spacing: 8px;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .side-section {
        flex-direction: column;
        gap: 30px;
    }

    .side-img {
        width: 90%;
    }
}
