@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Mono:ital,wght@0,200..800;1,200..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@font-face {
    font-family: 'Source Sans Pro';
    src: url('/fonts/SourceSansPro-Regular.woff2') format('woff2'),
         url('/fonts/SourceSansPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/* ==========================
   Global Styles
========================== */
:root {
    --primary-bg: #F2E4CF;
    --text-color: black;
    --heading-font: 'Lora', serif;
    --text-font: 'Source Sans Pro', sans-serif;
    --button-bg: #38512F;
    --button-text: white;
    --button-radius: 10px;
    --nav-height: 80px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--text-font);
    background: var(--primary-bg);
    color: var(--text-color);
}

/* ==========================
   Header Styles
========================== */



.logo img {
    mix-blend-mode: multiply;
}

.footer-logo img {
    mix-blend-mode: color-burn;
}


/* === FOOTER STYLES === */
footer {
    background: #38512F;
    color: white;
    padding: 40px 0;
    text-align: center;
}

/* Top Footer */
.top-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* Column Styles */
.footer-logo, .footer-links, .footer-contact {
    flex: 1;
    padding: 15px;
    min-width: 250px;
}



    .footer-logo {
        order: 2;
            justify-content: center;
    }

    .footer-links {
        order: 1;
    }

    .footer-contact {
        order: 3;
    }

.footer-logo img {
    max-width: 180px;
}

.footer-links h3, .footer-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li, .footer-contact ul li {
    margin: 8px 0;
    font-size: 16px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #F2E4CF;
}

/* Contact Icons */
.footer-contact i {
    margin-right: 8px;
    color: #F2E4CF;
}

/* Bottom Footer */
.bottom-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 20px auto 0;
    padding-top: 20px;
    font-size: 14px;
    flex-wrap: wrap;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #F2E4CF;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-footer {
        flex-direction: column;
        text-align: center;
    }

    .footer-logo {
        order: 1;
    }

    .footer-links {
        order: 2;
    }

    .footer-contact {
        order: 3;
    }

    .bottom-footer {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}











/* General Reset */


/* Contact Section */
.contact-section {
    background: #FEF5E7;
    padding: 50px 0;
}

/* Container */
.contact-container {
    display: flex;
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* Left Column (Map) */
.contact-left {
    flex: 1;
    padding: 20px;
}

/* Right Column (Form) */
.contact-right {
    flex: 1;
    padding: 40px;
    background: #fff;
}

.contact-right h2 {
    margin-bottom: 10px;
    color: #333;
}

.contact-right p {
    margin-bottom: 20px;
    color: #666;
}

/* Form Styling */
form input, form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form textarea {
    resize: none;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #ff7f50;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #ff5722;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }
}

