#hero {
    width: 100%;
    min-height: 100vh; /* Ensure the hero section takes at least the full viewport height */
    background-image: url("../images/background.webp");
    background-size: cover;
    background-position: center;
    position: relative;
    background-repeat: no-repeat;
    padding: 50px; /* Add padding to the bottom */
    display: flex;
    align-items: center; /* Center the content vertically */
    justify-content: center; /* Center the content horizontally */
    flex-direction: column; /* Ensure content stacks vertically */
    
}
/* Allow the content to grow and push the footer down */


#hero-content {
    width: 80%; /* Adjust this value to control the width */
    background-color: rgb(255, 140, 0, .8); /* Add a semi-transparent orange background */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.form-container {
    margin-top: 20px;
}

.news {
    font-size: 1.5rem;
}

.google-login-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    max-width: 300px;
    margin: auto;
    transition: background-color 0.3s ease;
}

.google-login-button:hover {
    background-color: #f7f7f7;
}

.google-logo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Media query for mobile view */
@media (max-width: 768px) {
    .google-signin-button {
        width: 100%; /* Ensure the button fills the width on smaller screens */
    }

    .google-signin-button iframe {
        width: 100% !important; /* Ensure the iframe fills the width on smaller screens */
    }
    #hero {
        min-height: calc(100vh - 56px); /* Adjust for the height of the navbar */
        padding-top: 56px; /* Add padding to account for the navbar */
        padding-bottom: 20px; /* Add padding to the bottom */
        display: flex;
        align-items: center; /* Center the content vertically */
        justify-content: center; /* Center the content horizontally */
        flex-direction: column; /* Ensure content stacks vertically */
    }

    #hero-content {
        position: static; /* Remove absolute positioning */
        transform: none; /* Remove transform */
        width: 90%; /* Adjust the width for smaller screens */
        padding: 10px; /* Reduce padding for smaller screens */
    }

    .news {
        font-size: 1.2rem; /* Adjust font size for smaller screens */
    }
}
