/* ===========================
   RED MANGO — STYLES.CSS
   =========================== */

:root {
  --red: #c0392b;
  --red-dark: #96281b;
  --cream: #f0e6d3;
  --dark: #0d0d0d;
  --dark-mid: #1a1a1a;
  --dark-light: #2a2a2a;
  --white: #ffffff;
  --gold: #f0c040;
  --grey: #aaaaaa;
  --nav-height: 100px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ===========================
   NAVBAR
   =========================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: transparent;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-logo img {
  height: 100px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--cream);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-book-btn {
  background: var(--red);
  color: var(--white) !important;
  padding: 10px 22px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  transition: background 0.3s ease !important;
}

.nav-book-btn::after {
  display: none !important;
}

.nav-book-btn:hover {
  background: var(--red-dark) !important;
  color: var(--white) !important;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(13, 13, 13, 0.98);
  padding: 20px 40px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mobile-menu .mobile-book-btn {
  background: var(--red);
  text-align: center;
  padding: 14px;
  margin-top: 8px;
  border: none;
}

/* ===========================
   HERO
   =========================== */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero-video-wrapper iframe ,
.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh; /* 16:9 ratio */
  height: 100vh;
  min-width: 100%;
  min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: none;
}

@media (max-width: 768px) {
  .hero-video-wrapper video {
    width: 100%;
    height: 100%;
    min-width: unset;
    min-height: unset;
    object-fit: cover;
    transform: none;
    top: 0;
    left: 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.7) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  animation: heroFadeIn 1.4s ease forwards;
  margin-top: clamp(120px, 35vh, 300px);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(20px, 3.5vw, 64px);
  font-weight: 300;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.35;
  max-width: 900px;
  margin: 0 auto 70px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.btn-book {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 16px 52px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-book:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* ===========================
   REVIEWS SECTION
   =========================== */

.reviews-section {
  background: var(--dark);
  padding: 60px 0 70px;
  overflow: hidden;
  position: relative;
  z-index: 3;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 48px;
  margin-bottom: 36px;
}

.reviews-header-accent {
  color: var(--red);
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.reviews-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

/* Marquee wrapper with edge fades */
.reviews-marquee-wrapper {
  overflow: hidden;
  position: relative;
}

.reviews-marquee-wrapper::before,
.reviews-marquee-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.reviews-marquee-wrapper::before {
  left: 0;
  background: linear-gradient(to right, var(--dark), transparent);
}

.reviews-marquee-wrapper::after {
  right: 0;
  background: linear-gradient(to left, var(--dark), transparent);
}

.reviews-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 48px;
  animation: reviewsScroll 30s linear infinite;
}

.reviews-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes reviewsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Review Card — Liquid Glass */
.review-card {
  flex-shrink: 0;
  width: 300px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top-color: rgba(255, 255, 255, 0.22); /* top edge catches light */
  border-radius: 16px;
  padding: 20px 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(20px) saturate(160%) brightness(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(160%) brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),   /* top glass highlight */
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),         /* bottom inner shadow */
    0 8px 32px rgba(0, 0, 0, 0.35),             /* outer drop shadow */
    0 2px 8px rgba(0, 0, 0, 0.2);
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
  cursor: default;
}

.review-card:hover {
  border-color: rgba(192, 57, 43, 0.6);
  border-top-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(192, 57, 43, 0.5),
    0 0 20px rgba(192, 57, 43, 0.3),
    0 12px 40px rgba(0, 0, 0, 0.45);
}

.review-card-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* Avatar */
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--dark-light);
  border: 1px solid rgba(255,255,255,0.1);
}

.review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-avatar-icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--grey);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.review-text {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}

/* Name + stars row */
.review-handle {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.3px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ===========================
   ABOUT SECTION
   =========================== */

#about {
  background: var(--dark);
  padding: 100px 40px;
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
}

#about .section-tag {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

#about h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(22px, 3.5vw, 42px);
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 24px;
}

#about p {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.9;
  color: var(--grey);
  max-width: 620px;
}

/* ===========================
   FOOTER
   =========================== */

footer {
  position: relative;
  overflow: hidden;
  padding: 80px 40px 40px;
  text-align: center;
  background: var(--dark-mid);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background: url('assets/footer-bg.jpg') center/cover no-repeat;
  filter: brightness(0.2) blur(2px);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  height: 240px;
  width: auto;
  margin-bottom: 50px;
}

.footer-columns {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.footer-col p,
.footer-col a {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  line-height: 1.8;
  display: block;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.3);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--red);
  background: rgba(192, 57, 43, 0.15);
}

.social-icon svg {
  transform: rotate(-45deg);
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}

.footer-bottom {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

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

@media (max-width: 768px) {
  :root {
    --nav-height: 80px;
  }
    nav {
    padding: 0 18px;
  }

  .nav-logo img {
    height: 70px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #about {
    padding: 70px 24px;
  }

  .footer-columns {
    gap: 40px;
  }

  footer {
    padding: 60px 24px 32px;
  }
  .footer-logo img {
    height: 110px;
  }
}
/* ===== WHATSAPP FLOATING BUTTON ===== */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #ffffff;
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 18px;
    right: 18px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}