@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

:root {
  --cream: #F9F7F4;
  --charcoal: #1C1B18;
  --earth: #8B7355;
  --gold: #C4A87A;
  --gold-light: #d4bc94;
  --dark-bg: #1C1B18;
  --dark-bg-light: #2a2925;
  --whatsapp: #25D366;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* NAV */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.2rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(249,247,244,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 0.8rem 3rem;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--charcoal);
  text-decoration: none;
}
.navbar.scrolled .nav-logo { color: var(--charcoal); }
.hero-visible .nav-logo { color: #fff; }
.nav-right { display: flex; align-items: center; gap: 2rem; }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--charcoal);
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 500; transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.hero-visible .nav-links a { color: rgba(255,255,255,0.85); }
.hero-visible .nav-links a:hover { color: var(--gold-light); }
.lang-btn {
  background: none; border: 1px solid var(--earth);
  color: var(--charcoal); font-family: var(--sans);
  font-size: 0.75rem; letter-spacing: 0.12em;
  padding: 0.4rem 0.9rem; cursor: pointer;
  transition: all 0.3s; text-transform: uppercase;
}
.lang-btn:hover { background: var(--earth); color: #fff; }
.hero-visible .lang-btn { border-color: rgba(255,255,255,0.5); color: #fff; }
.hero-visible .lang-btn:hover { background: rgba(255,255,255,0.2); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 1001; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); transition: all 0.3s; }
.hero-visible .hamburger span { background: #fff; }

/* REVEAL ANIMATION */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* HERO */
.hero {
  height: 100vh; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center;
  background: url('bg1.jpg') center/cover no-repeat;
  background-color: #3a3530;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.2);
  z-index: 1;
  pointer-events: none;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; }
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(3rem, 7vw, 6rem);
  color: #fff; letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.9), 0 2px 10px rgba(0,0,0,0.5);
}
.hero-line {
  width: 60px; height: 1px; background: var(--gold);
  margin: 1.2rem auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.hero-tagline {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #fff; font-weight: 300;
  letter-spacing: 0.08em; margin-bottom: 2.5rem;
  text-shadow: 0 3px 20px rgba(0,0,0,0.9), 0 1px 5px rgba(0,0,0,0.7);
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--whatsapp); color: #fff;
  text-decoration: none; padding: 0.9rem 2rem;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  border-radius: 2px; transition: all 0.3s;
}
.hero-cta:hover { background: #20b858; transform: translateY(-2px); }
.hero-cta svg { width: 18px; height: 18px; }
.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5); font-size: 0.7rem;
  letter-spacing: 0.15em; text-transform: uppercase;
  animation: pulse 2s infinite;
  z-index: 2;
}
@keyframes pulse { 0%,100% { opacity: 0.5; } 50% { opacity: 1; } }

/* SECTION COMMON */
.section-pad { padding: 7rem 5vw; }
.section-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.08em; margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--earth);
  margin-bottom: 1.5rem; font-weight: 500;
}
.gold-line { width: 40px; height: 1px; background: var(--gold); margin-bottom: 2rem; }

