/*
Theme Name:   GeneratePress Child — Mekong Riverview
Theme URI:    https://mekongriverview.com
Description:  Thème enfant GeneratePress pour Mekong Riverview Hotel
Author:       Mekong Riverview Hotel
Author URI:   https://mekongriverview.com
Template:     generatepress
Version:      1.0.0
License:      GNU General Public License v2 or later
Text Domain:  generatepress-child
*/

/* ═══════════════════════════════════════════════════
   MEKONG RIVERVIEW HOTEL — CSS Global Partagé
   ═══════════════════════════════════════════════════ */

/* ─── VARIABLES ─── */
:root {
  --river: #1a3a4e;
  --river-deep: #0f2535;
  --gold: #b8925a;
  --gold-light: #d4aa76;
  --ivory: #f8f4ee;
  --ivory-dark: #efe9df;
  --sand: #c4a882;
  --text: #1a1a18;
  --text-light: #5a5a52;
  --white: #ffffff;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--text); background: var(--white); overflow-x: hidden; }

/* Neutraliser les styles GeneratePress qu'on ne veut pas */
.site-header,
.site-footer,
.main-navigation { display: none !important; }

.site-content,
.content-area,
.site-main { padding: 0 !important; margin: 0 !important; max-width: none !important; }

.entry-content { margin: 0 !important; max-width: none !important; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  transition: var(--transition);
}

nav.scrolled {
  background: rgba(15, 37, 53, 0.97);
  backdrop-filter: blur(12px);
  height: 64px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.2);
}

.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 44px; filter: brightness(0) invert(1); transition: var(--transition); }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links > li { position: relative; }

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--river-deep);
  min-width: 200px;
  border: 1px solid rgba(184,146,90,0.2);
  border-radius: 4px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; top: calc(100% + 4px); }

.dropdown a {
  display: block;
  padding: 9px 18px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.2s, background 0.2s;
}

.dropdown a:hover { color: var(--gold-light); background: rgba(255,255,255,0.05); }

.nav-book {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 2px;
  font-weight: 600 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}

.nav-book:hover { background: var(--gold-light) !important; color: var(--white) !important; }

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

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--gold); color: var(--white); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(184,146,90,0.4); }

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

.btn-ghost {
  display: inline-block;
  padding: 15px 40px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-light); transform: translateY(-2px); }

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.05);
  animation: heroZoom 12s ease-out forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.0); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,25,38,0.35) 0%, rgba(10,25,38,0.5) 50%, rgba(10,25,38,0.75) 100%);
}

.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 860px; }

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 10px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

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

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-divider {
  width: 48px; height: 1px;
  background: var(--gold);
  margin: 0 auto 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.9s forwards;
}

.hero-desc {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 44px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeUp 0.9s 1.0s forwards;
}

.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.9s 1.2s forwards; }

.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeUp 1s 1.6s forwards;
}

.hero-scroll span { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollAnim 2s 2s infinite;
}

@keyframes scrollAnim {
  0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SECTION COMMONS ─── */
section { position: relative; }
.container { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

.section-label {
  font-family: var(--font-sans);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; display: block;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300; line-height: 1.15; color: var(--river);
}

.section-title em { font-style: italic; color: var(--gold); }
.section-divider { width: 42px; height: 1px; background: var(--gold); margin: 24px 0; }
.section-text { font-family: var(--font-sans); font-size: 15px; font-weight: 300; line-height: 1.75; color: var(--text-light); max-width: 520px; }

/* ─── USP STRIP ─── */
.usp-strip { background: var(--ivory); border-top: 1px solid var(--ivory-dark); border-bottom: 1px solid var(--ivory-dark); padding: 48px 0; }
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1160px; margin: 0 auto; padding: 0 48px; }
.usp-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 24px 32px; border-right: 1px solid var(--ivory-dark); }
.usp-item:last-child { border-right: none; }
.usp-icon { width: 40px; height: 40px; margin-bottom: 14px; color: var(--gold); }
.usp-title { font-family: var(--font-serif); font-size: 18px; font-weight: 500; color: var(--river); margin-bottom: 6px; }
.usp-text { font-size: 13px; font-weight: 300; color: var(--text-light); line-height: 1.6; }

