:root {
  --bg: #0a1225;
  --ink: #f4f7ff;
  --muted: #9fb3d6;
  --card: #0f1a36;
  --brand: #00a8ff;
  --accent: #ffb400;
  --ok: #25D366;
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, Arial, sans-serif;
  background: linear-gradient(135deg, #122442, #0a1225);
  color: var(--ink);
}

a {
  text-decoration: none;
}

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

/* HEADER / NAV */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background-color: #0a1225;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-container {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #fff;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fff;
  padding: 3px;
}

.brand-name {
  font-weight: 800;
}

.brand-tagline {
  font-size: 12px;
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 22px;
}

.nav-menu {
  display: flex;
  gap: 18px;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-link {
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: 100%;
  background: rgba(10, 18, 37, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: none;
  flex-direction: column;
  min-width: 200px;
  padding: 8px 0;
}

.dropdown:hover .dropdown-menu {
  display: flex;
}

.dropdown-item {
  color: #fff;
  padding: 8px 16px;
  display: block;
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* MOBILE NAV */
@media (max-width: 992px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    right: -100%;
    flex-direction: column;
    background-color: #0a1225;
    width: 280px;
    height: calc(100% - 64px);
    padding: 16px;
    border-left: 1px solid var(--border);
    transition: 0.3s;
    z-index: 999;
  }

  .nav-menu.active {
    right: 0;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    background-color: #0f1a36;
    margin: 8px 0;
    padding: 8px 0;
    border-radius: 8px;
  }

  .dropdown-menu {
    position: relative;
    width: 100%;
    background-color: #0f1a36;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
  }

  .nav-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 8px 0;
  }

  .dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .lang-switcher {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .lang-switcher .nav-link {
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: inline-block;
    width: auto;
  }
}

/* HERO */
.hero {
  text-align: center;
  padding: 26px 0 10px;
}

.hero h1 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3.6vw, 40px);
}

.hero p {
  margin: 0;
  color: var(--muted);
}

.cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.cta.whatsapp {
  background: var(--ok);
  color: #fff;
}

.cta.secondary {
  background: #fff;
  color: #000;
}

.cta.pre {
  background: var(--accent);
  color: #000;
}

/* CARDS */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin: 24px 0;
}

.card {
  background: #fff;
  color: #111;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
}

.card-image {
  height: 180px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--brand);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.card-discount {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #ff4757;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
}

.card-content {
  padding: 14px;
}

.card-title {
  margin: 0 0 6px;
  font-size: 18px;
}

.card-description {
  color: #444;
  margin: 6px 0;
}

.card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.card-price {
  color: var(--brand);
  font-weight: 800;
}

.card-old-price {
  color: #999;
  text-decoration: line-through;
  margin-left: 6px;
  font-size: 13px;
}

.card-button {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 800;
  cursor: pointer;
}

.card-button:hover {
  filter: brightness(1.08);
}

.fav {
  background: transparent;
  border: 0;
  color: #777;
  font-size: 18px;
  cursor: pointer;
}

/* MODAL */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  place-items: center;
  padding: 16px;
  z-index: 99;
}

.modal {
  background: #fff;
  color: #111;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  border-radius: 14px;
  overflow: auto;
}

.mhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.mbody {
  padding: 16px;
}

.mgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mlist {
  padding-left: 18px;
}

.tag {
  display: inline-block;
  background: #eef3ff;
  color: #224;
  margin: 3px 6px 0 0;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 12px;
}

.segment {
  display: inline-block;
  background: #f5f7fa;
  color: #333;
  margin: 3px 6px 0 0;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
}

.dates {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.datechip {
  background: #f0f7ff;
  color: #224;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
}

@media (max-width: 720px) {
  .mgrid {
    grid-template-columns: 1fr;
  }
}

/* PRÉ-RÉSERVATION */
.reservation-section {
  margin: 26px auto;
}

.reservation-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.reservation-section h2 {
  margin: 0 0 10px;
}

.reservation-form {
  display: grid;
  gap: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
}

.form-group input,
.form-group textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  padding: 10px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #c8d4ef;
}

.form-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.btn-primary {
  background: var(--ok);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  padding: 10px 16px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .form-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
