/* Reset margin and padding */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}

/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}




.success-message-overlay {
    position: fixed;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    color: green;
    font-size: 3em;  /* Triple the font size */
    font-weight: bold;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Optional: Slightly opaque background */
    padding: 20px;
    border-radius: 10px;
    z-index: 1000;   /* Ensure it’s on top of other elements */
}


/* Container */
.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
    padding: 0 20px;

    margin: 0 auto;
    height: auto; /* Let the content determine the height */
}

/* Hero Image */
.hero-image {
    margin-top: 20px; /* Adjust this value to control the space above the image */
    width: 100%;
    height: auto;
    display: block;

}


.hero-image-container {
    width: 100%;
    height: 300px; /* Adjust height as needed */
    background-image: url('IMAGES/HERO_IMAGE.jpg');
    background-size: cover; /* Ensure the image covers the entire container */
    background-position: center; /* Center the image in the container */
    background-repeat: no-repeat; /* Prevent repeating the image */
    margin-top: 20px; /* Add space above the image */
}


.spacer {
    height: 20px; /* Adjust height as needed */
}



/* Social Media Links */
.social-links {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

.social-links a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
}

.social-links img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

/* Embedded YouTube Video */
.video-container {
    margin: 20px 0;
}

.video-container iframe {
    width: 100%;
    height: 315px;
    max-width: 800px;
    display: block;
    margin: 0 auto;
}

/* Mailing List Signup */
.mailing-list {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.mailing-list h2 {
    margin-bottom: 10px;
}

.mailing-list p {
    margin-bottom: 20px;
    font-size: 0.9em;
    color: #666;
}

.mailing-list input[type="email"] {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.mailing-list button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.mailing-list button:hover {
    background-color: #0056b3;
}

/* Contact Us */
.contact-us {
    margin: 20px 0;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.contact-us h2 {
    margin-bottom: 10px;
}

.contact-us textarea {
    width: 100%;
    max-width: 500px;
    height: 100px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 10px;
    box-sizing: border-box;
}

.contact-us button {
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}


.contact-us button:hover {
    background-color: #218838;
}

/* Ensure proper centering on desktop */
@media (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }
}
