@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --nav-color: #0F3D2E;
    --heading-color: rgb(42, 116, 13);
    --primary-color: rgb(209, 56, 240);
    --button-color: rgb(209, 20, 61);
    --body-color: rgb(246, 228, 252);
}

* {
    margin: 0;
    padding: 0;
}

body {
    background: linear-gradient(145deg, #f4f6f9, #eef2f7);
}

header {
    background-color: var(--nav-color);
}

nav {
    height: 90px;
    padding: 0 40px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.hamburger svg rect {
    fill: white;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

#logo {
    padding: 1px;
    width: 51%;
    height: auto;
}


.pages {
    display: flex;
    gap: 25px;
    align-items: center;
    transition: 0.3s ease;
}


nav a {
    font-family: "Baloo bhai 2", serif;
    text-decoration: none;
    color: white;
    padding-right: 25px;
    transition: ease-out 0.2s;
}

nav a:hover {
    transform: translateY(-4px);
    color: #D4AF37;
    /* gold */
}

.selected {
    color: #D4AF37;
}



@media (max-width: 768px) {

    .hamburger {
        display: block;
        font-size: 26px;
        color: white;
        cursor: pointer;
        z-index: 1001;
    }

    .pages {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #1f8f5f;
        /* slightly darker than header */

        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;

        transition: 0.4s ease;
        z-index: 1000;
    }

    .pages.active {
        right: 0;
    }

    .pages a {
        font-size: 20px;
        color: white;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .pages a:hover {
        color: #ffd700;
        transform: scale(1.05);
    }
}

.footer {
    background: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
}

.footer-column a {
    flex: 1;
    min-width: 220px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 14px;
    color: #ccc;
}

.footer-contact span {
    padding: 0px 8px;
}

.footer-contact i {
    color: #25D366;
    /* you can change color */
    font-size: 16px;
}


.footer h3,
.footer h4 {
    font-family: "Poppins", sans-serif;
    color: white;
    margin-bottom: 15px;
}

.footer p {
    font-family: "Poppins", sans-serif;
    font-weight: 100;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: 0.3s;
    font-family: "Poppins", sans-serif;
    font-weight: 100;
}

.pages-hover:hover {
    color: #25D366;
    transform: translateX(5px);
}

.footer-bottom {
    font-family: "Baloo Bhai 2", sans-serif;
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    color: #888;
}

.social-media {
    display: flex;
    justify-content: space-between;
    width: 80%;
    align-items: center;
    margin: auto;
}
.icons{
    display: flex;
    gap: 13px;
    /* width: 50%; */
}

.icon-media {
    border-radius: 50%;
    font-size: 1.5rem;
    width: 3rem;
    height: 3rem;
    background-color: #044612;
    align-items: center;
    justify-content: center;
    display: flex;
    transition: ease-in-out 0.3s;
}
.icon-media:hover{
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .social-media{
        flex-direction: column;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        margin-bottom: 30px;
    }
}