/* ============================================
   VROOM510 – Stylesheet
   ============================================ */

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

:root {
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --dark:        #1a1a1a;
  --dark2:       #2d2d2d;
  --text:        #3a3a3a;
  --muted:       #888;
  --bg:          #fafafa;
  --white:       #ffffff;
  --cream:       #f5f3ef;
  --cream2:      #f4f0e8;
  --radius:      12px;
  --shadow:      0 4px 30px rgba(0,0,0,0.07);
  --shadow-hover:0 12px 40px rgba(0,0,0,0.12);
}

html  { scroll-behavior: smooth; }
body  { font-family: 'Inter', sans-serif; color: var(--text); background: var(--bg); }
img   { max-width: 100%; display: block; }

/* ── CONTAINER ── */
.container { max-width: 1100px; margin: 0 auto; }

/* ── SECTION DEFAULTS ── */
.section { padding: 90px 5%; }

.section-tag {
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark); line-height: 1.2; margin-bottom: 1.2rem;
}
.section-subtitle { color: var(--muted); line-height: 1.8; max-width: 560px; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(26,26,26,0.92); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 64px; transition: background .3s;
}
nav.scrolled { background: rgba(26,26,26,0.98); }

.nav-logo {
  font-family: 'Playfair Display', serif; color: var(--gold);
  font-size: 1.4rem; letter-spacing: 2px; white-space: nowrap;
}
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: #ccc; text-decoration: none; font-size: 0.85rem;
  font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold); color: var(--dark); padding: 8px 20px;
  border-radius: 30px; font-weight: 600; font-size: 0.8rem;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--gold-light); }

/* Hamburger */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none;
  border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center;
  padding: 80px 5% 60px; position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }

.hero-badge {
  display: inline-block; border: 1px solid var(--gold); color: var(--gold);
  font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 30px; margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Playfair Display', serif; color: var(--white);
  font-size: clamp(3rem, 8vw, 6rem); line-height: 1.05; margin-bottom: 1rem;
}
.hero h1 span { color: var(--gold); }
.hero p {
  color: #bbb; font-size: clamp(1rem, 2vw, 1.15rem);
  max-width: 540px; line-height: 1.7; margin: 0 auto 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--dark); padding: 14px 30px;
  border-radius: 40px; font-weight: 700; font-size: 0.9rem;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  transition: all .2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center;
  border: 1.5px solid rgba(255,255,255,0.3); color: var(--white); padding: 14px 30px;
  border-radius: 40px; font-weight: 500; font-size: 0.9rem;
  letter-spacing: 1px; text-decoration: none; text-transform: uppercase;
  transition: all .2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
}
.hero-scroll span {
  display: block; width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: auto; animation: scrollDown 1.8s ease-in-out infinite;
}
@keyframes scrollDown {
  0%,100% { opacity:0; transform: scaleY(0) translateY(-20px); }
  50%      { opacity:1; transform: scaleY(1) translateY(0); }
}

/* ── STATS ── */
.stats {
  background: var(--dark); color: var(--white);
  display: flex; justify-content: space-around; flex-wrap: wrap;
  padding: 2rem 5%; gap: 1rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold);
}
.stat-label {
  font-size: 0.78rem; color: #999;
  letter-spacing: 1px; text-transform: uppercase; margin-top: 4px;
}

/* ── ABOUT ── */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius);
}
.about-img-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  background: var(--gold); color: var(--dark);
  padding: 1.2rem 1.5rem; border-radius: var(--radius);
  font-weight: 700; text-align: center; font-size: 0.85rem;
}
.about-img-badge strong {
  display: block; font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
}
.about-features { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.feature-chip {
  background: var(--cream2); color: var(--dark2);
  padding: 8px 16px; border-radius: 30px; font-size: 0.8rem; font-weight: 500;
}

/* ── ROOMS ── */
.rooms { background: var(--cream); }
.rooms-header { margin-bottom: 3.5rem; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.room-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.room-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }

.room-img-wrap { aspect-ratio: 16/9; overflow: hidden; display: block; }
.room-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.room-card:hover .room-img-wrap img { transform: scale(1.04); }

.room-body {
  padding: 1.8rem;
  display: flex; flex-direction: column; flex: 1;
}
.room-name {
  font-family: 'Playfair Display', serif; font-size: 1.5rem;
  color: var(--dark); margin-bottom: 0.5rem;
  text-decoration: none; display: block; transition: color .2s;
}
a.room-name:hover { color: var(--gold); }
a.room-img-wrap { display: block; cursor: pointer; }
.room-desc {
  color: var(--muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem;
}
.room-amenities {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-grow: 1; align-content: flex-start;
}
.amenity {
  font-size: 0.78rem; background: var(--cream2);
  color: var(--dark2); padding: 5px 12px; border-radius: 20px;
  height: fit-content;
}
.room-btn {
  display: block; background: var(--dark); color: var(--white);
  padding: 12px 0; border-radius: 30px; font-size: 0.85rem;
  font-weight: 600; text-decoration: none; letter-spacing: 0.5px;
  text-align: center; margin-top: auto;
  transition: background .2s, color .2s;
}
.room-btn:hover { background: var(--gold); color: var(--dark); }

/* ── SERVICES ── */
.services { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem; margin-top: 3rem;
}
.service-card {
  padding: 1.8rem; border: 1px solid #e8e4dc; border-radius: var(--radius);
  transition: border-color .2s, box-shadow .2s;
}
.service-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.12);
}
.service-icon { font-size: 1.8rem; margin-bottom: 0.9rem; }
.service-title { font-weight: 600; font-size: 0.92rem; color: var(--dark); margin-bottom: 0.4rem; }
.service-text { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ── CONTACT ── */
.contact { background: var(--dark); color: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact .section-title { color: var(--white); }
.contact .section-subtitle { color: #aaa; }

.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 42px; height: 42px; background: rgba(201,168,76,0.15);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; flex-shrink: 0;
}
.contact-label {
  font-size: 0.72rem; color: var(--gold);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px;
}
.contact-value { color: #ddd; font-size: 0.92rem; }
.contact-value a { color: #ddd; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }

.whatsapp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white); padding: 14px 28px;
  border-radius: 40px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; margin-top: 1.5rem; transition: background .2s;
}
.whatsapp-btn:hover { background: #1ebe5d; }

.map-wrap { border-radius: var(--radius); overflow: hidden; height: 340px; }
.map-wrap iframe { width: 100%; height: 100%; border: none; filter: grayscale(0.3); }

/* ── FOOTER ── */
footer {
  background: #111; color: #666; text-align: center;
  padding: 2rem 5%; font-size: 0.8rem; border-top: 1px solid #222;
}
footer a { color: var(--gold); text-decoration: none; }

/* ── AOS (fade-up / fade-right / fade-left) ── */
[data-aos] { opacity: 0; transition: opacity .6s ease, transform .6s ease; }
[data-aos="fade-up"]    { transform: translateY(30px); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"]  { transform: translateX(30px); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .rooms-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid, .contact-inner {
    grid-template-columns: 1fr; gap: 2.5rem;
  }
  .rooms-grid { grid-template-columns: 1fr; }
  .about-img-badge { bottom: -1rem; right: -0.5rem; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none; flex-direction: column; gap: 0;
  