/* ─── RESET & BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #1a2744;
  --navy2:  #1e2f52;
  --gold:   #c9a84c;
  --gold2:  #e8c96e;
  --white:  #ffffff;
  --offwhite: #f8f6f1;
  --gray:   #6b7280;
  --light:  #e8e0d0;
  --dark:   #111827;
  --radius: 12px;
  --shadow: 0 8px 32px rgba(26,39,68,.12);
  --shadow-lg: 0 20px 60px rgba(26,39,68,.18);
  --transition: .35s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

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

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }

img { display: block; width: 100%; object-fit: cover; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── NAVBAR ────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(26,39,68,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-logo .stars { color: var(--gold); font-size: .85rem; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: color var(--transition);
}

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

.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav:hover { background: var(--gold2); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.hero:hover .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,39,68,.45) 0%, rgba(26,39,68,.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
}

.hero-tagline {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp .8s .3s forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp .8s .5s forwards;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255,255,255,.85);
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .8s .7s forwards;
}

.btn-hero {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 16px 40px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  opacity: 0;
  animation: fadeUp .8s .9s forwards;
}

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

/* ─── BOOKING BAR ───────────────────────────────────────────────────── */
.booking-bar {
  background: var(--navy);
  padding: 0;
}

.booking-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.booking-title {
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) auto;
  gap: 16px;
  align-items: end;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,168,76,.35);
  color: var(--white);
  padding: 12px 14px;
  border-radius: 6px;
  font-size: .92rem;
  font-family: 'Inter', sans-serif;
  transition: border-color var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255,255,255,.12);
}

.form-group select option { background: var(--navy); }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(.6);
  cursor: pointer;
}

.btn-booking {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 13px 32px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  align-self: end;
}

.btn-booking:hover { background: var(--gold2); transform: translateY(-2px); }

/* ─── SECTIONS ──────────────────────────────────────────────────────── */
.section { padding: 100px 0; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  display: block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.7;
}

/* ─── ROOMS ─────────────────────────────────────────────────────────── */
.rooms-section { background: var(--offwhite); }

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.room-card.featured {
  border: 2px solid var(--gold);
}

.room-image-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.room-image-wrap img {
  height: 100%;
  transition: transform .6s ease;
}

.room-card:hover .room-image-wrap img { transform: scale(1.05); }

.room-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 4px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.room-badge.popular { background: var(--gold); color: var(--navy); }
.room-badge.luxury { background: linear-gradient(135deg, #8b6914, #c9a84c); }

.room-body { padding: 28px; }

.room-name {
  font-size: 1.45rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.room-features {
  font-size: .82rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .04em;
  margin-bottom: 12px;
}

.room-desc {
  font-size: .92rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 24px;
}

.room-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.room-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  color: var(--navy);
  font-weight: 700;
}

.room-price small {
  font-size: .75rem;
  color: var(--gray);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.btn-book {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-book:hover { background: var(--gold); color: var(--navy); }

/* ─── AMENITIES ─────────────────────────────────────────────────────── */
.amenities-section { background: var(--navy); }
.amenities-section .section-title { color: var(--white); }
.amenities-section .section-subtitle { color: rgba(255,255,255,.65); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.amenity-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.amenity-card:hover {
  background: rgba(201,168,76,.08);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.amenity-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.amenity-card h3 {
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.amenity-card p {
  font-size: .88rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* ─── GALLERY ───────────────────────────────────────────────────────── */
.gallery-section { background: var(--offwhite); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item img {
  height: 100%;
  transition: transform .6s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,39,68,.7) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
}

/* ─── TESTIMONIALS ──────────────────────────────────────────────────── */
.testimonials-section { background: var(--white); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--offwhite);
  border-radius: var(--radius);
  padding: 36px 28px;
  border-left: 4px solid var(--gold);
  transition: var(--transition);
}

.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.stars-row {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: .1em;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: .95rem;
  color: var(--dark);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--navy);
  font-size: .9rem;
}

.testimonial-author span {
  color: var(--gray);
  font-size: .82rem;
}

/* ─── CONTACT ───────────────────────────────────────────────────────── */
.contact-section { background: var(--offwhite); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.4rem;
  width: 44px;
  flex-shrink: 0;
  text-align: center;
}

.contact-item strong {
  display: block;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-item p, .contact-item a {
  color: var(--gray);
  font-size: .92rem;
  line-height: 1.55;
}

.contact-item a:hover { color: var(--gold); }

.btn-chat-contact {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .04em;
  align-self: flex-start;
}

.btn-chat-contact:hover { background: var(--gold2); transform: translateY(-2px); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-map iframe { display: block; }

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 4px;
}

.footer-stars { color: var(--gold); font-size: .9rem; margin-bottom: 16px; }

.footer-brand p {
  font-size: .88rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4, .footer-contact h4 {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-contact p, .footer-contact a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}

.footer-legal a:hover { color: var(--gold); }

/* ─── ANIMATIONS ────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .1s; }
.reveal:nth-child(5) { transition-delay: .2s; }
.reveal:nth-child(6) { transition-delay: .3s; }

/* ─── RESPONSIVE ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 220px); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--navy); z-index: 999; justify-content: center; align-items: center; gap: 32px; font-size: 1.2rem; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .btn-nav { display: none; }
  .nav-toggle { display: flex; z-index: 1000; }

  .booking-form { grid-template-columns: 1fr 1fr; }
  .btn-booking { grid-column: 1 / -1; }

  .section { padding: 72px 0; }

  .rooms-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .amenities-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(3, 180px); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .booking-form { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 200px; }
  .amenities-grid { grid-template-columns: 1fr; }
}
