/* styles.css (LIGHT THEME / INVERTED) */

*, html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff;      /* inverted */
  color: #000;           /* inverted */
  font-family: Arial, sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100px;
  width: 100%;
  backdrop-filter: blur(5px);

  /* inverted */
  background: rgba(255, 255, 255, 0);
  border: 2px solid transparent;
  border-bottom: 1px solid rgba(0,0,0,0.15);

  border-bottom-left-radius: 25px;
  border-bottom-right-radius: 25px;
  z-index: 10;
}

.headerButtonsLayout {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}

.menuItems {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.logo {
  height: 50px;
  width: 50px;
  margin-left: 15px;
}

.businessName {
  margin-right: auto;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;

  /* inverted */
  color: #ffffff;
}

.hamburger {
  font-size: 35px;
  cursor: pointer;
  display: block;

  /* keep accent */
  color: rgb(248, 225, 95);

  margin-left: auto;
  margin-right: 15px;
}

/* Mobile nav dropdown */
.nav {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 100px;
  left: 0;
  height: auto;
  width: 100%;
  padding: 14px 0;

  /* inverted */
  background-color: rgba(255, 255, 255, 0.95);

  border: 2px solid transparent;
  border-radius: 0 0 15px 15px;
  overflow: hidden;
}

.nav.active {
  display: flex;
}

.nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  align-items: center;
  list-style: none;
  gap: 10px;
  padding: 10px 0;
}

.nav-list li {
  width: 100%;
  display: flex;
  justify-content: center;
}

.nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 85%;
  padding: 12px 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 3px;

  /* inverted */
  color: #000000;

  border-radius: 12px;
  transition: transform 0.2s ease;
}

.nav-list li a:hover {
  transform: scale(1.03);
  color: rgb(248, 225, 95);
}

/* Hero / scroller */
.scrollerLayout {
  height: 100vh;
  width: 100%;
}

.scrollerImageWrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.scrollerImage1 {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay text on hero image (keep dark for readability) */
.heroOverlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  background: rgba(0,0,0,0.55);
  border-radius: 16px;
  padding: 16px;
  max-width: 650px;

  /* ensure readability */
  color: #fff;
}

.heroTitle {
  font-size: 22px;
  letter-spacing: 1px;
}

.heroSubtitle {
  margin-top: 6px;
  font-size: 14px;
  opacity: 0.95;
  line-height: 1.4;
}

.heroCTA {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;

  /* keep accent button */
  color: #ffffff;
  border: 2px solid white;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Main content wrapper */
.mainContent {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px;

  /* inverted */
  background: #fff;
}

/* Card styling used for sections */
.card {
  width: 100%;

  /* inverted */
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);

  border-radius: 18px;
  padding: 18px;
}

/* Section headings */
.sectionTitle {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

/* Services */
.serviceList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.serviceItem {
  padding: 14px;
  border-radius: 14px;

  /* inverted */
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
}

.serviceHeading {
  font-size: 16px;
  margin-bottom: 6px;
}

.serviceText {
  font-size: 14px;
  opacity: 0.92;
  line-height: 1.45;
}

/* Details */
.detailsGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detailBlock {
  padding: 14px;
  border-radius: 14px;

  /* inverted */
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);
}

.detailHeading {
  font-size: 16px;
  margin-bottom: 8px;
}

.detailList {
  padding-left: 18px;
  line-height: 1.55;
  font-size: 14px;
  opacity: 0.92;
}

/* Booking */
.bookingGrid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bookingBlock {
  padding: 14px;
  border-radius: 14px;

  /* inverted */
  background: rgba(0,0,0,0.03);
  border: 1px solid rgba(0,0,0,0.10);

  width: 100%;
}

.bookingTitle {
  font-size: 15px;
  margin-bottom: 6px;
}

.bookingInfo {
  font-size: 15px;
  font-weight: 600;

  /* keep accent */
  color: rgb(187, 168, 58);
}

.bookingNote {
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.9;
  line-height: 1.45;
}

/* Footer */
.footer {
  margin-top: 18px;
  padding: 22px 18px;

  /* inverted */
  background: #f7f7f7;
  border-top: 1px solid rgba(0,0,0,0.12);
}

.footerInner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footerCol {
  padding: 10px 0;
}

.footerTitle {
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 8px;

  /* keep accent */
  color: rgb(187, 168, 58);
}

.footerText {
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.5;

  /* ensure dark text on light footer */
  color: #000;
}

.footerBottom {
  margin-top: 14px;
  padding-top: 14px;

  /* inverted */
  border-top: 1px solid rgba(0,0,0,0.12);

  font-size: 12px;
  opacity: 0.8;
  text-align: center;
}
