/* ==============================
   RESET
============================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==============================
   GLOBAL
============================== */
body {
  font-family: "Quicksand", sans-serif;
  background: #fffaf5;
  color: #333;
}

section {
  padding: 0 20px 40px; /* top: 0, sides: 20px, bottom: 40px */
  text-align: center;
}

.section-title {
  margin-top: 40px;
  margin-bottom: 16px; /* small space below title for content */
  font-size: 2rem;
  color: #ff8000;
  font-weight: 600;
  text-align: center;
}

/* Adjust content inside sections for consistent spacing */
section > *:not(.section-title) {
  margin-top: 0; /* remove extra space above first element after title */
}

a {
  text-decoration: none;
  color: inherit;
}

/* ==============================
   HEADER
============================== */
header {
  width: 100%;
  z-index: 2000;
}

.header-top {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #ff8c42, #ffb347);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 12px 25px;
  gap: 20px;
  z-index: 2000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 10px;
}

.logo-container h1 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
}

/* NAV */
nav {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-left: auto;
}

nav a {
  color: #fff;
  font-weight: 500;
  position: relative;
}

nav a:hover {
  opacity: 0.85;
}

/* ACTIVE NAV LINK */
.nav-link.active {
  font-weight: 700;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background-color: #ffd54f;
  border-radius: 10px;
}

/* BOOK BUTTON */
.book-btn {
  background: #ff6f3c;
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  transition: transform 0.2s ease;
  margin-left: 15px;
}

.book-btn:hover {
  transform: scale(1.05);
}

/* HAMBURGER BUTTON */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* ==============================
   HERO
============================== */
.hero {
  width: 100%;
  height: 320px;
  margin-bottom: 40px;
  overflow: hidden;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 768px) {
  .hero {
    height: 220px;
  }
  .banner-img {
    object-position: center;
  }
}

/* ==============================
   HIGHLIGHTS & LINKS
============================== */
.highlight {
  color: #ff8000;
  font-weight: 600;
}

.book-now-link {
  display: inline-block;
  margin-left: 10px;
  color: white;
  background-color: #ff8000;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: transform 0.2s, background-color 0.2s;
}

.book-now-link:hover {
  background-color: #ff6600;
  transform: scale(1.05);
}

/* ==============================
   GALLERY
============================== */
.gallery {
  text-align: center;
}

.gallery-box {
  width: 480px;
  height: 480px;
  margin: 0 auto 20px; /* added 20px space below the gallery */
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: #fff;
  padding: 0; /* no extra padding inside */
}

.gallery-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s ease;
}

.gallery-item {
  min-width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px; /* keeps the image rounded */
}

/* ==============================
   GALLERY BARS
============================== */
.gallery-bars {
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 10;
}

.gallery-bars .bar {
  width: 35px;
  height: 6px;
  background: #ffd2a6;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

.gallery-bars .bar:hover {
  transform: scale(1.1);
}

.gallery-bars .bar.active {
  background: #ff8000;
}

/* ==============================
   GALLERY MOBILE
============================== */
@media (max-width: 768px) {
  .gallery-box {
    width: 90%;
    height: 90vw;
    max-height: 380px;
    margin-bottom: 20px; /* maintain spacing on mobile */
    padding: 0;
  }
}

/* ==============================
   SERVICES
============================== */
.service-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  position: relative;
}

.service-item:nth-child(even) {
  flex-direction: row-reverse;
}

.service-logo {
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: transform 0.2s ease;
  margin-bottom: 8px;
}

.service-logo:hover {
  transform: scale(1.05);
}

.service-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.price-duration {
  margin-top: 5px;
  font-weight: 600;
  color: #ff6f3c;
}

/* ==============================
   SERVICE DESCRIPTION HIGHLIGHTS
============================== */
.service-desc {
  display: none; /* still toggleable by JS */
  background: #fff2e6;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.95rem;
  text-align: left;
  margin-top: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
}

.service-desc ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 5px;
}

.highlight-key {
  font-weight: 600;
  color: #ff8000;
}

.highlight-optional {
  font-weight: 600;
  color: #ff6f3c;
  margin-top: 8px;
  display: block;
}

/* ==============================
   LOCATION
============================== */
.location iframe {
  width: 100%;
  max-width: 800px;
  height: 450px;
  display: block;
  margin: 0 auto;
  border: 0;
}

/* ==============================
   ABOUT US
============================== */
.about-text ul {
  list-style: none;
  padding-left: 0;
  margin: 15px auto;
  display: inline-block;
  text-align: left;
}

.about-text li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.about-text li::before {
  content: "";
  margin-right: 8px;
}

/* ==============================
   FOOTER
============================== */
footer {
  background-color: #fff7f0;
  text-align: center;
  padding: 20px 10px;
  font-family: "Quicksand", sans-serif;
  color: #333;
}

footer .social-icons {
  margin-bottom: 10px;
}

footer .social-icons a {
  color: #ff8000;
  font-size: 1.4rem;
  margin: 0 10px;
  transition: transform 0.2s;
}

footer .social-icons a:hover {
  transform: scale(1.2);
}

footer .email-footer a {
  color: #ff8000;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

footer .email-footer a i {
  margin-right: 8px;
}

footer .terms {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

footer .terms a {
  color: #ff8000;
  text-decoration: none;
  transition: color 0.2s;
}

footer .terms a:hover {
  color: #ff6600;
  text-decoration: underline;
}

footer .copyright {
  color: #ffc107;
  font-weight: 600;
  margin-top: 10px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 768px) {
  .service-item {
    flex-direction: column !important;
    align-items: center;
    text-align: center;
  }

  .service-desc {
    position: static;
    width: 100%; /* full width for mobile */
    margin: 10px 0 0 0; /* top spacing only */
    padding: 12px;
    text-align: left;
  }

  .service-text {
    width: 100%; /* full width container */
    text-align: center; /* keep logo centered */
  }

  .header-top {
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 10px 20px;
    position: relative; /* added for nav absolute positioning */
  }

  .logo-container {
    flex: 1;
    display: flex;
    align-items: center;
  }

  .logo-container h1 {
    font-size: 1.2rem;
  }

  .book-btn {
    order: 1;
    flex: 0 0 auto;
    margin-left: 10px;
    padding: 8px 16px;
    font-size: 0.95rem;
  }

  .hamburger {
    order: 2;
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    position: absolute; /* absolute relative to header-top */
    top: 100%; /* directly below hamburger/header */
    right: 20px;
    background: linear-gradient(90deg, #ff8c42, #ffb347);
    border-radius: 8px;
    padding: 10px 0;
    width: 200px;
    z-index: 2500;
  }

  nav.show {
    display: flex;
  }
}

@media (max-width: 480px) {
  .service-logo {
    width: 80px;
  }
}

/* ==============================
   FIXED HEADER ALWAYS VISIBLE
============================== */
.header-top {
  position: fixed; /* always visible */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2000;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08); /* keep your shadow */
}

.hero {
  margin: 0; /* no extra space */
  height: 320px; /* keep your existing height */
}

body {
  padding-top: 72px; /* match the height of header-top */
}

@media (max-width: 768px) {
  body {
    padding-top: 60px; /* slightly smaller header on mobile */
  }

  .hero {
    height: 220px; /* existing mobile hero height */
  }
}
