
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #fdfdfd;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}


header {
    background-color: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0; 
}

.logo a {
    display: inline-block;
    margin-left: 10px; 
}


.logo img {
    max-height: 45px; 
    width: auto;
    display: block;
}

.menu-toggle {
    display: none; 
    font-size: 1.8em;
    cursor: pointer;
    margin-right: 15px; 
}



nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    padding: 5px 10px;
}

nav li {
    margin: 0 5px;
}

nav a {
    padding: 8px 18px;
    display: block;
    color: #555;
    font-size: 0.95em;
    font-weight: 400;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap; 
}

nav a:hover {
    color: #000;
}

nav a.active {
    border-color: #d32f2f; 
    color: #d32f2f; 
    font-weight: 500;
}





















.contact-details {
    padding: 50px 0;
    background-color: #ffffff; 
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 30px;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: repeat(3, 1fr); 
        text-align: left;
    }
}

.info-item {
    padding: 20px;
   
}

.info-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 15px;
    color: #b99767;
}

/* If using Font Awesome, style the <i> tags instead: */
/* .info-item i {
    font-size: 2.5em;
    margin-bottom: 15px;
    color: #b99767;
    display: block; / Or inline-block if needed /
} */

.info-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #333;
}

.info-item p {
    font-size: 1em;
    color: #555;
    line-height: 1.6;
    margin-bottom: 5px;
}



.contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9; 
}

.contact-form {
    max-width: 700px; /* Limit form width */
    margin: 0 auto; /* Center the form */
    background-color: #ffffff; /* White background for form area */
    padding: 30px 40px; /* Padding inside form */
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
}

.contact-form .section-title { /* Adjust title margin if needed */
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 25px; /* Space between form fields */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
    font-size: 0.95em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Montserrat', sans-serif; /* Match body font */
    transition: border-color 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #b99767; /* Highlight focus */
    outline: none; /* Remove default outline */
}

.form-group textarea {
    resize: vertical; /* Allow vertical resize only */
    min-height: 120px;
}

.form-submit {
    text-align: center; /* Center the submit button */
    margin-top: 30px;
}

.form-submit button {
     /* Uses .btn and .btn-primary styles */
     padding: 12px 40px; /* Adjust padding if needed */
}

/* === Map Section === */
.map-section {
    padding: 0; /* Remove padding if map should touch edges */
    /* Or add padding: 60px 0; if spacing is needed */
}

.map-placeholder { /* Reusing style from about page */
    max-width: none; /* Allow map to be full width if section has no padding */
    height: 350px; /* Adjust height */
    border: none; /* Remove border for actual map */
    background-color: #eee;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    border-radius: 0; /* Remove radius for full width */
     /* Add margin if section has padding: margin: 30px auto 0 auto; */
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
    .contact-info-grid {
        gap: 20px; /* Reduce gap */
    }
     .contact-form {
         padding: 25px 20px; /* Reduce padding on mobile */
     }
}