/* Reset & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  overflow-x: hidden;
}

body {
  font-family: "Inter", "Helvetica Neue", sans-serif;
  background-color: #fffaf8;
  color: #2b2b2b;
  line-height: 1.6;
  text-align: center;
  padding-bottom: 4rem;
}

/* Header */
header {
  background-color: #f6e7e1;
  padding: 2rem 1rem;
  border-bottom: 2px solid #e0c8c0;
}

h1 {
  font-family: 'Parisienne', cursive;
  font-size: clamp(2rem, 6vw, 3.4rem);
  color: #a66b5b;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

header p {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: #555;
  letter-spacing: 0.3px;
  margin-top: 0.3rem;
}

/* === Highlights Section === */
.highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding: 60px 20px;
  background-color: #faf7f6;
  text-align: center;
  justify-items: center;
  align-items: start;
}

.highlights .service {
  background: #fff;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 300px;
}

.highlights .service:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.highlights h3 {
  font-size: 1.3rem;
  color: #8c5b4a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.highlights p {
  font-size: 0.95rem;
  color: #4a3a32;
  line-height: 1.6;
}

/* Carousel */
.carousel {
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.slides {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.slides img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 16px;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 6px 14px;
  color: #8c5b4a;
  transition: background 0.3s ease, transform 0.2s ease;
  z-index: 10;
}

.carousel button:hover {
  background: rgba(255, 255, 255, 0.95);
}

.prev { left: 14px; }
.next { right: 14px; }

/* Booking Button */
.square-booking-btn {
  display: inline-block;
  background-color: #8c5b4a;
  color: #fff;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.square-booking-btn:hover {
  background-color: #a67460;
}

/* About & Booking Containers */
#about, #booking {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

/* Footer */
footer {
  background-color: #f6e7e1;
  color: #333;
  padding: 2rem 1rem;
  text-align: center;
  font-size: 0.95rem;
  border-top: 2px solid #e0c8c0;
}

footer a {
  color: #8c5b4a;
  text-decoration: none;
  font-weight: 600;
}

footer a:hover {
  text-decoration: underline;
}

.footer-content p {
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* --- Mobile adjustments --- */
@media (max-width: 768px) {
  h1, h2, h3, p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 95%;
    word-wrap: break-word;
    padding: 0 1rem;
  }

  .highlights {
    padding: 40px 10px;
    gap: 16px;
  }

  .carousel {
    max-width: 90%;
    margin: 30px auto;
    border-radius: 12px;
  }

  .carousel button {
    font-size: 1.6rem;
    padding: 4px 10px;
  }
}
