
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #f9f6f1;
  color: #333;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #2c2c2c;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
  margin-bottom: 20px;
}

.cta-button {
  padding: 12px 25px;
  background-color: #a28e6a;
  color: #fff;
  border: none;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: rgba(250, 250, 250, 0.85);
  padding: 15px 0;
  text-align: center;
}

.navbar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar li {
  display: inline-block;
  margin: 0 20px;
}

.navbar a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 250px;
  background-color: #fff;
  padding: 20px;
  border-left: 5px solid #a28e6a;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.gallery {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 8px;
}

form input, form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

form button {
  background-color: #a28e6a;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  text-align: center;
  background-color: #f0e8dd;
  padding: 30px;
  font-size: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: 0;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  padding: 10px 20px;
  cursor: pointer;
}

.nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0 15px;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
  }

  .nav-list {
    position: absolute;
    top: 60px;
    right: 0;
    background-color: rgba(250, 250, 250, 0.95);
    width: 100%;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .nav-list.active {
    max-height: 300px;
  }

  .nav-list li {
    margin: 15px 0;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 15px;
  }
}
