/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'futura-pt', 'Helvetica Neue', Arial, sans-serif;
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    background-color: #999;
}

#player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Make sure video covers properly */
@media (min-aspect-ratio: 16/9) {
    #player {
        height: 56.25vw; /* 16:9 aspect ratio */
    }
}

@media (max-aspect-ratio: 16/9) {
    #player {
        width: 177.78vh; /* 16:9 aspect ratio */
    }
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

/* Content Wrapper */
.content-wrapper {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

/* Header */
.site-header {
    margin-bottom: 40px;
}

.site-subtitle {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0;
}

/* Main Content */
.main-content {
    max-width: 880px;
    margin: 0 auto;
}

.main-title {
    font-family: 'Londrina Shadow', cursive;
    font-size: 120px;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 40px;
}

.text-content {
    font-size: 20px;
    line-height: 1.4em;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
    max-width: 36em;
    margin-left: auto;
    margin-right: auto;
}

.text-content p {
    margin-bottom: 1em;
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1em;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn {
    display: inline-block;
    padding: 1em 1.44em;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    color: #fff;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 4px;
    transition: all 170ms ease-in-out;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    color: #222;
}

/* Form Container */
.form-container {
    max-width: 900px;
    width: 100%;
    padding: 40px 20px;
}

.back-link {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 14px;
    transition: opacity 0.2s;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.back-link:hover {
    opacity: 0.7;
}

.form-title {
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
    text-align: center;
}

/* Google Form Embed */
.form-container iframe {
    border-radius: 8px;
    background-color: #fff;
}

/* Responsive Design */
@media (max-width: 1020px) {
    .main-title {
        font-size: 80px;
    }

    .text-content {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 20px;
    }

    .main-title {
        font-size: 60px;
    }

    .text-content {
        font-size: 16px;
    }

    .button-group {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        min-width: 200px;
    }

    .form-container {
        padding: 40px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .site-subtitle {
        font-size: 14px;
    }

    .main-title {
        font-size: 48px;
    }

    .text-content {
        font-size: 14px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
