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

body {
    font-family:Verdana, Arial, Helvetica, sans-serif;
}

.container {
    max-width: 1980px; /* Maximum width for larger screens */
    margin: 0 auto;
    padding: 0!important;
    min-height: 100vh; /* Container height equals viewport height */
    display: flex;
    flex-direction: column; /* Stack children vertically */


    background: url(/images/zkk-bo-home-bg-1.png)!important;
    background-repeat: no-repeat!important;
    background-position: 0%!important;
    background-size: cover!important;
}


/* Header */
.ticker {
    background-color: #ff6200; /* Orange background */
    text-align: center;
    padding: 10px;
}

.ticker p {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0;
}


/* Header */
.header {
    padding: 10px;
    margin-bottom: 10px;
    display: flex;
    flex-direction: column; /* Stack cards vertically on mobile */
    gap: 10px;
}

.header-card {
    text-align: center;
    flex: 1; /* Takes full width on mobile */
    display: flex; /* Use Flexbox to center content */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    min-height: 100px; /* Ensure there's enough height for centering to be visible */
}

.header h1 {
    font-size: 1.5rem;
}

/* Content Section with Cards */
.content {
    display: flex;
    flex-direction: column; /* Stack cards vertically on mobile */
    gap: 10px;
    margin-bottom: 10px;
    padding: 10px 10px 0 10px;
    flex: 1; /* Content takes up remaining space, pushing footer to the bottom */

    background: url(/images/zkk-squeeze1-bg-asset1.png)!important;
    background-repeat: no-repeat!important;
    background-position: center!important;
    background-size: cover!important;
}

.card {
    padding: 20px;
    text-align: center;
    background-color: transparent!important;
    flex: 1; /* Cards take full width on mobile */
}

.content .card{
    border:none;
}

/* Footer */
.footer {
    padding: 20px 10px;
    text-align: center;
    margin-top: auto; /* Pushes footer to the bottom of the container */

    display: flex;
    justify-content: space-between;
}

.footer h2 {
    font-size: 1.2rem;
}

.header h2 {
    color:#51acf9!important;
    font-size:xxx-large;
}


.footer-left {
    font-size: 1.5rem;
    color: #ff6200!important;
    font-style: italic;
    text-align: left;
}

.footer-right {
    font-size: 1.5rem;
    color:#51acf9!important;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #000;
}

.video-section iframe{
    width:100%;
    height:300px;
}

.video-section{
    margin-top:20px;
}
#woman-pointing img{
    position:absolute;
    bottom:0;
    left:0;
    max-height: 789px;
}

#woman-pointing{
    display:none;
}

.zakikoed-1{
    color:#338d62;
}
.zakikoed-2{
    color:#ff7100;
}

.form-header{
    background: #2d835d;
    border-radius: 20px 20px 0 0;
    padding: 10px;
}
.form-section{
    border-radius: 20px;
    background: white;
}
.form-section-wrapper{
    border-radius: 20px;
    background: white;
    height: 100%;
}

div.input-wrapper{
    margin-top: 10px;
    color:darkgrey;
}

div.checklist,div.form-section{
    font-family:Verdana, Arial, Helvetica, sans-serif;
}

div.checklist{
    color: black;
    text-shadow: 0 2px white;
}

div.form-section{
    color:white;
    font-weight: bold;
}

/* Media Query for Larger Screens (min-width: 1200px) */
@media (min-width: 1218px) {
    /* Header Cards on Larger Screens */
    .header {
        flex-direction: row; /* Display cards in a row on larger screens */
        justify-content: space-between;
    }

    .header-card{
        text-align: left;
    }

    #woman-pointing{
        display:block;
    }

    .header-card:nth-child(1) {
        flex: 0 0 35%; /* First card takes 35% width */
        max-width: 35%;
    }

    .header-card:nth-child(2) {
        flex: 1; /* Second card takes the remaining width */
        max-width: calc(65% - 10px); /* Account for the gap */
    }

    .video-section iframe{
        height:350px;
    }

    .form-section {
        margin-top: -55px;
    }

    div#pre-enroll{
        padding-bottom:0;
    }

    div.checklist{
        color:black;
        text-shadow: 0 1px white;
    }

    /* Content Cards on Larger Screens */
    .content {
        flex-direction: row; /* Display cards in a row on larger screens */
        justify-content: space-between;
        max-height: 779px;
        min-height: 599px;
    }

    .card {
        flex: 1 1 calc(33.33%); /* 3 cards in a row, accounting for gap */
        max-width: calc(33.33%);
    }

    .footer h2 {
        font-size: 1.5rem;
    }
}