/* ===== Riviera Nocturne — Luxury Hotel Stylesheet ===== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---------- Reset & Variables ---------- */
:root {
  --ink: #0a1628;
  --ink-soft: #16263d;
  --ink-light: #1e3252;
  --champagne: #c9b896;
  --champagne-light: #ddccae;
  --champagne-dark: #a89770;
  --mist: #eef2f7;
  --mist-dark: #d9e0ea;
  --white: #ffffff;
  --grey: #6b7689;
  --grey-light: #aab4c4;
  --overlay: rgba(10,22,40,0.55);
  --overlay-dark: rgba(10,22,40,0.78);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1280px;
  --section-pad: 100px 0;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.5px;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); }
h4 { font-size: 1.3rem; }

p { font-size: 1rem; color: var(--grey); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 18px;
  display: block;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title h2 { margin-bottom: 16px; }
.section-title p { max-width: 600px; margin: 0 auto; color: var(--grey); }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 40px; }

section { padding: var(--section-pad); }
section.tight { padding: 70px 0; }

.bg-mist { background: var(--mist); }
.bg-ink { background: var(--ink); color: var(--mist); }
.bg-ink h2, .bg-ink h3, .bg-ink h4 { color: var(--white); }
.bg-ink p { color: rgba(238,242,247,0.65); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  color: var(--champagne);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover { background: var(--champagne); color: var(--ink); }

.btn-solid {
  background: var(--champagne);
  color: var(--ink);
  border-color: var(--champagne);
}
.btn-solid:hover { background: var(--champagne-light); border-color: var(--champagne-light); }

.btn-light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-light:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Header ---------- */
#header-placeholder { position: relative; z-index: 1000; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all var(--transition);
  background: transparent;
}
.site-header.scrolled {
  background: rgba(10,22,40,0.94);
  backdrop-filter: blur(10px);
  padding: 14px 0;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--champagne); }
.logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.site-footer .logo-img { height: 40px; }

.nav-menu { display: flex; gap: 36px; align-items: center; }

.nav-menu a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  position: relative;
  padding: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--champagne);
  transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--champagne);
  color: var(--champagne) !important;
  font-size: 0.75rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--champagne); color: var(--ink) !important; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: var(--transition);
}
.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 40px;
  animation: fadeUp 1.2s ease;
}
.hero-content .eyebrow { color: var(--champagne-light); }
.hero-content h1 { color: var(--white); margin-bottom: 24px; }
.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 36px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
}
.page-hero .hero-bg { z-index: 0; }
.page-hero .hero-overlay { background: rgba(10,22,40,0.68); }
.page-hero .hero-content { animation: fadeUp 0.9s ease; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
.page-hero p { font-size: 1.05rem; }

/* ---------- Content Sections ---------- */

/* Feature cards grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--mist);
  border-radius: 4px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.08);
}
.feature-icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--champagne);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 14px; }
.feature-card p { font-size: 0.92rem; color: var(--grey); }

/* Split section (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split.reverse .split-text { order: 2; }
.split-image {
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 24px; }
.split-text p { margin-bottom: 18px; color: var(--grey); }
.split-text .btn { margin-top: 12px; }

/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item {
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform var(--transition);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(10,22,40,0.2); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* Stats / counters */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-item .stat-num {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--champagne);
  display: block;
  margin-bottom: 8px;
}
.stat-item .stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(238,242,247,0.55);
}

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 30px;
}
.testimonial-author {
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--champagne);
}

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.cta-banner .cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.72);
  z-index: 1;
}
.cta-banner .container { position: relative; z-index: 2; }
.cta-banner h2 { color: var(--white); margin-bottom: 20px; }
.cta-banner p { color: rgba(255,255,255,0.8); max-width: 500px; margin: 0 auto 36px; }

/* ---------- Services Page ---------- */
.service-list { display: grid; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1px solid var(--mist-dark);
}
.service-row:last-child { border-bottom: none; }
.service-row.reverse .service-img { order: 2; }
.service-img {
  height: 380px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.service-info h3 { margin-bottom: 16px; }
.service-info p { color: var(--grey); margin-bottom: 16px; }
.service-info ul {
  margin: 20px 0;
  padding-left: 0;
}
.service-info ul li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.service-info ul li::before {
  content: '\2726';
  position: absolute;
  left: 0;
  color: var(--champagne);
  font-size: 0.75rem;
  top: 10px;
}

/* Pricing / amenity cards */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.amenity-card {
  background: var(--white);
  border: 1px solid var(--mist-dark);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(10,22,40,0.08);
}
.amenity-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
}
.amenity-card-body { padding: 30px; }
.amenity-card-body h4 { margin-bottom: 10px; }
.amenity-card-body p { font-size: 0.9rem; color: var(--grey); }
.amenity-card-body .price {
  display: block;
  margin-top: 16px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--champagne);
}
.amenity-card-body .price small { font-size: 0.8rem; color: var(--grey); }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}
.contact-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--champagne);
  border-radius: 50%;
  color: var(--champagne);
}
.contact-info-icon svg { width: 20px; height: 20px; }
.contact-info-item h4 { margin-bottom: 6px; }
.contact-info-item p { font-size: 0.92rem; color: var(--grey); }

.contact-form {
  background: var(--mist);
  padding: 50px;
  border-radius: 4px;
}
.form-group { margin-bottom: 24px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--mist-dark);
  background: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--champagne);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.map-embed {
  margin-top: 70px;
  height: 400px;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 40px 0 16px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; color: var(--ink-soft); }
.legal-content ul { margin: 16px 0; padding-left: 20px; }
.legal-content ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.legal-content .last-updated {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 40px;
  font-style: italic;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(238,242,247,0.55);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; color: rgba(238,242,247,0.45); max-width: 300px; }

.footer-col h4 {
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(238,242,247,0.45);
}
.footer-col ul li a:hover { color: var(--champagne); }

.footer-contact p { font-size: 0.9rem; color: rgba(238,242,247,0.45); margin-bottom: 12px; }
.footer-contact a { color: rgba(238,242,247,0.45); }
.footer-contact a:hover { color: var(--champagne); }

.footer-bottom {
  border-top: 1px solid rgba(238,242,247,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(238,242,247,0.35);
}
.footer-bottom .footer-legal { display: flex; gap: 24px; }
.footer-bottom .footer-legal a { color: rgba(238,242,247,0.35); }
.footer-bottom .footer-legal a:hover { color: var(--champagne); }

/* ---------- Animations on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  section { padding: 60px 0; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 30px 30px;
    gap: 24px;
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { font-size: 0.9rem; }
  .nav-cta { margin-top: 10px; }

  .menu-toggle { display: block; z-index: 1001; }

  .split, .split.reverse { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-text { order: 1; }
  .split-image { height: 320px; }

  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: 1fr; }

  .service-row, .service-row.reverse { grid-template-columns: 1fr; gap: 30px; }
  .service-row.reverse .service-img { order: 1; }
  .service-img { height: 280px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 30px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom .footer-legal { flex-wrap: wrap; justify-content: center; }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-content p { font-size: 1rem; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .logo {
    font-size: 1.2rem;
    gap: 5px;
  }
}
