/* Base reset / layout */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #f5f5f5;
  color: #111111;
  line-height: 1.6;
}

/* Utility container */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Scroll progress bar */
.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, #ffffff, #999999);
  z-index: 2000;
  transform-origin: left center;
  transition: width 0.1s linear;
}

/* Remove underline from all email links */
a[href^="mailto:"] {
  text-decoration: none !important;
}

a[href^="mailto:"]:hover,
a[href^="mailto:"]:focus-visible {
  text-decoration: none !important;
}

a[href^="tel:"] {
  text-decoration: none !important;
}

a[href^="tel:"]:hover,
a[href^="tel:"]:focus-visible {
  text-decoration: none !important;
}


/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #000000;
  color: #ffffff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  opacity: 0.8;
  transition: opacity 0.15s ease-out;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  transition: width 0.18s ease-out;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 100%;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  opacity: 1;
}

.main-nav a.active {
  opacity: 1;
}

.main-nav a.active::after {
  width: 100%;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background-color: #ffffff;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  color: #ffffff;
  padding: 4rem 0 4.5rem;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2.75rem;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 6vw, 3rem);
  margin: 0 0 1rem;
}

.hero-text p {
  max-width: 32rem;
  margin: 0 0 1.75rem;
  color: #e4e4e4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.25rem;
}


/* Floating dots in hero */
.hero-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6); /* was ~0.28 */
  filter: blur(0.15px);                 /* was 0.3px (optional) */
  opacity: 1;                           /* was 0.7 */
  animation: float-dot var(--duration, 18s) linear infinite;
}


@keyframes float-dot {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(var(--dx, 40px), var(--dy, -60px), 0);
    opacity: 0;
  }
}

/* Buttons */
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease-out, color 0.15s ease-out,
    border-color 0.15s ease-out, transform 0.1s ease-out,
    box-shadow 0.1s ease-out;
}

.btn-primary {
  background-color: #ffffff;
  color: #000000;
  font-weight: 600;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #e5e5e5;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.btn-ghost {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background-color: #ffffff;
  color: #000000;
}

.btn-full-width {
  width: 100%;
}

/* Button ripple effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  transform: scale(0);
  animation: ripple-animate 0.5s ease-out;
  background-color: rgba(255, 255, 255, 0.35);
  mix-blend-mode: screen;
}

.btn.btn-primary .ripple {
  background-color: rgba(0, 0, 0, 0.25);
}

@keyframes ripple-animate {
  to {
    transform: scale(8);
    opacity: 0;
  }
}

/* Hero contact inline */
.hero-contact-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: #cfcfcf;
}

.hero-contact-inline a {
  color: #ffffff;
  text-decoration: underline;
}

/* Hero card */
.hero-card {
  background-color: #111111;
  border-radius: 1.25rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid #222222;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.hero-card.parallax-active {
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.85);
}

.hero-card h2 {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
}

.hero-card ul {
  margin: 0.5rem 0 1rem;
  padding-left: 1.1rem;
  font-size: 0.95rem;
  color: #dcdcdc;
}

.hero-note {
  font-size: 0.9rem;
  color: #b3b3b3;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-light {
  background-color: #f5f5f5;
}

.section-dark {
  background-color: #111111;
  color: #ffffff;
}

/* Section headers */
.section-header {
  text-align: left;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-size: 1.8rem;
  margin: 0 0 0.5rem;
}

.section-header p {
  margin: 0;
  color: #555555;
}

.section-header-light p {
  color: #d4d4d4;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.reveal.in-view.reveal-stagger > * {
  opacity: 1;
  transform: translateY(0);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}

.service-card {
  background-color: #ffffff;
  border-radius: 1.25rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border: 1px solid #e3e3e3;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.04);
  transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

/* Book Now */
.book-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.book-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.book-option h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.book-option p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: #dcdcdc;
}

.contact-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 500;
}

.book-note {
  margin: 0;
  font-size: 0.9rem;
  color: #cccccc;
}

/* Book form card */
.book-form-card {
  background-color: #181818;
  border-radius: 1.25rem;
  padding: 1.75rem 1.75rem 1.5rem;
  border: 1px solid #262626;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.book-form-card h3 {
  margin: 0 0 0.5rem;
}

.book-form-intro {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: #d4d4d4;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.85rem;
}

.form-row label {
  font-size: 0.85rem;
  margin-bottom: 0.25rem;
  color: #e8e8e8;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 0.7rem;
  border: 1px solid #333333;
  padding: 0.55rem 0.7rem;
  font-size: 0.92rem;
  background-color: #101010;
  color: #ffffff;
  outline: none;
  transition: border-color 0.12s ease-out, box-shadow 0.12s ease-out;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #ffffff;
  box-shadow: 0 0 0 1px #ffffff;
}

.form-row textarea {
  resize: vertical;
}

/* Form message */
.form-message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.form-message--success {
  color: #b4ffb4;
}

.form-message--error {
  color: #ffb4b4;
}

/* Form shake on error */
#booking-form.shake {
  animation: form-shake 0.3s ease-out;
}

@keyframes form-shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-3px);
  }
  100% {
    transform: translateX(0);
  }
}

/* Footer */
.site-footer {
  background-color: #000000;
  color: #ffffff;
  padding-top: 1.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #222222;
}

