/* General Body Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* A light background for the page body */
}

/* Header Styles */
.main-header {
    background-color: #006e55;
    color: white;
    padding: 40px  120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    overflow: hidden; /* Prevents content from spilling out */
}

.logo a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
}

.logo img {
    height: 80px; /* Adjust this value to get the perfect size */
    vertical-align: middle; /* Ensures the image aligns nicely with any adjacent text or elements */
}

/* Navigation Menu Styles */
.main-nav {
    position: absolute;
    left: 50%;
    width: auto;
    height: auto;
    background-color: transparent;
    transform: translateX(-50%);
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.main-nav ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 15px;
    font-size: 1.5rem;
    font-family: "Archivo Black", sans-serif;
    font-weight: 200;
}

.main-nav ul li a:hover {
    background-color: transparent;
    color: #cccccc;
    transition: color 0.3s ease;
    text-decoration: underline;
}

/* Header Social Icons */
.header-socials {
    display: flex;
    gap: 40px;
    align-items: center;
}

.header-socials a {
    color: white;
    font-size: 1.5rem;
}

/* Mobile Menu Buttons (Hamburger and Close) */
.nav-open-btn,
.nav-close-btn {
    display: none; /* Hidden on desktop by default */
}

/* Mobile Styles using Media Query */
@media (max-width: 767px) {
    .logo img {
        height: 100px; /* Larger logo for mobile view */
    }

    .header-socials {
        display: none;
    }

    /* Show mobile-only buttons */
    .nav-open-btn {
        display: block;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
    .main-header {
        padding: 20px; /* Reduced padding for mobile */
    }
    /* Styles for the slide-out navigation panel */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 250px;
        height: 100%;
        background-color: #333;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    /* This class is added by JavaScript to show the menu */
    .main-nav.nav-active {
        transform: translateX(0);
    }

    .logo img {
        height: 70px; /* Adjust this value to get the perfect size */
        vertical-align: middle; /* Ensures the image aligns nicely with any adjacent text or elements */
    }

    .main-nav ul {
        display: block; /* Stack nav items vertically */
        padding-top: 60px;
    }

    .main-nav ul li a {
        padding: 15px 20px;
    }

    .main-nav ul li a:hover {
        background-color: #575757;
        color: white; /* Keep text color consistent on hover */
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }
}
/* Footer Styles */
.main-footer {
    background-color: #006e55;
    color: white;
    padding: 40px 20px; /* Increased padding for better spacing */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px; /* Adds space between the columns */
}

.footer-left, .footer-right {
    flex: 1; /* Each column takes up equal space */
    min-width: 300px; /* Prevents columns from getting too narrow */
}

.footer-left h2{
    color: white;
    margin-top: 0;
    font-size: 48px;
    font-family: "Archivo Black", sans-serif;
}

.main-footer p {
    margin: 10px 0;
    font-size: 1.2rem;
    line-height: 1.6;
    font-family: 'Arvo', serif;
}

.main-footer a {
    color: white;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

/* Footer Form Styles */
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-family: "Archivo Black", sans-serif;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.footer-right button {
    background-color: white;
    color: #006e55;/* Theme color */
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-family: "Archivo Black", sans-serif;
}

.footer-right button:hover {
    background-color: #006e55;
    color: white; /* A slightly darker shade for hover */
}

/* Responsive adjustments for the footer */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
        padding: 20px;
    }

    .footer-left, .footer-right {
        min-width: auto;
        width: 100%;
        text-align: center;
    }

    .footer-left h2 {
        font-size: 2.5rem;
    }

    .form-group {
        text-align: left;
    }
}