/* --- Global Styles --- */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  background-color: #fff8f2;
  color: #333;
  line-height: 1.6;
}

h2 {
  font-family: 'Playfair Display', serif;
  color: #a3705d;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* --- Header & Nav --- */
header {
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 { margin: 0; }
header h1 a {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #a3705d;
  text-decoration: none;
}

.menu-icon {
  font-size: 1.5rem;
  cursor: pointer;
  display: none;
  color: #a3705d;
}

nav { display: flex; gap: 1.5rem; }
nav a {
  text-decoration: none;
  color: #a3705d;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 0.5rem;
  transition: 0.3s;
}

nav a:hover { color: #333; text-decoration: underline; }

/* --- About Section --- */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.about-img { flex: 1 1 300px; max-width: 400px; }
.about-img img { width: 100%; border-radius: 12px; }
.about-text { flex: 2 1 400px; }

/* --- Services Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  text-align: center;
}

.service-card img { width: 100%; height: 250px; object-fit: cover; }
.service-card h3 { color: #a3705d; margin: 1rem 0; }
.service-card p { padding: 0 1rem 1.5rem; }

/* --- Contact Form --- */
/* This part handles the spacing for the whole page */
section { 
  padding: 4rem 10%; /* Creates wider gutters on the left and right */
  max-width: 1100px; 
  margin: auto; 
}

/* This part makes the form itself narrower and centered */
.contact-section { 
  max-width: 500px; /* Reduced from 600px for more side space */
  margin: 0 auto; 
  padding: 2rem 0;
}

/* Keeps your form elements clean and consistent */
form { 
  display: flex; 
  flex-direction: column; 
  gap: 1.2rem; 
}

input, textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Roboto', sans-serif;
  width: 100%; /* Ensures inputs fill the narrower container */
  box-sizing: border-box; /* Prevents padding from breaking the width */
}

button {
  background-color: #a3705d;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

button:hover { 
  background-color: #7e4d3f; 
}

.social-icons { 
  text-align: center; 
  margin-top: 3rem; 
}

.social-icons a { 
  color: #a3705d; 
  font-size: 2rem; 
  margin: 0 15px; 
}

/* --- Footer --- */
footer { text-align: center; padding: 2rem; font-size: 0.9rem; color: #aaa; }

/* --- Mobile --- */
@media (max-width: 768px) {
  .menu-icon { display: block; }
  nav {
    display: none;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    z-index: 1000;
  }
  nav.active { display: flex; }
}