@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

#home {
    background-image: url('../images/banner.png');
    background-size: contain;
    background-position: center;
    width: 100%;
    height: 500px;
    text-align: center;
    position: relative;
}

.banner-content {
    max-width: 800px;
    margin: 0 auto;
    position: absolute;
    top: 70%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.cta-button {
    background-color: #ff6600;
    color: white;
    padding: 25px 110px;
    font-size: 20px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    margin-left: 80px;
}

.cta-button:hover {
    background-color: #e05500;
    transform: scale(1.05);
}
@media (max-width: 1100px) {
    #home {
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        height: 600px;
        margin-top: 55px;
        scroll-margin-top: 60px;
    }

    .banner-content {
        top: 95%;
        left: 45%;
        transform: translateX(-50%) translateY(-50%);
    }

    .cta-button {
        padding: 20px 60px;
        font-size: 20px;
    }
}
@media (max-width: 800px) {
    #home {
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        height: 550px;
        margin-top: 55px;
        scroll-margin-top: 60px;
    }

    .banner-content {
        top: 100%;
        left: 45%;
        transform: translateX(-50%) translateY(-170%);
    }

    .cta-button {
        padding: 23px 60px;
        font-size: 25px;
    }
}
@media (max-width: 430px) {
    #home {
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        height: 300px;
        margin-top: 55px;
        scroll-margin-top: 60px;
    }

    .banner-content {
        top: 95%;
        left: 40%;
        transform: translateX(-50%) translateY(-50%);
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}
@media (max-width: 400px) {
    #home {
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        height: 300px;
        margin-top: 55px;
        scroll-margin-top: 60px;
    }

    .banner-content {
        top: 95%;
        left: 40%;
        transform: translateX(-50%) translateY(-50%);
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}
@media (max-width: 375px) {
    #home {
        background-image: url('../images/banner-mobile.png');
        background-size: cover;
        height: 250px;
        margin-top: 55px;
        scroll-margin-top: 60px;
    }

    .banner-content {
        top: 95%;
        left: 38.5%;
        transform: translateX(-50%) translateY(-50%);
    }

    .cta-button {
        padding: 13px 30px;
        font-size: 14px;
    }
}