/* ─── ABOUT ─── */
.about-section { padding: 120px 0; background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-main { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.about-img-badge { position: absolute; bottom: -30px; right: -30px; width: 160px; height: 160px; background: var(--river); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 20px; }
.about-img-badge .num { font-family: var(--font-serif); font-size: 44px; font-weight: 300; color: var(--gold-light); line-height: 1; }
.about-img-badge .label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 6px; }
.about-text { padding-right: 20px; }
.about-signature { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--ivory-dark); display: flex; align-items: center; gap: 16px; }
.about-signature img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--ivory-dark); }
.about-signature-text { font-family: var(--font-serif); font-size: 15px; font-style: italic; color: var(--text-light); }
.about-signature-name { font-family: var(--font-sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-top: 4px; }

/* ─── ROOMS ─── */
.rooms-section { padding: 120px 0; background: var(--river-deep); }
.rooms-header { text-align: center; margin-bottom: 64px; }
.rooms-header .section-title { color: var(--white); }
.rooms-header .section-divider { margin: 24px auto; }
.rooms-header .section-text { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto; text-align: center; }
.rooms-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.room-card { position: relative; overflow: hidden; aspect-ratio: 3/4; display: block; text-decoration: none; }
.room-card:first-child { grid-column: span 2; aspect-ratio: unset; }
.room-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.7s ease; }
.room-card:hover .room-card-bg { transform: scale(1.05); }
.room-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,25,38,0.85) 0%, rgba(10,25,38,0.1) 60%, transparent 100%); }
.room-card-content { position: absolute; bottom: 28px; left: 28px; right: 28px; }
.room-card-type { font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; margin-bottom: 6px; }
.room-card-name { font-family: var(--font-serif); font-size: 26px; font-weight: 300; color: var(--white); margin-bottom: 14px; }
.room-card-link { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.6); font-weight: 500; display: flex; align-items: center; gap: 8px; transition: color 0.2s; }
.room-card:hover .room-card-link { color: var(--gold-light); }
.room-card-link::after { content: ''; display: block; width: 24px; height: 1px; background: currentColor; transition: width 0.3s; }
.room-card:hover .room-card-link::after { width: 40px; }
.rooms-cta { text-align: center; margin-top: 56px; }

