/* ---------------------------------
   Global Reset (commented out)
----------------------------------- */
/*
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/

/* ---------------------------------
   Typography & Base Styling
----------------------------------- */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    color: #333;
}

h1 {
    color: #1C75BC;
}

/* ---------------------------------
   Container & Page Layout
----------------------------------- */
.container {
    background-color: #fff;
    text-align: center;
    padding-bottom: 50px;
}

.container h2 {
    padding: 0 15px; /* Horizontal padding for headings */
}

.container p {
    padding: 0 20px; /* Horizontal padding for paragraphs */
}

/* ---------------------------------
   Slider / Hero Banner
----------------------------------- */
.slider {
    position: relative;
    width: 100%;
    max-height: 80vh; /* Limit banner height on large screens */
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    position: relative;
    width: 100%;
}

.slider-image {
    width: 100%;
    height: auto;
    object-fit: cover; /* Maintain image proportions */
}

/* ---------------------------------
   Overlay on Slider
----------------------------------- */
.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 60%; /* Default for desktop */
    padding: 1rem;
    z-index: 2;
}

.overlay-image {
    width: 100%;
    height: auto;
}

/* Responsive Overlay Widths */
@media (max-width: 1024px) {
    .overlay {
        max-width: 70%;
    }
}

@media (max-width: 768px) {
    .overlay {
        max-width: 80%;
    }
}

@media (max-width: 480px) {
    .overlay {
        max-width: 90%;
    }
}

/* ---------------------------------
   Contact Section
----------------------------------- */
.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
}

/* ---------------------------------
   Image Wrapper
----------------------------------- */
.image-wrapper {
    max-width: 100%;
    max-height: 100%;
    text-align: center;
}

/* ---------------------------------
   Buttons (Body CTA)
----------------------------------- */
.body-button {
    display: inline-block;
    background-color: #1C75BC;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 15px 30px;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
    max-width: 320px; /* Consistent size across breakpoints */
    margin: 0 auto;
}

.body-button:hover {
    background-color: #155a91;
}

.body-button:active {
    transform: scale(0.98);
}

/* ---------------------------------
   Social Media Buttons
----------------------------------- */
.footer-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.social-button {
    margin-left: 15px;
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-button:hover {
    color: #ddd;
}

/* ---------------------------------
   Footer Section
----------------------------------- */
.site-footer {
    width: 100%;
    background-color: #1C75BC;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
}

i.fas, i.fab {
    display: inline-block;
    width: 1.25em;
    text-align: center;
}

/* Footer Responsive Adjustments */
@media (max-width: 768px) {
    .site-footer {
        min-height: 140px;
    }

    .footer-content {
        padding: 20px;
        gap: 1rem;
    }

    .footer-social {
        margin-top: 10px;
    }
}