/* ABOUT */
.about { max-width: 1200px; margin: 0 auto; }
.about-grid {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-img {
  width: 100%; aspect-ratio: 3/4;
  background-color: #d5cfc7;
  background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.about-text p { margin-bottom: 1.2rem; font-size: 0.95rem; line-height: 1.8; color: #555; }
.room-count-box {
  display: inline-block; border: 1px solid var(--gold);
  padding: 0.6rem 1.5rem; margin-top: 1rem;
  font-family: var(--serif); font-size: 1.1rem;
  color: var(--earth); letter-spacing: 0.1em;
}
.about-location {
  margin-top: 1.5rem; font-size: 0.8rem;
  letter-spacing: 0.1em; color: var(--earth);
  text-transform: uppercase;
}

/* ROOMS */
.rooms-section { background: #fff; }
.rooms-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1300px; margin: 0 auto;
}
.room-card {
  cursor: pointer; transition: transform 0.4s;
  position: relative; overflow: hidden;
}
.room-card:hover { transform: translateY(-6px); }
.room-img {
  width: 100%; aspect-ratio: 3/4;
  background-color: #d5cfc7;
  background-size: cover; background-position: center;
  position: relative;
}
.room-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(transparent 40%, rgba(0,0,0,0.55));
  pointer-events: none;
}
.room-number-overlay {
  position: absolute;
  bottom: 1rem; left: 1.2rem;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  z-index: 2;
}
.room-info { padding: 1.2rem 0.3rem; }
.room-number {
  font-family: var(--serif); font-size: 0.85rem;
  color: var(--gold); letter-spacing: 0.15em; margin-bottom: 0.3rem;
}
.room-type {
  font-family: var(--serif); font-size: 1.15rem;
  font-weight: 400; letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.room-features {
  font-size: 0.78rem; color: #888;
  letter-spacing: 0.04em; line-height: 1.5;
}

/* ROOM MODAL */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(28,27,24,0.85);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-content {
  background: var(--cream); max-width: 700px; width: 90%;
  max-height: 85vh; overflow-y: auto;
  padding: 3.5rem 3rem 3rem 3rem; position: relative;
  transform: translateY(30px); transition: transform 0.4s ease;
}
.modal-overlay.active .modal-content { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: #fff; border: none; font-size: 1.4rem;
  cursor: pointer; color: var(--charcoal);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 100;
  transition: background 0.3s;
}
.modal-close:hover {
  background: #f5f0e1;
}
.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  margin-bottom: 1.5rem;
  overflow: hidden;
  background-color: #d5cfc7;
}
.slider-img {
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  background-color: #d5cfc7;
  transition: opacity 0.3s ease;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  color: #fff;
  border: none;
  padding: 1rem 0.7rem;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.3s;
  z-index: 5;
  line-height: 1;
}
.slider-btn:hover { background: rgba(0,0,0,0.7); }
.slider-prev { left: 0; border-radius: 0 3px 3px 0; }
.slider-next { right: 0; border-radius: 3px 0 0 3px; }
.slider-counter {
  position: absolute;
  bottom: 0.8rem; right: 0.8rem;
  background: rgba(0,0,0,0.5);
  color: #fff;
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
}
.modal-room-number {
  font-family: var(--serif); color: var(--gold);
  font-size: 0.85rem; letter-spacing: 0.15em; margin-bottom: 0.3rem;
}
.modal-room-type {
  font-family: var(--serif); font-size: 1.8rem;
  font-weight: 300; margin-bottom: 1rem;
}
.modal-desc { font-size: 0.92rem; line-height: 1.8; color: #666; margin-bottom: 1.5rem; }
.modal-features-title {
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--earth); margin-bottom: 0.8rem;
}
.modal-features-list {
  list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.modal-features-list li {
  padding: 0.4rem 1rem; border: 1px solid #ddd;
  font-size: 0.78rem; letter-spacing: 0.05em; color: #666;
}
.modal-wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--whatsapp); color: #fff;
  text-decoration: none; padding: 0.85rem 1.8rem;
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.06em; border-radius: 2px;
  transition: background 0.3s;
}
.modal-wa-btn:hover { background: #20b858; }
.modal-wa-btn svg { width: 18px; height: 18px; }

/* RESTAURANT */
.restaurant {
  background: var(--dark-bg); color: #fff;
}
.rest-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center;
}
.restaurant .section-title { color: #fff; }
.restaurant .section-sub { color: var(--gold); }
.rest-desc { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }
.rest-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.rest-tag {
  padding: 0.4rem 1rem; border: 1px solid rgba(196,168,122,0.4);
  font-size: 0.75rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
}
.rest-img {
  width: 100%; aspect-ratio: 4/5;
  background-color: #3a3530;
  background-size: cover; background-position: center;
  position: relative;
}
.rest-wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; border: 1px solid var(--gold);
  color: var(--gold); text-decoration: none;
  padding: 0.8rem 1.8rem; font-size: 0.82rem;
  letter-spacing: 0.08em; transition: all 0.3s;
}
.rest-wa-btn:hover { background: var(--gold); color: var(--dark-bg); }
.rest-wa-btn svg { width: 16px; height: 16px; }

/* GALLERY */
.gallery-grid {
  max-width: 1300px; margin: 0 auto;
  column-count: 3;
  column-gap: 1rem;
}
.gallery-item {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
  background-color: #d5cfc7;
  transition: transform 0.4s;
  border-radius: 2px;
}
.gallery-item:hover { transform: scale(1.02); }

/* CTA / RESERVATION */
.cta-section {
  background: linear-gradient(135deg, var(--earth), #6b5940);
  text-align: center; padding: 6rem 5vw;
}
.cta-section .section-title { color: #fff; margin-bottom: 1rem; }
.cta-desc { color: rgba(255,255,255,0.8); font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-wa-btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--whatsapp); color: #fff;
  text-decoration: none; padding: 1.1rem 2.8rem;
  font-size: 1rem; font-weight: 600;
  letter-spacing: 0.06em; border-radius: 3px;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.cta-wa-btn:hover { background: #20b858; transform: translateY(-3px); box-shadow: 0 6px 25px rgba(37,211,102,0.4); }
.cta-wa-btn svg { width: 22px; height: 22px; }

/* MAP */
.map-section { padding: 0; }
.map-section iframe { width: 100%; height: 400px; border: 0; display: block; filter: grayscale(30%) contrast(1.05); }

/* FOOTER */
.footer {
  background: var(--dark-bg); color: rgba(255,255,255,0.6);
  padding: 4rem 5vw 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; max-width: 1200px; margin: 0 auto;
  padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-badge {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 1.5rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.5s;
  border: 2px solid rgba(196, 168, 122, 0.2);
}
.footer-badge:hover {
  transform: scale(1.05) rotate(3deg);
  border-color: rgba(196, 168, 122, 0.8);
}
.footer-addr { font-size: 0.85rem; line-height: 1.8; }
.footer-nav-title {
  font-size: 0.72rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.footer-nav-list { list-style: none; }
.footer-nav-list li { margin-bottom: 0.6rem; }
.footer-nav-list a {
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: 0.85rem; transition: color 0.3s;
}
.footer-nav-list a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: all 0.3s;
  text-decoration: none;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  text-align: center; padding-top: 2rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  max-width: 1200px; margin: 0 auto;
}

/* MOBILE NAV */
.mobile-menu {
  position: fixed; inset: 0; background: rgba(249,247,244,0.98);
  z-index: 999; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.mobile-menu.active { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.8rem;
  text-decoration: none; color: var(--charcoal);
  letter-spacing: 0.1em; transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* LIGHTBOX IMG TRIGGER */
.lightbox-img { cursor: zoom-in; }
.slider-img { cursor: zoom-in; }

/* LIGHTBOX OVERLAY */
.lightbox-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox-overlay.active { opacity: 1; pointer-events: all; }
.lightbox-image {
  max-width: 92vw; max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  user-select: none;
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; z-index: 10001;
  line-height: 1; opacity: 0.7;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-nav {
  position: absolute; top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none; color: #fff;
  padding: 1.2rem 1rem; font-size: 1.5rem;
  cursor: pointer; z-index: 10001;
  transition: background 0.3s;
  line-height: 1; border-radius: 3px;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute; bottom: 1.5rem;
  left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem; letter-spacing: 0.1em;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .rest-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar { padding: 1rem 1.5rem; }
  .navbar.scrolled { padding: 0.7rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section-pad { padding: 4rem 5vw; }
  .rooms-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .gallery-grid { column-count: 2; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .modal-content { padding: 2.8rem 1.5rem 1.5rem 1.5rem; }
}
@media (max-width: 480px) {
  .rooms-grid { grid-template-columns: 1fr; }
  .gallery-grid { column-count: 1; }
  .hero h1 { letter-spacing: 0.1em; }
}