/* ─── RESTAURANT ─── */
.restaurant-section { padding: 120px 0; background: var(--ivory); }
.restaurant-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.restaurant-images { position: relative; }
.restaurant-img-main { width: 80%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.restaurant-img-accent { position: absolute; bottom: -32px; right: 0; width: 55%; aspect-ratio: 1/1; object-fit: cover; border: 6px solid var(--ivory); }
.restaurant-features { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.restaurant-feature { display: flex; align-items: flex-start; gap: 14px; }
.feat-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
.feat-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.feat-text strong { color: var(--river); font-weight: 500; }

/* ─── REVIEWS ─── */
.reviews-section { padding: 120px 0; background: var(--white); overflow: hidden; }
.reviews-header { text-align: center; margin-bottom: 64px; }
.reviews-header .section-divider { margin: 24px auto; }
.reviews-header .section-text { margin: 0 auto; text-align: center; }
.reviews-track { display: flex; gap: 28px; overflow-x: auto; padding: 0 48px 24px; scrollbar-width: none; -ms-overflow-style: none; scroll-snap-type: x mandatory; }
.reviews-track::-webkit-scrollbar { display: none; }
.review-card { min-width: 360px; background: var(--ivory); border: 1px solid var(--ivory-dark); padding: 36px; scroll-snap-align: start; flex-shrink: 0; }
.review-stars { display: flex; gap: 3px; margin-bottom: 20px; }
.review-stars svg { width: 14px; height: 14px; fill: var(--gold); }
.review-text { font-family: var(--font-serif); font-size: 17px; font-weight: 300; font-style: italic; color: var(--text); line-height: 1.65; margin-bottom: 24px; }
.review-author { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.review-date { font-size: 12px; color: var(--text-light); margin-top: 3px; }
.reviews-ta { text-align: center; margin-top: 48px; }
.ta-badge { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; border: 1px solid var(--ivory-dark); background: var(--ivory); text-decoration: none; transition: var(--transition); }
.ta-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.ta-score { font-family: var(--font-serif); font-size: 28px; font-weight: 500; color: var(--river); }
.ta-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }

/* ─── LOCATION ─── */
.location-section { padding: 120px 0; background: var(--ivory); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.location-map { border: none; width: 100%; height: 420px; display: block; filter: grayscale(20%); }
.location-info { padding-top: 16px; }
.location-details { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.location-detail { display: flex; gap: 16px; align-items: flex-start; }
.loc-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.loc-title { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 3px; }
.loc-text { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.loc-text a { color: var(--river); text-decoration: none; font-weight: 500; }
.loc-text a:hover { color: var(--gold); }

/* ─── FAQ ─── */
.faq-section { padding: 100px 0; background: var(--river-deep); }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header .section-title { color: var(--white); }
.faq-header .section-divider { margin: 20px auto; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 960px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); padding: 28px 32px; cursor: pointer; transition: background 0.2s; }
.faq-item:hover { background: rgba(255,255,255,0.07); }
.faq-q { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--white); margin-bottom: 12px; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-q svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; transition: transform 0.3s; }
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.7; display: none; }
.faq-item.open .faq-a { display: block; }

/* ─── FOOTER ─── */
footer { background: var(--river-deep); border-top: 1px solid rgba(255,255,255,0.08); padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 64px; }
.footer-brand img { height: 50px; filter: brightness(0) invert(1); opacity: 0.85; margin-bottom: 20px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; max-width: 240px; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); text-decoration: none; transition: var(--transition); }
.footer-social:hover { border-color: var(--gold); color: var(--gold-light); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-sans); font-size: 10px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item svg { width: 14px; height: 14px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── BOOKING BAR ─── */
.booking-bar { background: var(--river); padding: 0 48px; }
.booking-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; gap: 0; height: 70px; }
.booking-bar-label { font-family: var(--font-serif); font-size: 16px; font-weight: 400; color: rgba(255,255,255,0.7); font-style: italic; white-space: nowrap; padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.12); margin-right: 32px; }
.booking-field { display: flex; flex-direction: column; gap: 3px; padding-right: 28px; border-right: 1px solid rgba(255,255,255,0.1); margin-right: 28px; }
.booking-field label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-light); font-weight: 500; }
.booking-field input { background: transparent; border: none; outline: none; color: white; font-family: var(--font-sans); font-size: 14px; font-weight: 400; width: 130px; cursor: pointer; }
.booking-field input::placeholder { color: rgba(255,255,255,0.5); }
.booking-bar .btn-primary { margin-left: auto; white-space: nowrap; padding: 13px 30px; font-size: 11px; }

/* ─── REVEAL ANIMATIONS ─── */
.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; }

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .booking-bar { display: none; }
  .usp-grid { grid-template-columns: repeat(2,1fr); padding: 0 24px; }
  .usp-item:nth-child(2) { border-right: none; }
  .about-grid, .restaurant-grid, .location-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-img-badge { right: 16px; }
  .restaurant-img-accent { display: none; }
  .restaurant-img-main { width: 100%; }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card:first-child { grid-column: span 1; }
  .room-card { aspect-ratio: 3/2; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: span 2; }
  .container { padding: 0 24px; }
  .reviews-track { padding: 0 24px 24px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
