:root {
    --primary-color: #333;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: white;
    color: var(--primary-color);
}

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

/* Navigation Buttons */
.nav-button {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background-color: red;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 100;
}

.nav-button-left {
    left: 0;
    padding-right: 5px;
}

.nav-button-right {
    right: 0;
    padding-left: 5px;
}

.nav-button span {
    color: white;
    font-size: 70px;
    font-weight: 200;
    line-height: 1;
}

.nav-button:hover span {
    font-weight: 300;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 150;
    background: red;
    padding: 15px;
    width: 55px;
    height: 55px;
    align-items: center;
    justify-content: center;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 0px;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Header Section */
.header {
    width: 100%;
    height: 150px;
    background-color: white;
    padding: 0 100px;
}

.header-content {
    max-width: 1440px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 50px;
    line-height: 1;
}

.logo a {
    text-decoration: none;
    color: var(--primary-color);
}

.logo-thin {
    font-weight: 100;
}

.logo-bold {
    font-weight: 600;
}

/* Desktop Navigation */
.nav-desktop {
    display: block;
}

.nav-links-desktop {
    display: flex;
    list-style: none;
    gap: 60px;
}

.nav-links-desktop li a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 300;
    text-decoration: none;
    position: relative;
    padding-bottom: 8px;
}

.nav-links-desktop li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: red;
}

.nav-links-desktop li a:not(.active)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: red;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-links-desktop li a:not(.active):hover::after {
    transform: scaleX(1);
}

/* Mobile Navigation */
.nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: transparent;
    pointer-events: none;
    z-index: 50;
}

.nav-links-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: red;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 100px 0;
    justify-content: flex-start;
    transform: translateX(100%);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.nav-links-mobile.active {
    transform: translateX(0);
}

.nav-links-mobile li {
    text-align: center;
    padding: 20px 0;
}

.nav-links-mobile li a {
    color: white;
    font-size: 24px;
    font-weight: 300;
    text-decoration: none;
}

/* Main Content */
.main-content {
    padding: 0 100px;
    margin-top: 100px;
}

.content-wrapper {
    max-width: 1440px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
}

/* Text Area */
.text-area {
    grid-column: 1 / 4;
    padding-right: 30px;
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 0px;
}

.headline {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 30px;
}

.body-copy {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 20px;
}

.body-copy strong {
    font-weight: 700;
}

/* Image Area */
.image-area {
    grid-column: 4 / 9;
    display: flex;
    flex-direction: column;
    gap: 90px;
}

.project-video,
.project-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Footer */
.footer {
    width: 100%;
    height: 50px;
    background-color: #CCCCCC;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.footer p {
    color: white;
    font-size: 14px;
}

/* Responsive Design - Between 1100px and 1440px */
@media (max-width: 1440px) and (min-width: 1101px) {
    .header {
        padding: 0 calc(100px * (100vw / 1440));
    }

    .logo {
        font-size: calc(50px * (100vw / 1440));
    }

    .nav-links-desktop {
        gap: calc(60px * (100vw / 1440));
    }

    .nav-links-desktop li a {
        font-size: calc(18px * (100vw / 1440));
    }

    .main-content {
        padding: 0 calc(100px * (100vw / 1440));
        margin-top: calc(100px * (100vw / 1440));
    }

    .content-wrapper {
        gap: calc(20px * (100vw / 1440));
    }

    .eyebrow {
        font-size: calc(18px * (100vw / 1440));
    }

    .headline {
        font-size: calc(30px * (100vw / 1440));
    }

    .body-copy {
        font-size: calc(18px * (100vw / 1440));
    }

    .image-area {
        gap: calc(90px * (100vw / 1440));
    }

    .footer {
        margin-top: calc(100px * (100vw / 1440));
    }
}

/* Mobile View - Below 1100px */
@media (max-width: 1100px) {
    .nav-button {
        width: 40px;
        height: 70px;
    }

    .nav-button span {
        font-size: 50px;
    }

    .hamburger {
        display: flex;
    }

    .nav-desktop {
        display: none;
    }

    .nav-mobile {
        display: block;
    }

    .header {
        padding: 0 50px;
        height: 120px;
    }

    .logo {
        margin: auto;
    }

    .main-content {
        padding: 0 50px;
        margin-top: 50px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .text-area {
        grid-column: 1;
    }

    .image-area {
        grid-column: 1;
        gap: 50px;
    }

    .eyebrow {
        font-size: 16px;
    }

    .headline {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .body-copy {
        font-size: 16px;
    }

    .footer {
        margin-top: 50px;
    }

    .footer p {
        font-size: 12px;
        padding: 0 20px;
        text-align: center;
    }
}
