/* Basic Reset and Variables */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --background-light: #f8f9fa;
    --text-dark: #343a40;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
}

/* --- Header and Navigation --- */
header {
    background: var(--text-dark);
    color: var(--text-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px; /* Adjust as needed for your logo */
    width: auto;
    /* Basic placeholder styling if you don't have an image */
    background-color: none; 
    border-radius: 5px;
}

.navbar a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    margin-left: 5px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.navbar a:hover {
    background-color: #2c658d;
}

/* Mobile Menu Toggle Button (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}


/* --- Main Content Sections --- */
section {
    padding: 4rem 5%;
    min-height: 50vh;
}

/* Hero Section Example */
.hero {
    background-color: #e9ecef;
    text-align: center;
    padding: 6rem 5%;
}

/* --- Contact Form and Map --- */
.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap; /* Allows sections to stack on mobile */
    gap: 2rem;
    justify-content: space-between;
}

.contact-form-wrapper,
.map-location-wrapper {
    flex: 1 1 45%; /* Flex-grow, Flex-shrink, Flex-basis */
    min-width: 300px;
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: var(--text-light);
}

.contact-form h3,
.map-location-wrapper h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.contact-form textarea {
    resize: vertical;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

.map-embed {
    margin-top: 1rem;
    /* Ensures the iframe is responsive */
    overflow: hidden; 
    position: relative;
    width: 100%;
    /* 3:1 aspect ratio for the map, adjust height in HTML to match */
    height: 300px; 
}


/* --- Footer and Social Media --- */
.footer {
    background-color: var(--text-dark);
    color: var(--background-light);
    padding: 2rem 5%;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links a {
    color: var(--background-light);
    font-size: 1.5rem;
    margin: 0 0.75rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}


/* --- Responsive Design (Mobile View) --- */
@media (max-width: 768px) {
    
    .header {
        padding: 0.5rem 5%;
    }

    /* Show the hamburger icon */
    .menu-toggle {
        display: block;
    }

    /* Hide the default navigation on mobile */
    .navbar {
        position: absolute;
        top: 100%; /* Position right below the header */
        left: 0;
        width: 100%;
        background: var(--text-dark);
        flex-direction: column;
        display: none; /* Hidden by default, shown by JavaScript */
        padding: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .navbar.active {
        display: flex;
    }

    .navbar a {
        display: block;
        text-align: center;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* Contact Form Stacking */
    .contact-container {
        flex-direction: column;
    }

    .contact-form-wrapper,
    .map-location-wrapper {
        min-width: 100%;
        flex-basis: 100%;
    }
}
footer {
    background-color: #2c3e50; 
    color: white;
    padding: 30px 5%;
    text-align: center;
    margin-top: 50px;
}

.social-links {
    margin-top: 15px;
}

.social-links a {
    color: white;
    font-size: 1.8em;
    margin: 0 12px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4dc2ff; 
}
