/* ============================================
   TAPOVAN RESORT — GLOBAL STYLES
   Edit colors in :root to retheme the site
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ── ANDROID CHROME FIX ── */
html {
  -webkit-text-size-adjust: 100%;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8D5A3;
  --gold-dark: #8B6914;
  --dark: #1A1612;
  --dark-2: #2C2520;
  --dark-3: #3D3530;
  --cream: #F7F3EC;
  --cream-2: #EDE6D8;
  --white: #FFFFFF;
  --text-dark: #1A1612;
  --text-mid: #5C4F3D;
  --text-light: #9A8C7A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow: 0 20px 60px rgba(26, 22, 18, 0.15);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

.section-tag {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold-dark);
}

.section-desc {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--dark);
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

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

/* ── GOLD DIVIDER ── */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.gold-line.center { margin: 1.5rem auto; }

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.5rem;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
#preloader .pre-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
#preloader .pre-line {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: preload 1.5s ease forwards;
}
@keyframes preload { to { width: 200px; } }

/* ── NAVIGATION ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.5rem 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  height: 90px;
}
#navbar.scrolled {
  height: 90px;
  background: rgba(26, 22, 18, 0.97);
  backdrop-filter: blur(20px);
  padding: 0 4%;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-book { 
  background: var(--gold); 
  color: var(--dark) !important; 
  padding: 0.6rem 1.5rem;
  font-weight: 600 !important;
}
.nav-book:hover { background: var(--gold-dark); color: var(--white) !important; }
.nav-book::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 25px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  /* EDIT: Replace with your hero image URL */
  background: linear-gradient(135deg, #2C2520 0%, #1A1612 50%, #3D2E1A 100%);
  background-size: cover;
  background-position: center;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.7;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(26,22,18,0.85) 0%,
    rgba(26,22,18,0.5) 50%,
    rgba(26,22,18,0.2) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 750px;
  animation: heroFadeIn 1.2s ease 0.5s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-tag::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-desc {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 3rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s ease infinite;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── BOOKING BAR ── */
.booking-bar {
  background: var(--dark);
  padding: 2rem 8%;
  display: flex;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 2px solid var(--gold);
}
.booking-field {
  flex: 1;
  min-width: 180px;
}
.booking-field label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.booking-field input,
.booking-field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 0.5rem 0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  cursor: pointer;
}
.booking-field input:focus,
.booking-field select:focus { border-bottom-color: var(--gold); }
.booking-field select option { background: var(--dark-2); color: var(--white); }
.booking-field input[type="date"]::-webkit-calendar-picker-indicator { filter: invert(1) opacity(0.5); }

/* ── ABOUT SECTION ── */
.about {
  padding: 8rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-images {
  position: relative;
  height: 550px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-img-secondary {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%; height: 55%;
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 6px solid var(--cream);
}
.about-badge {
  position: absolute;
  top: 50%; left: 60%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  text-align: center;
}
.about-badge .num {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
}
.about-content { padding-right: 2rem; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.9rem;
  color: var(--text-mid);
}
.about-feature::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
  flex-shrink: 0;
}

/* ── HIGHLIGHTS (Offers) ── */
.highlights {
  background: var(--dark);
  padding: 6rem 8%;
  text-align: center;
}
.highlights .section-title { color: var(--white); }
.highlights .section-desc { color: rgba(255,255,255,0.6); margin: 0 auto 4rem; }
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.highlight-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.highlight-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.highlight-card:hover img { transform: scale(1.08); }
.highlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,22,18,0.9) 0%, rgba(26,22,18,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.5rem;
  transition: var(--transition);
}
.highlight-card:hover .highlight-overlay { background: linear-gradient(to top, rgba(26,22,18,0.95) 0%, rgba(26,22,18,0.4) 60%); }
.highlight-overlay h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.highlight-overlay p {
  color: rgba(255,255,255,0);
  font-size: 0.85rem;
  transition: var(--transition);
  transform: translateY(10px);
}
.highlight-card:hover .highlight-overlay p {
  color: rgba(255,255,255,0.8);
  transform: translateY(0);
}
.highlight-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1rem;
}

/* ── ROOMS ── */
.rooms {
  padding: 8rem 8%;
}
.rooms-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 4rem;
  flex-wrap: wrap;
  gap: 2rem;
}
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.room-card {
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(26,22,18,0.08);
  transition: var(--transition);
}
.room-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.room-img {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.room-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.room-card:hover .room-img img { transform: scale(1.06); }
.room-tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
}
.room-info { padding: 1.8rem; }
.room-info h3 { margin-bottom: 0.5rem; color: var(--dark); }
.room-amenities {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.room-amenity {
  font-size: 0.75rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.room-amenity::before { content: '◆'; font-size: 0.4rem; color: var(--gold); }
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--cream-2);
}
.room-price { font-family: var(--font-display); font-size: 1.6rem; color: var(--dark); }
.room-price span { font-size: 0.75rem; font-family: var(--font-body); color: var(--text-light); }

