/* General Styles */
body,
html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

/* Home Section */
.home-section {
    /*background-image: url(../../assets/images/Patterns/Asset1.png);*/
    display: flex;
    width:100%;
    height:75vh;
    flex-direction: column;
    justify-content: center;
    /*align-items: center;*/
    text-align: center;
    margin: 0 0  40px 0;
}

/* Title */
.main-title {
    font-size: 6vw;
    /* Scale with viewport width for responsiveness */
    font-weight: bolder;
    margin: 20px 0;
}

/* Subtitle */
.subtitle {
    width: 100%;
    font-size: 2vw;
    /* Adjust font size based on viewport width */
    font-weight: 400;
    color: white;
    background-color: #A20000;
    /* Initial Red bar */
    padding: 2px;
    transition: background-color 0.5s ease;
}

/* Main Image */
.main-image {
    max-width: 100%;
    /* Adjusts image width responsively */
    height: auto;
    /* Keeps the image proportions */
    transition: opacity 0.5s ease;
    background-size: cover;
}

/* Button */
.cta-button {
    margin-top: 40px;
    padding: 5px 50px;
    font-size: 1.5vw;
    /* Scales with viewport width */
    color: #79BE70;
    border: 2px solid #79BE70;
    background-color: transparent;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Button Hover Effect */
.cta-button:hover {
    background-color: #79BE70;
    color: #F7F7F7;
}

/* Media Queries for Smaller Devices */
@media (max-width: 768px) {
    .main-title {
        margin: 2vh 0;
        font-size: 8vw;
        /* Bigger font for smaller screens */
    }

    .subtitle {
        font-size: 4vw;
        padding: 6px;
    }

    .cta-button {
        font-size: 2.5vw;
        padding: 8px 40px;
    }
}

@media (max-width: 480px) {
    .home-section {
        height:100%;
        padding: 0 20px;
    }

    .main-title {
        font-size: 10vw;
        /* Even larger font for mobile screens */
    }

    .subtitle {
        font-size: 5vw;
        padding: 5px;
    }

    .cta-button {
        font-size: 3vw;
        padding: 6px 30px;
    }
}