.home-cover {
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    display: block;
    margin-left: -0.5vh;
}

.home-cover-mobile {
    display: none;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    object-fit: cover;
    justify-content: center;


}

.home-container {
    width: 100%;
    padding: 4vw;
    padding-bottom: 2vw;
}


.home-container p {
    justify-content: center;
    justify-items: center;
    font-size: 1.05rem;
    padding-right: 8vw;
}

.home-container h2 {
    font-size: 2vw;
}

.home-container h3 {
    font-size: 1.5vw;
}

.home-container h1 {
    font-size: 7.6vw;
}

.home-banner {
    background-color: #fffe03;
    width: 100%;
    height: 5vw;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-banner h2 {
    color: black;
    text-align: center;
    justify-self: center;
    font-size: 3vw;
    margin-top: 3px !important;
    margin-bottom: 0 !important;
}

.home-img {
    max-width: none;
    width: calc(130% + 3vw);
    margin-left: -9vw;
    height: auto;
    display: block;
    overflow-x: visible;

}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/* Button Style */
.btn-home {
    display: inline-block;
    padding: 5px 20px 5px;
    /* Left 0 for alignment */
    background-color: #FFFE03;
    /* Theme Yellow */
    color: white !important;
    /* Force white text */
    font-family: 'druk-super', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    -webkit-text-stroke: 0.4rem black;
    paint-order: stroke fill;
    margin-top: 1rem;
    cursor: pointer;
    transition: transform 0.2s ease;
    width: auto;
    /* Default width on desktop */
}

.btn-home:hover {
    transform: scale(1.50);
    transform-box: fill-box;
}

@media screen and (max-width: 1220px) {

    .home-container p {
        font-family: 'satoshi';
        font-weight: 400;
        font-size: 1.05rem;
        line-height: normal;
        color: #FFFE03;
    }

    .btn-home {
        width: 50%;
        text-align: center;
        display: block;
        padding: 10px 0;
        /* Keep font size consistent with desktop/header look, or adjust slightly if too big */
        font-size: 1.05rem;
        margin-bottom: 2vh;
    }

    .home-container h2 {
        font-size: 2.5vw;
    }

    .home-container h3 {
        font-size: 2vw;
    }

    .home-container hr {
        margin-top: 1vh;
        margin-bottom: 6vh;
        /* Make line extend full width of the page */
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
    }

    .home-img {
        height: auto;
        object-fit: cover;
        display: block;
        margin-top: 10vh;
    }

}

@media screen and (max-width: 1220px) {
    .home-container h1 {
        font-size: 7.4vw;
    }

    .home-container h2 {
        font-size: 2.5vw;
    }

    .home-container h3 {
        font-size: 2vw;
    }

    .home-container hr {
        margin-top: 1vh;
        margin-bottom: 6vh;
        /* Make line extend full width of the page */
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
    }

    .home-img {
        height: auto;
        object-fit: cover;
        display: block;
        margin-top: 10vh;
    }

}












@media screen and (max-width: 768px) {
    .home-cover {
        display: none;
    }

    .home-cover-mobile {
        display: flex;
    }

    .home-img {
        width: 120%;
        padding: 5vw;
        margin-top: 1vw;
    }

    .home-container p {
        padding-right: 10vw;
        font-size: 1.05rem;

    }

    .btn-home {
        width: 100%;
        text-align: center;
        display: block;
        padding: 10px 0;
        /* Keep font size consistent with desktop/header look, or adjust slightly if too big */
        font-size: 1.2rem;
    }

    .home-container h2 {
        font-size: 3.5vw;
    }

    .home-container h3 {
        font-size: 3vw;
    }

    .home-container hr {
        margin-top: 1vh;
        margin-bottom: 6vh;
        /* Make line extend full width of the page */
        width: 100vw;
        position: relative;
        left: 50%;
        margin-left: -50vw;
    }
}