html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "Times New Roman", Times, serif;
}

/* Header */

.site-header {
  background-color: #1a0f08;
  padding: 15px;
  transition: box-shadow 0.3s ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header.scrolled {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand-name {
  color: #e6c97a;
  font-family: "Parisienne", cursive;
  font-size: 19px;
  text-decoration: none;
  padding-left: 15px;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-right: 80px;
  margin: 0;
  padding-left: 0;
}

.nav-list a {
  color: #e6c97a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 100;
}

.top-right-btn {
  font-family: "Parisienne", cursive;
  font-size: 19px;
  color: #e6c97a;
  padding-right: 30px;
  text-decoration: none;
}

/* Drawer overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* Hamburger */

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #e6c97a;
  transition: all 0.3s ease;
}

/* Hero */

.hero-container {
  padding: 80px 80px;
  margin-left: 180px;
}

.hero-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.hero-title {
  font-family: "Parisienne", cursive;
  font-size: 68px;
  line-height: 1.05;
  color: #1a0f08;
  margin: 0;
}

.hero-kicker {
  font-size: 16px;
  font-weight: 600;
  color: #a67c00;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-text {
  font-size: 16px;
  max-width: 450px;
  color: #5c3a2e;
  line-height: 1.5;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.hero-btn {
  padding: 14px 30px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
  font-weight: 500;
}

.booking-btn {
  background: #c9a44c;
  color: #28170b;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.booking-btn:hover {
  background: #a67c00;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-btn {
  background: transparent;
  color: #a67c00;
  border: 1px solid #a67c00;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.services-btn:hover {
  background: #a67c00;
  color: #28170b;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-logo {
  width: 350px;
  max-width: 100%;
  height: auto;
}

/* General Section Spacing */

.about-section,
.services-section,
.contact,
.site-footer {
  padding: 100px 80px;
}

.about-container,
.services-container,
.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* About */

.about-section {
  background: linear-gradient(to bottom, #fff, #f9f1e7);
}

.about-header {
  text-align: center;
  margin-bottom: 50px;
}

.about-title {
  font-family: "Parisienne", cursive;
  font-size: 52px;
  color: #1a0f08;
  margin: 0 0 15px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.about-subtitle {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a67c00;
  margin: 0;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #5c3a2e;
  margin-bottom: 22px;
}

/* Services */

.services-section {
  background: linear-gradient(to bottom, #f9f1e7, #fff);
}

.services-header {
  text-align: center;
  margin-bottom: 30px;
}

.services-title {
  font-family: "Parisienne", cursive;
  font-size: 52px;
  color: #1a0f08;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.services-subtitle {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a67c00;
  margin: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  border: 1px solid rgba(40, 23, 11, 0.4);
  border-radius: 24px;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(40, 23, 11, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(40, 23, 11, 0.12);
}

.service-card h3 {
  font-family: "Parisienne", cursive;
  font-size: 28px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.3);
  color: #28170b;
  margin-top: 0;
  margin-bottom: 0;
}

.service-card p {
  color: #5c3a2e;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 8px;
  margin-top: 5px;
}

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

.service-card li {
  color: #6b4a3a;
  padding: 5px 0;
  font-size: 15px;
}

/* Contact */

.contact {
  background: #28170b;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: "Parisienne", cursive;
  font-size: 43px;
  color: #e6c97a;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f4dfaa;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 auto 35px;
  max-width: 650px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(230, 201, 122, 0.2);
  border-radius: 24px;
  padding: 50px 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  text-align: center;
}

.contact-card h3 {
  font-family: "Parisienne", cursive;
  color: #e6c97a;
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.contact-card p {
  color: #fff8eb;
  font-size: 14px;
  line-height: 1.5;
  margin: 8px 0;
}

.contact-card a {
  color: #fff8eb;
  text-decoration: none;
  font-weight: 600;
}

.contact-card a:hover {
  color: #e6c97a;
}

.contact-cta {
  text-align: center;
}

.last-btn-book {
  display: inline-block;
  background: #e6c97a;
  color: #28170b;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s ease;
}

.last-btn-book:hover {
  background: #a67c00;
  transform: translateY(-3px);
}

/* Footer */

.site-footer {
  background: #1a0f08;
  padding-top: 15px;
  padding-bottom: 15px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.site-footer small,
.site-footer a {
  color: #e6c97a;
  font-size: 12px;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

/* ========== GALLERY ========== */

.gallery {
  padding: 30px 80px;
  background: linear-gradient(to bottom, #fff, #f9f1e7);
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-title {
  font-family: "Parisienne", cursive;
  font-size: 52px;
  color: #1a0f08;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.gallery-subtitle {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a67c00;
  margin: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 20px rgba(40, 23, 11, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

/* ========== RESPONSIVE ========== */

@media (max-width: 990px) {
  /* Hero */
  .hero-container {
    padding: 80px 30px;
    margin-left: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  /* Sections */
  .service-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-section,
  .services-section,
  .contact {
    padding: 70px 30px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .site-footer {
    padding: 15px 20px;
  }
  /* Hamburger visible */
  .hamburger {
    display: flex;
    position: relative;
    z-index: 1001;
  }

  .top-right-btn {
    display: none;
  }

  /* Slide-in drawer from right */
  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 200px;
    background-color: #1a0f08;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 999;
    padding: 80px 30px 30px;

    box-sizing: border-box;
  }

  .site-nav.open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    padding: 0;
    align-items: flex-start;
  }

  .nav-list a {
    font-size: 16px;
  }

  .brand-name {
    padding: 0 0 0 15px;
  }

  /* Gallery */
  .gallery {
    padding: 50px 30px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .hero-title {
    font-size: 48px;
  }

  .about-title,
  .services-title,
  .section-header h2 {
    font-size: 42px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .site-footer {
    padding: 15px 20px;
  }

  .hero-btn {
    width: 70%;
    text-align: center;
  }

  .last-btn-book {
    padding: 10px 20px;
    font-size: 11px;
    width: 30%;
    text-align: center;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-title {
    font-size: 42px;
  }
}
/* ==========================================================
   BOOKING FORM
   ========================================================== */

.booking-section {
  padding: 80px 80px;
  background: linear-gradient(to bottom, #fff, #f9f1e7);
  min-height: 80vh;
}

.booking-container {
  max-width: 620px;
  margin: 0 auto;
}

/* Booking Header */
.booking-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-title {
  font-family: "Parisienne", cursive;
  font-size: 52px;
  color: #1a0f08;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.4);
}

.booking-subtitle {
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a67c00;
  margin: 0;
}

.step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 45px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e8ddd4;
  color: #9b7b6b;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d4c4b8;
  transition: all 0.3s ease;
}

.step-label {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #b09080;
  transition: color 0.3s ease;
}

/* Active step */
.step.active .step-number {
  background: #c9a44c;
  color: #28170b;
  border-color: #c9a44c;
  box-shadow: 0 0 0 4px rgba(201, 164, 76, 0.2);
}

.step.active .step-label {
  color: #a67c00;
  font-weight: 700;
}

/* Completed step */
.step.completed .step-number {
  background: #28170b;
  color: #e6c97a;
  border-color: #28170b;
}

.step.completed .step-label {
  color: #5c3a2e;
}

/* Connecting line between dots */
.step-line {
  flex: 1;
  height: 2px;
  background: #e0d0c4;
  max-width: 60px;
  margin-bottom: 22px;
}

/* --------------------------------------------------------
   FORM CARD
   -------------------------------------------------------- */
.booking-form {
  background: #ffffff;
  border: 1px solid rgba(40, 23, 11, 0.12);
  border-radius: 24px;
  padding: 40px 45px;
  box-shadow: 0 10px 35px rgba(40, 23, 11, 0.08);
}

.step-title {
  font-family: "Parisienne", cursive;
  font-size: 30px;
  color: #1a0f08;
  margin: 0 0 28px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(166, 124, 0, 0.3);
}

/* --------------------------------------------------------
   Step 1
   -------------------------------------------------------- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #5c3a2e;
}

.form-group input,
.form-group select {
  padding: 13px 16px;
  border: 1px solid rgba(40, 23, 11, 0.2);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Times New Roman", Times, serif;
  color: #28170b;
  background: #fdf8f2;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #c9a44c;
  box-shadow: 0 0 0 3px rgba(201, 164, 76, 0.15);
}

.form-group input::placeholder {
  color: #b09080;
}

.form-group select {
  cursor: pointer;
  appearance: none;

  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

.btn-next {
  background: #c9a44c;
  color: #28170b;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-next:hover {
  background: #a67c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-next:disabled {
  background: #e0d0c0;
  color: #b09080;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-back {
  background: transparent;
  color: #a67c00;
  border: 1px solid #a67c00;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-back:hover {
  background: #a67c00;
  color: #28170b;
}

.btn-confirm {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 13px;
  font-family: "Times New Roman", Times, serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-confirm:hover {
  background: #1da851;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.hidden {
  display: none;
}

/* --------------------------------------------------------
   STEP 2 — CALENDAR
   -------------------------------------------------------- */
.calendar {
  border: 1px solid rgba(40, 23, 11, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 16px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #28170b;
  padding: 14px 20px;
}

.calendar-month-label {
  color: #e6c97a;
  font-family: "Parisienne", cursive;
  font-size: 22px;
}

.cal-nav-btn {
  background: transparent;
  border: 1px solid rgba(230, 201, 122, 0.4);
  color: #e6c97a;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-nav-btn:hover {
  background: #e6c97a;
  color: #28170b;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  background: #fdf8f2;
}

.cal-day-name {
  text-align: center;
  padding: 10px 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a67c00;
  background: #fdf8f2;
  border-bottom: 1px solid rgba(40, 23, 11, 0.08);
}

.cal-cell {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  border: 1px solid rgba(40, 23, 11, 0.05);
  transition: all 0.2s ease;
}

.cal-empty {
  background: transparent;
}

.cal-past {
  color: #ccc;
  background: #f5f0eb;
  cursor: not-allowed;
}

.cal-available {
  color: #28170b;
  cursor: pointer;
}

.cal-available:hover {
  background: rgba(201, 164, 76, 0.15);
  color: #a67c00;
  font-weight: 700;
}

.cal-selected {
  background: #c9a44c !important;
  color: #28170b !important;
  font-weight: 700;
  border-radius: 6px;
}

.calendar-legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  padding: 12px;
  background: #fdf8f2;
  border-top: 1px solid rgba(40, 23, 11, 0.08);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5c3a2e;
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot.available {
  background: #c9a44c;
}
.legend-dot.past {
  background: #ccc;
}

.selected-date-label {
  font-size: 14px;
  color: #b09080;
  text-align: center;
  margin: 0 0 20px;
}

.selected-date-label.has-date {
  color: #28170b;
  font-weight: 700;
}

/* --------------------------------------------------------
   STEP 3 — TIME SLOTS
   -------------------------------------------------------- */
.time-intro {
  font-size: 14px;
  color: #5c3a2e;
  margin: 0 0 20px;
}

.time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.time-slot {
  padding: 14px 8px;
  border: 1px solid rgba(40, 23, 11, 0.2);
  border-radius: 12px;
  background: #fdf8f2;
  color: #28170b;
  font-size: 14px;
  font-family: "Times New Roman", Times, serif;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot:hover {
  border-color: #c9a44c;
  background: rgba(201, 164, 76, 0.1);
  color: #a67c00;
}

.time-slot.time-selected {
  background: #c9a44c;
  border-color: #c9a44c;
  color: #28170b;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(201, 164, 76, 0.3);
}

.selected-time-label {
  font-size: 14px;
  color: #b09080;
  text-align: center;
  margin: 0 0 20px;
}

.selected-time-label.has-time {
  color: #28170b;
  font-weight: 700;
}

/* --------------------------------------------------------
   STEP 4 — CONFIRMATION SUMMARY
   -------------------------------------------------------- */
.confirm-intro {
  font-size: 14px;
  color: #5c3a2e;
  margin: 0 0 20px;
}

.booking-summary {
  background: #fdf8f2;
  border: 1px solid rgba(40, 23, 11, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(40, 23, 11, 0.07);
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a67c00;
}

.summary-value {
  font-size: 15px;
  color: #28170b;
  text-align: right;
}

.whatsapp-note {
  font-size: 13px;
  color: #5c3a2e;
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.6;
}

/* --------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 990px) {
  .booking-section {
    padding: 60px 30px;
  }

  .booking-form {
    padding: 30px 25px;
  }

  .step-label {
    display: none;
  }
}

@media (max-width: 580px) {
  .booking-title {
    font-size: 42px;
  }

  .step-line {
    max-width: 30px;
  }

  .time-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-actions {
    flex-direction: column;
  }

  .btn-next,
  .btn-back,
  .btn-confirm {
    width: 100%;
    text-align: center;
  }
}
