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

body {
    display: flex;

    font-family: "Anton SC", sans-serif;
    line-height: 1.6;
    color: #c60303;
    background-color: #000000;
}

main {
    width: 100%;
    max-width: 1200px;
    /* height: 90vh; */
    margin: 0 auto;
    padding-top: 1.5em;

    display: flex;
    flex-direction: column;
    justify-content: center;

    min-height: calc(100vh - 8rem);
}

.logo {
    position: relative;
    z-index: 1;

    margin-top: auto;
    margin-bottom: -10vh;
    margin-right: auto;
    margin-left: auto;

    height: 12vh;
}

.logo img {
    width: auto;
    height: 100%;
    display: block;
    margin: auto;
}

/* Hero section */
.hero {
    position: relative;
    overflow: hidden;

    display: flex;
    flex-grow: 1;
    justify-content: center;
    align-items: center;
}

.hero img {
    width: 100%;
    max-width: 1000px;
    height: 0;
    min-height: 100%;
    object-fit: contain;

    /* Optional: scale down to fit, preserving aspect ratio */
    /* max-width: 700px;
    height: 100%;
    object-fit: contain;
    margin: 0 auto; */
}

/* Subscribe section */
.subscribe {
    position: relative;
    z-index: 1;

    background-color: #fff;
    padding: 0.75rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

    width: 90%;
    max-width: 500px;
    margin: auto;

    margin-top: -5rem;
    margin-bottom: 1rem;
}

.subscribe h2 {
    margin-top: 0;
}

.subscribe p {
    color: black;
    font-size: 0.75rem;
}

.subscribe form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subscribe input[type="email"] {
    flex: 1;
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.33rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.subscribe .form-line {
    width: 100%;
}

.subscribe button[type="submit"] {
    font-family: "Anton SC";
    background-color: #ff1e1e;
    color: #fff;
    padding: 0.1rem 0.2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.5rem;
    text-shadow: 1px 1px #000;
    width: 100%;
    cursor: pointer;
}

.subscribe button[type="submit"]:hover {
    background-color: #e01919;
}

.bullet {
    display: inline-flex;
    align-items: center;
    /* justify-content: center; */

    height: 4rem;
    width: 100%;

    padding: 0.5rem 0rem;
}

.bullet img {
    height: 100%;
    margin-left: auto;
}

.bullet .message {
    padding-left: 1.33rem;

    font-size: 1.33rem;
    line-height: 1.33em;
    vertical-align: middle;
    text-align: left;

    margin-right: auto;
}


/* Screens */

.screens {
    display: flex;
    justify-content: space-between;
    /* Distribute screens evenly */
}

.screen {
    flex: 1;
    /* Equal width for each screen */
    margin: 0 1rem;
    text-align: center;
}

.screen img {
    width: 100%;
    /* Fill available width */
    object-fit: cover;
    border-radius: 10px;
}

/* Ensure screens fit horizontally without overflow */
.screens {
    overflow-x: hidden;
    /* Hide horizontal scrollbar */
}

/* Media query for smaller screens (optional) */
@media (max-width: 768px) {
    .screens {
        flex-wrap: wrap;
        /* Stack screens vertically on smaller screens */
    }

    .screen {
        width: 100%;
        /* Full-width screens on smaller screens */
        margin-bottom: 2rem;
        /* Add spacing between stacked screens */
    }
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;

    position: absolute;
    bottom: 0;
    left: 0;

    width: 100%;
    height: 8rem;
    margin-top: auto;
    /* Push footer to bottom */

    padding: 0.5rem 0 0 0;
    text-align: center;
}

.partners {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 0.33rem;
}

.partners li {
    display: inline-block;
}

.partners img {
    width: 80px;
    /* adjust width to your liking */
    height: auto;
    display: block;
}

footer p {
    font-size: 0.75rem;
}