* {
  box-sizing: border-box;
}

:root {
  --bg: #07131b;
  --bg-soft: #0d1d28;
  --card: rgba(255,255,255,0.06);
  --card-strong: rgba(255,255,255,0.08);
  --text: #f8f5ef;
  --muted: #b7c5cf;
  --gold: #ddb25f;
  --gold-strong: #f0c66d;
  --line: rgba(255,255,255,0.1);
  --success: #1bd741;
  --shadow: 0 18px 60px rgba(0,0,0,0.28);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(221,178,95,0.10), transparent 26%),
    linear-gradient(180deg, #061019 0%, #081621 45%, #07131b 100%);
  font-family: "Inter", sans-serif;
}

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

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(7,19,27,0.72);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold), #fff1bf);
  color: #061019;
  font-weight: 800;
  font-size: 0.95rem;
}

.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav-links a {
  color: var(--muted);
  font-weight: 500;
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  display: block;
  margin: 5px 0;
  background: #fff;
}

.hero {
  position: relative;
  padding: 72px 0 56px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,19,27,0.94) 0%, rgba(7,19,27,0.84) 45%, rgba(7,19,27,0.4) 100%),
    url("assets/gallery-10.jpeg") center/cover no-repeat;
  opacity: 0.34;
}

.hero-overlay {
  position: absolute;
  inset: auto -10% -80px auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,178,95,0.24), transparent 65%);
  filter: blur(18px);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero h1, .section-heading h2, .split h2, .reservation-box h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  max-width: 11ch;
}

.hero-text {
  max-width: 60ch;
  margin: 22px 0 0;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--muted);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.full {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-strong));
  color: #08131b;
  box-shadow: 0 18px 40px rgba(221,178,95,0.18);
}

.btn-secondary {
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
  background: rgba(255,255,255,0.03);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
  margin-top: 32px;
}

.hero-meta div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-meta strong {
  display: block;
  font-size: 1.04rem;
}

.hero-meta span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.hero-card-content {
  padding: 24px;
}

.mini-label {
  color: var(--gold);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  margin: 0 0 8px;
}

.hero-card-content h3,
.pack-card h3,
.feature h3,
.review-banner .score,
.site-footer h3 {
  margin: 0;
}

.hero-card-content ul,
.check-list,
.footer-list {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.trust-bar {
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  text-align: center;
  padding: 18px 0;
  color: #e4d7b9;
  font-weight: 600;
}

.section {
  padding: 92px 0;
}

.section.alt {
  background: rgba(255,255,255,0.02);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h2,
.split h2,
.reservation-box h2 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  margin-bottom: 14px;
}

.section-heading p,
.split p,
.feature p,
.card p,
.footer-copy,
.review-copy,
.tour-date {
  color: var(--muted);
  line-height: 1.8;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0,1fr));
}

.cards.two {
  grid-template-columns: repeat(2, minmax(0,1fr));
}

.card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.service-card .icon {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.pack-card.featured {
  background: linear-gradient(180deg, rgba(221,178,95,0.14), rgba(255,255,255,0.05));
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(221,178,95,0.14);
  color: var(--gold-strong);
  font-weight: 700;
  font-size: 0.84rem;
}

.pack-date {
  margin: 12px 0 6px;
  font-weight: 600;
}

.pack-price {
  margin: 0 0 18px;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff2cb;
}

.check-list {
  margin-bottom: 22px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.features {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.feature {
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.image-stack {
  position: relative;
  min-height: 620px;
}

.img-large,
.img-small,
.image-frame img {
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.img-large {
  width: 100%;
  height: 620px;
}

.img-small {
  position: absolute;
  width: 56%;
  right: -14px;
  bottom: -26px;
  height: 280px;
  border: 6px solid #08131b;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 16px;
}

.gallery-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}

.review-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(221,178,95,0.09));
  border: 1px solid rgba(255,255,255,0.09);
}

.score {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff0c2;
}

.tour-date {
  font-weight: 700;
  color: #fff0c2;
  margin: 8px 0 10px;
}

.image-frame img {
  width: 100%;
  height: 520px;
}

.reservation-box {
  padding: 38px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.reservation-form {
  margin-top: 24px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

input, textarea, select {
  width: 100%;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

input::placeholder, textarea::placeholder {
  color: #9db0bd;
}

textarea {
  resize: vertical;
  min-height: 140px;
  margin-top: 16px;
}

.site-footer {
  padding: 30px 0 50px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li + li {
  margin-top: 10px;
}

.footer-list a {
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--text);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  background: var(--success);
  color: #07131b;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: var(--shadow);
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .split.reverse,
  .footer-grid,
  .cards.three,
  .cards.two,
  .gallery-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid img {
    height: 360px;
  }

  .hero {
    padding-top: 42px;
  }

  .image-stack {
    min-height: auto;
  }

  .img-large {
    height: 420px;
  }

  .img-small {
    position: static;
    width: 100%;
    height: 260px;
    margin-top: 16px;
    border-width: 0;
  }

  .review-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 18px;
    background: rgba(7,19,27,0.98);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .brand-text {
    font-size: 1.7rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .site-footer {
    padding-top: 72px;
  }

  .hero-card-image img,
  .image-frame img,
  .img-large,
  .gallery-grid img {
    height: auto;
  }

  .reservation-box {
    padding: 26px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
    text-align: center;
    justify-content: center;
  }
  /* BACKGROUND GLOBAL */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 40%, #ffffff 100%);
    color: white;
}

/* HERO SECTION */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: linear-gradient(180deg, #000000, #111111);
}

/* LOGO */
.logo {
    width: 120px;
    margin-bottom: 20px;
}

/* TITRE */
.logo-text {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: 1px;
}

.white {
    color: #ffffff;
}

.gold {
    color: #d4af37;
}

/* BOUTON */
.btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #d4af37;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
}
}
