@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #f8f5f0;
    color: #333;
}
header {
    background-color: #2e5d34;
    color: #fff;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

nav a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a.active,
nav a:hover {
    color: rgb(184, 155, 116);
}

.contact-hero {
    background-color: #e5ecdf;
    text-align: center;
    padding: 40px 20px;
}
.contact-hero h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-container {
    display: flex;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
    background-color: #fdfbf6;
}

.contact-form,
.contact-details {
    flex: 1;
    min-width: 300px; 
}
.contact-form h3 {
    margin-bottom: 15px;
}
.contact-form form {
    display: flex;
    flex-direction: column;
}
.contact-form input, 
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #b4c9b1;
    border-radius: 5px;
    font-size: 14px;
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form button {
    background-color: #2f5d37;
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.contact-form button:hover {
    background-color: #244b2b;
}


.contact-details h3 {
    margin-bottom: 15px;
}
.contact-details p {
    margin: 8px 0;
}
.contact-details i {
    margin-right: 8px;
    color: #2f5d37;
}

.social-links {
    margin: 15px 0;
}
.social-links a {
    margin-right: 10px;
    font-size: 20px;
    color: #2f5d37;
    transition: color 0.3s ease;
}
.social-links a:hover {
    color: #b89b74;
}

.delivery-map {
    margin-top: 20px;
}
.delivery-map h2 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2e5d34;
}
.delivery-map p {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
}
.delivery-map iframe {
    width: 100%;
    border-radius: 12px;
    border: 0;
    height: 300px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin: 0 10px;
    }

    .contact-container {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 1024px) {
    nav a {
        margin-left: 12px;
    }
}

footer {
    background-color: #2e5d34;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-size: 1rem;
    margin-top: 40px;
}
footer p {
    margin: 0;
}