.footer-brand {
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-tagline {
  display: block;
  font-size: 0.85rem;
  color: #bbbbbb;
}

.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.footer-right a {
  color: #ffffff;
  text-decoration: none;
}

.footer-right a:hover,
.footer-right a:focus-visible {
  text-decoration: underline;
}

.footer-bottom {
  padding: 0.75rem 0 1.25rem;
  font-size: 0.8rem;
  color: #aaaaaa;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 6rem;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid #ffffff;
  background-color: rgba(0, 0, 0, 0.72);
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  z-index: 1500;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-2px);
}

/* Extra breathing room for logo/nav on tablet widths */
@media (max-width: 1100px) and (min-width: 721px) {
  .site-header .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-card {
    margin-top: 1.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .book-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .book-form-card {
    margin-top: 1.5rem;
  }

  .book-options {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding: 0.7rem 0;
  }

  /* Extra horizontal padding in the header on mobile */
  .site-header .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .brand-text {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background-color: #000000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .main-nav.open {
    max-height: 180px;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.75rem 1.5rem 1rem;
    gap: 0.9rem;
  }

  .hero {
    padding: 3rem 0 3.25rem;
  }

  .section {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-right {
    gap: 0.75rem;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  inset: auto 0 0 0; /* bottom:0; left:0; right:0; */
  z-index: 9999;
  background: #111;
  color: #f5f5f5;
  border-top: 1px solid #2a2a2a;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  font-size: 0.9rem;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  margin: 0;
  line-height: 1.4;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
  align-items: center;
}

.cookie-banner__btn {
  padding: 0.4rem 0.9rem;
  font-size: 0.85rem;
}

.cookie-banner__link {
  font-size: 0.8rem;
  text-decoration: underline;
  color: #e5e5e5;
}

.cookie-banner__link:hover {
  color: #ffffff;
}

/* Stack on small screens */
@media (max-width: 640px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .cookie-banner__btn {
    width: auto;
  }
}

/* ===========================
   Privacy page layout & styling
   =========================== */

.page-privacy {
  background: #050505;
  color: #f5f5f5;
}

.page-privacy .legal-card a,
.page-privacy .section a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  opacity: 0.95;
}

/* Header layout on privacy page */
.page-privacy .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #000;
  border-bottom: 1px solid #202020;
}

.page-privacy .header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page-privacy .logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.page-privacy .logo img {
  height: 32px;
  width: auto;
  display: block;
}

.page-privacy .logo-text {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #f5f5f5;
}

/* Nav on privacy page */
.page-privacy .main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.page-privacy .main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: #dcdcdc;
  position: relative;
}

.page-privacy .main-nav a:hover {
  color: #ffffff;
}

/* Mobile nav toggle – hide if your main styles don’t already handle it */
@media (max-width: 768px) {
  .page-privacy .main-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: #000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .page-privacy .main-nav.open {
    max-height: 180px;
  }
}

/* Main content layout */
.page-privacy .page-main {
  padding: 4.5rem 1.5rem 4rem;
}

.page-privacy .section {
  max-width: 1100px;
  margin: 0 auto;
}

.page-privacy .section--narrow {
  max-width: 900px;
}

.page-privacy .section-header {
  max-width: 900px;
  margin: 0 auto 1.75rem;
}

.page-privacy .section-title {
  font-size: 2rem;
  margin: 0.3rem 0;
}

.page-privacy .section-subtitle {
  margin: 0;
  color: #c3c3c3;
  font-size: 0.95rem;
}

/* Card that holds the policy text */
.page-privacy .legal-card {
  background: #111111;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  border: 1px solid #252525;
}

.page-privacy .legal-card h2 {
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.page-privacy .legal-card h3 {
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.page-privacy .legal-card p {
  margin: 0.35rem 0 0.6rem;
  line-height: 1.55;
}

.page-privacy .legal-card ul {
  margin: 0.1rem 0 0.9rem 1.2rem;
  padding: 0;
}

.page-privacy .legal-card li {
  margin: 0.15rem 0;
}

.page-privacy .legal-meta {
  font-size: 0.8rem;
  color: #a3a3a3;
  margin-bottom: 0.75rem;
}



/* Make sure privacy page is comfy on mobile */
@media (max-width: 640px) {
  .page-privacy .page-main {
    padding: 4rem 1rem 3rem;
  }

  .page-privacy .legal-card {
    padding: 1.4rem 1.1rem;
    border-radius: 0.9rem;
  }

  .page-privacy .section-title {
    font-size: 1.6rem;
  }
}


/* ===========================
   WhatsApp floating button
   =========================== */

.whatsapp-float {
  position: fixed;
  right: 1.5rem;
  bottom: 1rem; /* sit above the back-to-top button */
  z-index: 1200;  /* above other UI elements */
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25d366;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.7);
  background: #20c15a;
}

.whatsapp-icon svg {
  width: 26px;
  height: 26px;
  fill: #ffffff;
}

@media (max-width: 720px) {
  .whatsapp-float {
    bottom: 1rem !important; /* force it lower */
    right: 1rem;
  }
}

/* Fix back-to-top & WhatsApp overlap on mobile */
@media (max-width: 720px) {
  .back-to-top {
    bottom: 6rem; /* move it ABOVE WhatsApp button */
  }
}