/* ─── VENUS HOTEL CLASS — SHARED STYLES ─── */

/* ─── VARIABLES ─── */
:root {
  --gold: #D4A636;
  --gold-light: #E8C86A;
  --gold-pale: #F5E6B8;
  --gold-dim: rgba(212,166,54,0.15);
  --black: #0A0A0A;
  --black-soft: #1A1A1A;
  --black-medium: #2A2A2A;
  --black-card: #141414;
  --white: #FAFAF8;
  --white-warm: #F5F3EE;
  --gray: #8A8A8A;
  --gray-light: #C4C4C4;
  --gray-dark: #555;
  --green: #2ECC71;
  --green-dim: rgba(46,204,113,0.12);
  --red: #E74C3C;
  --red-dim: rgba(231,76,60,0.1);
}

/* ─── RESET ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { display: block; }

body {
  font-family: 'Outfit', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0) 100%);
  transition: background 0.4s, border-bottom 0.4s;
}

nav.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,166,54,0.15);
}

/* Pages internes : nav toujours opaque */
body.page-inner nav {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,166,54,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 3px;
  border: 1px solid rgba(212,166,54,0.4);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text span:first-child {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.08em;
}

.logo-text span:last-child {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 0.7rem 1.6rem;
  font-weight: 600 !important;
  letter-spacing: 0.08em !important;
  font-size: 0.8rem !important;
  text-transform: uppercase;
  transition: all 0.3s !important;
  border: 1px solid var(--gold);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: transparent !important;
  color: var(--gold) !important;
}

/* Nav retour (page réservation) */
.nav-back {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}
.nav-back:hover { color: var(--gold); }

/* ─── MOBILE MENU ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* Burger → X animation */
nav.menu-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
nav.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
nav.menu-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav overlay */
nav.menu-open .nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10,10,10,0.98);
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 999;
}

nav.menu-open .nav-links a {
  font-size: 1.2rem;
}

nav.menu-open .nav-links .nav-cta {
  font-size: 1rem !important;
  padding: 1rem 2.5rem;
}

/* ─── SECTIONS ─── */
section { padding: 7rem 4%; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--gray);
  max-width: 550px;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-primary {
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 1rem 2.5rem;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── PAGE HERO (pages internes) ─── */
.page-hero {
  padding-top: 80px;
  position: relative;
  overflow: hidden;
  height: 50vh;
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeUp 1s ease-out;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

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

.page-hero p {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

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

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 4% 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--gold);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

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

.footer-bottom {
  max-width: 1200px;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--gray);
}

.footer-bottom a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  .page-hero {
    height: 40vh;
    min-height: 280px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.8rem;
    text-align: center;
  }
}

/* ─── PRINT ─── */
@media print {
  nav, .menu-toggle, footer, .page-hero-bg { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  * { color: #000 !important; border-color: #ccc !important; }
  .page-hero { height: auto !important; min-height: 0 !important; padding: 1rem 0 !important; }
}
