@import url('https://fonts.cdnfonts.com/css/big-shoulders-display');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Big Shoulders Display', sans-serif;
    color: white;
    overflow-x: hidden;
    height: 100vh;
    position: relative;
}

/* Background video container */
.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Background video */
#bgVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Main content */
.content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 2rem;
    max-width: 100%;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Header */
.header {
    padding-top: 2rem;
}

.header::after {
    content: "";
    width: 150vw;
    height: 1px;
    background-color: white;
    top: 120px;
    left: -400px;

    position: absolute;
}

.header img {
    max-width: 100px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Hero section */
.hero {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.main-headline {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.05em;
    max-width: 1100px;

}

.main-headline .line-1 {
    display: block;
    margin-bottom: 0.5rem;
}

.main-headline .line-2 {
    display: block;
    margin-bottom: 0.5rem;
}

.main-headline .line-3 {
    display: block;
}

/* Focus areas and contact row */
.focus-contact-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.focus-text {
    font-size: 31px;
    font-weight: 400;
    line-height: 1.6;
    opacity: 0.9;
    flex: 1;
    font-family: "Inter", sans-serif;

}

.contact {
    text-align: right;
    margin-left: 2rem;
}

.email-link {
    color: white;
    text-decoration: none;
    font-family: "Inter", sans-serif;

    font-size: 31px;
    font-weight: 400;
    text-decoration: underline;
}


/* Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 2rem;
}

.address {
    font-size: 16px;
    font-family: "Inter", sans-serif;

    font-weight: 300;
    line-height: 1.5;
    opacity: 0.8;
    text-align: center;
}

/* Responsive design */
@media (max-width: 768px) {
    .content {
        padding: 1rem;
    }

    .logo {
        font-size: 2rem;
    }

    .main-headline {
        font-size: 2.5rem;
    }

    .focus-contact-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .contact {
        text-align: left;
        margin-left: 0;
    }

    .header::after {
        top: 100px;
        left: -40px;
    }
}

@media (max-width: 576px) {
    .main-headline {
        font-size: 2rem;
        text-align: left;
        max-width: 277px;
    }

    .hero {
        flex: 0;
        align-items: start;
        justify-content: start;
        margin-top: 40px;
    }

    .content {
        min-height: 90vh;
        height: 90vh;
    }

    .focus-contact-row {
        align-items: start;
    }

    .address {
        text-align: left;
    }

    .focus-text {
        font-size: 1rem;
    }

    .email-link {
        font-size: 1rem;
    }

    .address {
        font-size: 0.7rem;
    }
    .footer{
        align-items: start;
    }

}