/* Reset and basics */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
  }
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  header {
    background: #9e6f49;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

  .logo {
    font-size: 1.8em;
    color: #FFFFFF;
    font-family: 'Didot', 'Bodoni MT', serif;
  }
  nav ul {
    list-style: none;
    display: flex;
    gap: 40px;
  }
  nav a {
    text-decoration: none;
    color: #FFFFFF;
  }
  nav a:hover {
    color: #000000;
  }
  
  .hero {
  background: url('images/hero-background.jpg') no-repeat center center/cover;
  color: white;
  padding: 150px 0;
  text-align: center;
  position: relative;
  }
  .hero h2 {
    font-size: 2.5em;
  }
  .hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 24px;
    background: #e0c4a0;
    color: #FFFFFF;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
  }
  .section {
    padding: 80px 0;
  }
  .section-alt {
    background: #f0f4ff;
  }
  .section h2 {
    text-align: center;
    margin-bottom: 40px;
  }
  .services-list {
    list-style: none;
    padding: 0;
    font-size: 1.1em;
    max-width: 600px;
    margin: auto;
  }
  .services-list li {
    margin-bottom: 15px;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  form {
    max-width: 600px;
    margin: auto;
  }
  form label {
    display: block;
    margin: 15px 0 5px;
  }
  form input, form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  form button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #5c7aea;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  form button:hover {
    background: #4662c1;
  }
  footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
  }
  
