/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Crimson+Text&display=swap');

/* Base Styles */
body {
  margin: 0;
  font-family: 'Crimson Text', serif;
  background-color: #fdfaf6;
  color: #333;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  color: #3b4d3b;
  letter-spacing: 0.5px;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100dvh; /* better mobile vh */
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 10vh;
}

.hero-content {
  text-align: center;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #f4f1ec;
}

.hero-content p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color: #e6ddc4;
}

.hero-content p + p {
  margin-top: 6px;
}

.cta-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  display: inline-block;
  margin: 0 auto;
}

/* Social Icons */
.social-icon {
  width: 32px;
  height: 32px;
}

/* About Section */
.about {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 20px;
  background-color: #3b4d3b;
  color: #f4f1ec;
}

.about-text {
  flex: 1;
  padding: 20px;
}

.about-text h2 {
  font-size: 2rem;
  color: #e6ddc4;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.about-text p:last-child {
  font-size: 1.15rem;
}

/* Services Section */
.services {
  padding: 40px 20px;
  background-color: #f4f1ec;
}

.services h2 {
  text-align: center;
  margin-bottom: 30px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.5;
}

/* Booking */
.booking {
  padding: 40px 20px;
  background-color: #f4f1ec;
  text-align: center;
}

.booking h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.booking p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.booking-placeholder {
  border: 2px dashed #8b5e3c;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  display: inline-block;
}

.square-button {
  background-color: #8b5e3c;
  color: #fff;
  padding: 16px 28px;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* Testimonials */
.testimonials {
  padding: 40px 20px;
  background-color: #eae7e2;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}

.testimonial {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 1rem;
  padding: 10px;
}

.testimonial span {
  display: block;
  margin-top: 5px;
  font-size: 0.95rem;
}

.review-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.review-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.2s ease;
}

.review-icon:hover {
  transform: scale(1.1);
}

/* FAQ Section */
.faq {
  padding: 40px 20px;
  background-color: #fdfaf6;
}

.faq h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

.faq-item {
  max-width: 800px;
  margin: 0 auto 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
}

.faq-item h3 {
  font-size: 1.3rem;
  color: #3b4d3b;
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 1.05rem;
  margin: 0;
}

/* Footer */
footer {
  background-color: #8b5e3c;
  color: #fff;
  padding: 18px 20px;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

.footer-logo {
  max-width: 100px;
  height: auto;
}

.footer-info,
.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

footer p {
  margin: 2px 0;
}

.footer-map {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.footer-map iframe {
  width: 100%;
  border-radius: 8px;
}

.phone-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
}

.phone-link:hover {
  text-decoration: underline;
}

.address-link {
  color: inherit;
  text-decoration: none;
}

.address-link:hover {
  text-decoration: underline;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.testimonial-card {
  flex: 1 1 calc(33.333% - 20px);
  max-width: 320px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  font-style: italic;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 1rem;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #333;
}

.testimonial-card span {
  font-size: 0.95rem;
  font-weight: bold;
  color: #3b4d3b;
  text-align: right;
  margin-top: auto;
}

.footer-signature {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: #ddd;
}

.footer-signature strong {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    display: inline-block;
    margin: 0 auto;
  }

  .about {
    flex-direction: column;
  }

  .about-text p {
    font-size: 1rem;
  }

  .service-card {
    flex: 1 1 calc(50% - 20px);
    margin-bottom: 20px;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  .service-card p {
    font-size: 1rem;
  }

  .booking h2 {
    font-size: 1.8rem;
  }

  .booking p {
    font-size: 1.1rem;
  }

  .square-button {
    width: 100%;
    font-size: 1.3rem;
    padding: 18px;
  }

  .about-text h2,
  .services h2,
  .testimonials h2,
  .faq h2 {
    font-size: 1.4rem;
  }

  

  footer {
    padding: 15px;
    font-size: 1rem;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .footer-logo {
    margin-bottom: 10px;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }

  .testimonial-card {
    flex: 1 1 calc(100% - 20px);
  }
}
