/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fffaf5; /* soft off-white */
  color: #3e2f1c; /* dark brown text */
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

/* Container to center content */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  text-align: center;
}

/* Hero Section */
.hero {
  background: linear-gradient(
      rgba(62, 47, 28, 0.85),
      rgba(62, 47, 28, 0.85)
    ),
    url('img/decor-bg.jpg') no-repeat center center/cover;
  color: #f5f0e6; /* creamy white */
  padding: 100px 20px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Services Section */
.services {
  padding: 60px 0;
  background-color: #fffaf5;
}

.services h2 {
  font-size: 2.75rem;
  margin-bottom: 40px;
  color: #3e2f1c;
  font-weight: 700;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.service-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(62, 47, 28, 0.15);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(62, 47, 28, 0.3);
}

.service-card img {
  width: 100%;
  display: block;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #8c6b3e;
}

.service-card h3 {
  font-size: 1.5rem;
  padding: 20px 20px 10px;
  color: #5a4626;
  font-weight: 600;
}

.service-card p {
  padding: 0 20px 20px;
  color: #5a4b33;
  font-size: 1rem;
  line-height: 1.4;
}

/* Gallery Section */
.gallery {
  padding: 60px 0;
  background-color: #f5f0e6;
}

.gallery h2 {
  font-size: 2.75rem;
  margin-bottom: 40px;
  color: #3e2f1c;
  font-weight: 700;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px;
}

.gallery-grid img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(62, 47, 28, 0.15);
  transition: transform 0.3s ease;
  cursor: pointer;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
  background-color: #fffaf5;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2.75rem;
  margin-bottom: 40px;
  color: #3e2f1c;
  font-weight: 700;
}

.testimonial-card {
  max-width: 700px;
  background: #8c6b3e33; /* light translucent brown */
  margin: 0 auto 30px;
  padding: 25px 35px;
  border-radius: 15px;
  font-style: italic;
  box-shadow: 0 6px 15px rgba(62, 47, 28, 0.1);
  color: #5a4626;
}

.testimonial-card span {
  display: block;
  margin-top: 15px;
  font-weight: 700;
  font-style: normal;
  color: #3e2f1c;
}

/* FAQ Section */
.faq {
  background-color: #f5f0e6;
  padding: 60px 20px;
}

.faq h2 {
  font-size: 2.75rem;
  text-align: center;
  margin-bottom: 40px;
  color: #3e2f1c;
  font-weight: 700;
}

.faq-item {
  max-width: 850px;
  margin: 0 auto 25px;
  background: #fff;
  padding: 25px 35px;
  border-left: 8px solid #8c6b3e;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(62, 47, 28, 0.1);
  color: #5a4626;
}

.faq-item h4 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #3e2f1c;
}

.faq-item p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .services h2,
  .gallery h2,
  .testimonials h2,
  .faq h2 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .faq-item h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.9rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
/* CTA Section Styling */
.cta {
  background: linear-gradient(135deg, #693f35, #feb47b); /* Warm gradient */
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  border-radius: 16px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background-color: #fff;
  color: #694238;
  font-weight: bold;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #ffe3d5;
  color: #835344;
  transform: scale(1.05);
}