/* ── AMENITIES ── */
.amenities {
  background: var(--cream-2);
  padding: 8rem 8%;
  text-align: center;
}
.amenities-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 4rem;
}
.amenity-item {
  width: 260px;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  transition: var(--transition);
  cursor: default;
}
.amenity-item:hover {
  background: var(--dark);
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}
.amenity-item:hover .amenity-name { color: var(--gold); }
.amenity-item:hover .amenity-desc { color: rgba(255,255,255,0.6); }
.amenity-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.amenity-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
  transition: var(--transition);
}
.amenity-desc {
  font-size: 0.8rem;
  color: var(--text-light);
  transition: var(--transition);
}

/* ── GALLERY ── */
.gallery { padding: 8rem 8%; }
.gallery-header { text-align: center; margin-bottom: 4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 8; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 4; }
.gallery-item:nth-child(3) { grid-column: span 4; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 200px;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,22,18,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay { background: rgba(26,22,18,0.4); }
.gallery-item-overlay span {
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay span { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

/* ── LOCATION ── */
.location {
  background: var(--dark);
  padding: 8rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.location-content .section-title { color: var(--white); }
.location-content .section-desc { color: rgba(255,255,255,0.6); }
.location-details { margin-top: 2.5rem; }
.location-detail {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.location-detail:last-child { border-bottom: none; }
.location-detail-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1rem;
}
.location-detail-text h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.location-detail-text p { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.map-container {
  height: 450px;
  border: 2px solid rgba(201,168,76,0.3);
}
.map-container iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(30%) sepia(20%);
}

/* ── PLACES TO VISIT ── */
.places { padding: 8rem 8%; }
.places-header { text-align: center; margin-bottom: 4rem; }
.places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.place-card {
  position: relative;
  height: 380px;
  overflow: hidden;
  cursor: pointer;
}
.place-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.place-card:hover img { transform: scale(1.1); }
.place-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(26,22,18,0.95) 0%, transparent 100%);
  transform: translateY(60px);
  transition: var(--transition);
}
.place-card:hover .place-card-content { transform: translateY(0); }
.place-card-content h3 { color: var(--white); margin-bottom: 0.5rem; }
.place-card-content p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.place-distance {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  letter-spacing: 0.1em;
}

/* ── CONTACT ── */
.contact { padding: 8rem 8%; background: var(--cream-2); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 6rem;
}
.contact-info { }
.contact-info h2 { margin-bottom: 1rem; }
.contact-ways { margin-top: 3rem; }
.contact-way {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-way-icon {
  width: 45px; height: 45px;
  background: var(--dark);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-way-text h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.3rem;
}
.contact-way-text p, .contact-way-text a {
  color: var(--dark);
  font-size: 1rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.contact-way-text a:hover { color: var(--gold-dark); }

/* Contact Form */
.contact-form { }
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--dark);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.6rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-bottom: 2px solid transparent;
  color: var(--dark);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  resize: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--gold);
  box-shadow: 0 4px 15px rgba(201,168,76,0.1);
}
.form-group textarea { height: 130px; }
.form-success {
  display: none;
  background: var(--dark);
  color: var(--gold);
  padding: 1.2rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  color: white;
  font-size: 1.6rem;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 35px rgba(37,211,102,0.5); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 8% 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .nav-logo { margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-col ul li {
  margin-bottom: 0.7rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 5px; }
.footer-subscribe { }
.footer-subscribe p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.subscribe-form { display: flex; }
.subscribe-form input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.3); }
.subscribe-form button {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 0.8rem 1.2rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
}
.subscribe-form button:hover { background: var(--gold-dark); color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── SECTION REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 45vh;
  min-height: 350px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark-2);
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }
.page-hero-overlay { position: absolute; inset: 0; background: rgba(26,22,18,0.6); }
.page-hero-content { position: relative; z-index: 2; color: var(--white); }
.page-hero-content h1 { color: var(--white); margin-bottom: 0.5rem; }
.breadcrumb {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── MOBILE ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--white);
  letter-spacing: 0.05em;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute;
  top: 2rem; right: 2rem;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  width: 45px; height: 45px;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.mobile-menu-close:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 1024px) {
  .about { grid-template-columns: 1fr; }
  .about-images { height: 400px; order: -1; }
  .location { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .booking-bar { flex-direction: column; }
  .booking-field { min-width: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .about { padding: 5rem 5%; }
  .rooms { padding: 5rem 5%; }
  .rooms-header { flex-direction: column; align-items: flex-start; }
  .places { padding: 5rem 5%; }
  .contact { padding: 5rem 5%; }
  .location { padding: 5rem 5%; }
  .highlights { padding: 5rem 5%; }
  .amenities { padding: 5rem 5%; }
  .gallery { padding: 5rem 5%; }
  footer { padding: 4rem 5% 2rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .about-images { height: 300px; }
  .about-badge { display: none; }
}
