/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #5C7474;
    line-height: 1.8;
    background-color: #F5F3EF;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background-color: #5C7474;
    color: #E6CEB5;
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    color: inherit;
    font-size: 2rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #C16632;
    cursor: pointer;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav a {
    color: #E6CEB5;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out;
}

.nav a:hover {
    color: #C16632;
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        gap: 10px;
    }
}

/* Contact Section */
.section.contact {
    padding: 80px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 40px 0;
}

.section.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #5C7474;
}

.section.contact p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto;
    color: #5C7474;
}

.contact-details {
    margin-top: 40px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
    text-align: left;
}

.contact-list li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #5C7474;
}

.contact-list strong {
    color: #C16632;
    margin-right: 10px;
}

.contact-list a {
    color: #5C7474;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.contact-list a:hover {
    color: #C16632;
}

/* Footer */
.footer {
    background-color: #5C7474;
    color: #E6CEB5;
    text-align: center;
    padding: 20px 0;
    margin-top: 60px;
}

.footer p {
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links a {
    color: #E6CEB5;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

.social-links a:hover {
    color: #C16632;
}

/* Responsiveness */
@media (max-width: 768px) {
    .contact-details {
        text-align: center;
    }

    .contact-list {
        text-align: center;
    }
}

/* Mobile Navigation Styles */
.nav {
    position: relative;
}

/* Default styles for larger screens */
.nav ul {
    display: flex; /* Show the normal menu by default */
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-toggle {
    display: none; /* Hide the hamburger icon by default */
}

/* Mobile styles */
@media (max-width: 768px) {
    .nav ul {
        display: none; /* Hidden by default */
        flex-direction: column; /* Stack menu items vertically */
        position: fixed; /* Fixed positioning keeps the menu visible */
        top: 60px; /* Position below the header */
        right: 0; /* Align to the right */
        width: 70%; /* Set the width to avoid overflow */
        height: auto; /* Ensure the dropdown fits its content */
        background-color: #5C7474; /* Distinct background for visibility */
        text-align: left; /* Align text to the left */
        padding: 20px; /* Add padding around items */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
        z-index: 1000; /* Ensure it appears above other elements */
        border-radius: 8px; /* Optional: rounded corners */
        overflow-y: auto; /* Enable scrolling if content overflows */
    }

    .nav ul.show {
        display: flex; /* Show the menu when toggled */
    }

    .nav a {
        color: #E6CEB5; /* Contrasting text color */
        text-decoration: none; /* Remove underline */
        text-transform: uppercase; /* Optional styling */
        font-size: 0.9rem; /* Slightly larger text for visibility */
        padding: 10px 20px; /* Add padding to increase clickable area */
        display: block; /* Ensure links are block elements */
        transition: color 0.3s ease-in-out;
    }

    .nav a:hover {
        color: #C16632; /* Different hover color */
    }

    .nav ul {
        z-index: 1000; /* Higher than other content */
    }

    .nav-toggle {
        display: block; /* Show the hamburger icon on small screens */
        cursor: pointer;
        font-size: 1.5rem;
        color: #E6CEB5;
    }
}
