/* typos */
@font-face {
    font-family: 'SainteCroix-Poster';
    src: url('fonts/SainteCroix-Poster.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'SainteCroix-Regular';
    src: url('fonts/SainteCroix-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'SainteCroix-Regular', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.header {
    background-color: #007BFF;
    color: white;
    text-align: center;
    padding: 1.5em 1em;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}

.logo {
    width: 150px;
    height: auto;
}

.title {
    font-size: 2em;
    margin: 0.5em 0;
    font-family: 'SainteCroix-Poster', sans-serif;
}

.subtitle {
    font-size: 1.2em;
}


h2 {
    font-family: 'SainteCroix-Poster', sans-serif;
}

.content {
    max-width: 800px;
    margin: 2em auto;
    padding: 0 1em;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.newsletter {
    background: linear-gradient(135deg, #007BFF, #00D4FF);
    padding: 3rem 1rem;
    text-align: center;
    color: #fff;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
}

.newsletter h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
}

.newsletter p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter .form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter .form-group {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
}

.newsletter input[type="email"] {
    flex: 3;
    padding: 1rem;
    border: 2px solid #dddddd;
    border-right: none;
    font-size: 1rem;
    outline: none;
}

.newsletter input[type="email"]:focus {
    border-color: #007BFF;
}

.newsletter button {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.newsletter button:hover {
    background-color: #000000;
    transform: scale(1.05);
}




.footer {
    text-align: center;
    padding: 1em 0;
    background-color: #000000;
    color: #ffffff;
}

/* mobile */
@media (max-width: 600px) {
    .title {
        font-size: 1.5em;
    }

    .subtitle {
        font-size: 1em;
    }

    .content {
        padding: 0 0.5em;
    }

    .newsletter p {
        font-size: 1.2rem;
    }

    .newsletter .form-group {
        flex-direction: column;
        gap: 1rem;
    }

    .newsletter input[type="email"],
    .newsletter button {
        width: 80%;
        border-radius: 0;
    }

    .newsletter input[type="email"] {
        border-right: 2px solid #dddddd;
    }

    .newsletter button {
        flex: 1;
        padding: 1rem 1.5rem;
        background-color: #000000;
        color: #ffffff;
        border: none;
        font-size: 1rem;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.2s ease;
        width: 50%;
    }

}
