/* --------------------
   RESET
-------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html,
body {
    width: 100%;
    height: 100%;
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: #080808;
    color: #ffffff;
}


/* --------------------
   HEADER
-------------------- */

.header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    display: flex;

    justify-content: space-between;
    align-items: center;

    padding: 35px 45px;

    z-index: 100;

}


.logo {

    color: white;

    text-decoration: none;

    font-size: 14px;

    letter-spacing: 5px;

}


nav {

    display: flex;

    gap: 35px;

}


nav a {

    color: white;

    text-decoration: none;

    font-size: 12px;

    opacity: 0.6;

    position: relative;

    padding-bottom: 8px;

}


nav a:hover,
nav a.active {

    opacity: 1;

}


nav a.active::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 1px;

    background: white;

}


/* --------------------
   FULLSCREEN CAROUSEL
-------------------- */

.carousel {

    width: 100%;
    height: 100vh;

    position: relative;

    overflow: hidden;

}


.slide {

    position: absolute;

    inset: 0;

    opacity: 0;

    transition:
        opacity 1.2s ease;

    background-size: cover;

    background-position: center;

}


.slide.active {

    opacity: 1;

}


/* Dark cinematic overlay */

.overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.15),
            rgba(0, 0, 0, 0.25)
        );

}


/* --------------------
   SLIDE TEXT
-------------------- */

.slide-content {

    position: absolute;

    left: 10%;
    bottom: 16%;

    max-width: 600px;

    z-index: 2;

}


.eyebrow {

    font-size: 11px;

    letter-spacing: 5px;

    margin-bottom: 25px;

    opacity: 0.75;

}


.slide-content h1 {

    font-size:
        clamp(
            55px,
            7vw,
            120px
        );

    font-weight: 300;

    line-height: 0.95;

    letter-spacing: -3px;

    margin-bottom: 30px;

}


.description {

    font-size: 15px;

    line-height: 1.7;

    max-width: 350px;

    opacity: 0.8;

}


/* --------------------
   ARROWS
-------------------- */

.arrow {

    position: absolute;

    top: 50%;

    transform:
        translateY(-50%);

    z-index: 10;

    border: none;

    background: transparent;

    color: white;

    font-size: 38px;

    font-weight: 200;

    cursor: pointer;

    opacity: 0.8;

    transition: 0.3s;

}


.arrow:hover {

    opacity: 1;

    transform:
        translateY(-50%)
        scale(1.15);

}


.prev {

    left: 35px;

}


.next {

    right: 35px;

}


/* --------------------
   COUNTER
-------------------- */

.counter {

    position: absolute;

    bottom: 40px;

    left: 45px;

    z-index: 5;

    font-size: 11px;

    letter-spacing: 2px;

    opacity: 0.8;

}


/* --------------------
   DOTS
-------------------- */

.dots {

    position: absolute;

    bottom: 45px;

    right: 45px;

    z-index: 5;

    display: flex;

    gap: 10px;

}


.dot {

    width: 25px;

    height: 3px;

    border: none;

    background: rgba(255,255,255,0.35);

    cursor: pointer;

}


.dot.active {

    background: white;

}


/* --------------------
   DEMOREEL PAGE
-------------------- */

.demoreel-page {

    min-height: 100vh;

    background: #090909;

}


.demoreel {

    min-height: 100vh;

    display: grid;

    grid-template-columns:
        1fr
        1.7fr;

    gap: 70px;

    align-items: center;

    padding:
        140px
        10%;

}


.demoreel-text h1 {

    font-size:
        clamp(
            42px,
            5vw,
            85px
        );

    font-weight: 300;

    line-height: 1;

    margin-bottom: 35px;

}


.demoreel-text p {

    max-width: 400px;

    font-size: 15px;

    line-height: 1.8;

    opacity: 0.65;

}


.back-link {

    display: inline-block;

    margin-top: 50px;

    color: white;

    text-decoration: none;

    font-size: 13px;

    opacity: 0.7;

}


.back-link:hover {

    opacity: 1;

}


.video-wrapper {

    position: relative;

    width: 100%;

    aspect-ratio: 16 / 9;

}


.video-wrapper iframe {

    width: 100%;
    height: 100%;

    border: none;

}


/* --------------------
   MOBILE
-------------------- */

@media
(max-width: 800px) {


    .header {

        padding:
            25px
            25px;

    }


    nav {

        gap: 20px;

    }


    .slide-content {

        left: 12%;

        bottom: 18%;

    }


    .arrow {

        display: none;

    }


    .counter {

        left: 25px;

        bottom: 25px;

    }


    .dots {

        right: 25px;

        bottom: 28px;

    }


    .demoreel {

        grid-template-columns:
            1fr;

        gap: 50px;

        padding:
            130px
            8%
            70px;

    }

}

/* --------------------
SIMPLE CONTACT PAGE
-------------------- */

.simple-contact-page {
min-height: 100vh;
background: #090909;
color: white;
}

/* Main */

.simple-contact {
min-height: 100vh;

```
display: flex;
align-items: center;

padding: 120px 10%;
```

}

/* Content */

.contact-content {
max-width: 650px;
}

.contact-content .eyebrow {
font-size: 10px;
letter-spacing: 4px;
opacity: 0.5;
margin-bottom: 25px;
}

.contact-content h1 {
font-size: clamp(60px, 9vw, 120px);

```
font-weight: 300;

line-height: 0.9;

letter-spacing: -4px;

margin-bottom: 35px;
```

}

.contact-intro {
max-width: 400px;

```
font-size: 15px;

line-height: 1.7;

color: rgba(255,255,255,0.6);

margin-bottom: 50px;
```

}

/* Email + phone */

.contact-links {
display: flex;

```
flex-direction: column;

gap: 12px;

margin-bottom: 45px;
```

}

.contact-links a {
color: white;

```
text-decoration: none;

font-size: 18px;

transition: opacity 0.3s ease;
```

}

.contact-links a:hover {
opacity: 0.5;
}

/* Social */

.social-links {
display: flex;

```
gap: 25px;
```

}

.social-links a {
color: white;

```
text-decoration: none;

font-size: 12px;

opacity: 0.55;

transition: opacity 0.3s ease;
```

}

.social-links a:hover {
opacity: 1;
}

/* --------------------
MOBILE
-------------------- */

@media (max-width: 600px) {

```
.header {
    padding: 22px 20px;
}


.logo {
    font-size: 11px;
    letter-spacing: 3px;
}


nav {
    gap: 14px;
}


nav a {
    font-size: 9px;
}


.simple-contact {
    padding: 110px 20px 60px;

    align-items: center;
}


.contact-content {
    width: 100%;
}


.contact-content h1 {
    font-size: 64px;

    letter-spacing: -3px;

    margin-bottom: 30px;
}


.contact-intro {
    font-size: 14px;

    max-width: 300px;

    margin-bottom: 40px;
}


.contact-links {
    gap: 10px;

    margin-bottom: 40px;
}


.contact-links a {
    font-size: 16px;

    padding: 6px 0;
}


.social-links {
    gap: 20px;
}
```

}

/* Very small phones */

@media (max-width: 380px) {

```
.header {
    padding: 20px 16px;
}


nav {
    gap: 9px;
}


nav a {
    font-size: 8px;
}


.simple-contact {
    padding-left: 16px;
    padding-right: 16px;
}


.contact-content h1 {
    font-size: 54px;
}
```

}
