:root {
  --bg: #f5f1eb;
  --bg-alt: #ffffff;
  --text: #2c2a28;
  --muted: #7a746c;
  --accent: #195a7a;
  --accent-soft: #e0edf3;
  --border: #dfd5c8;
  --card-bg: #faf7f2;

  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --shadow-soft: 0 18px 40px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: --bg;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

/* CONTAINER */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

/* HEADER */

.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  background: rgba(245, 241, 235, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(223, 213, 200, 0.5);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
  gap: 1.25rem;
}

.logo {
  height: 38px;
  width: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 1.75rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.main-nav a:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-switch {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: var(--text);
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-outline {
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* HERO */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;

  background-image: url("hero-riviera.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25));
  z-index: 1;
}

.hero-content {
  position: relative;
  padding: 5rem 0 4rem;
  max-width: 620px;
  z-index: 2;

  opacity: 0;
  transform: translateY(18px);
  animation: heroFadeIn 1.2s ease-out forwards;
  animation-delay: 1s;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  opacity: 0.9;
  margin-bottom: 0.8rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.1rem);
  margin: 0 0 1.1rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.72rem;
}

.hero-tags span {
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: rgba(255,255,255,0.16);
}

/* SECTIONS GÉNÉRIQUES */

.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 0.7rem;
}

.section h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 1rem;
  font-size: 1.9rem;
}

.section-intro {
  max-width: 680px;
  margin: 0.25rem 0 0;
  color: var(--muted);
}

/* PILLARS */

.pillars {
  padding: 3.5rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.pillar-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(223,213,200,0.9);
  box-shadow: var(--shadow-soft);
}

.pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
}

.pillar-card p {
  margin: 0 0 0.7rem;
  color: var(--muted);
}

/* LINKS FLECHE */

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* OWNERS */

.two-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.owners-image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

/* FEATURE COLUMNS (marketing, guest relations, etc.) */

.feature-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.feature-columns h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.feature-columns ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-columns li {
  margin-bottom: 0.25rem;
}

/* Cartes plus lisibles pour le bloc Owners */
.owners-feature-grid {
  margin-top: 2.2rem;
}

.owners-feature-grid > div {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.25rem 1.2rem;
  border: 1px solid rgba(223,213,200,0.8);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.owners-feature-grid h3 {
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
}

.owners-feature-grid ul {
  margin-top: 0.5rem;
}

/* CARDS GÉNÉRALES */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.cards-with-images .service-card,
.boat-card,
.driver-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(223,213,200,0.7);
  box-shadow: var(--shadow-soft);
}

.service-card img,
.boat-card img,
.driver-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.card-body {
  padding: 1.2rem 1.4rem 1.3rem;
}

.card-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
}

.card-body p {
  margin: 0.1rem 0;
  color: var(--muted);
}

.from-price {
  margin-top: 0.6rem;
  font-size: 0.82rem;
}

/* DECOR BAND – bandes avec photo qui défile */

.decor-band {
  position: relative;
  background-image: url("../assets/decor-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 0%;
  min-height: 42vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
  color: #fff;
  overflow: hidden;
}

.decor-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
}

.decor-content {
  position: relative;
  z-index: 2;
}

.decor-kicker {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  opacity: 0.9;
  margin-bottom: 0.7rem;
}

.decor-band h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin: 0;
}

/* Photos différentes pour chaque bande décorative */
.decor-band.owners-band {
  background-image: url("../assets/owners-banner.png");
}

.decor-band.concierge-band {
  background-image: url("../assets/concierge-banner.png");
}

.decor-band.boats-band {
  background-image: url("../assets/boats-banner.jpg");
}

.decor-band.drivers-band {
  background-image: url("../assets/drivers-banner.png");
}

.decor-band.b2b-band {
  background-image: url("../assets/b2b-banner.jpg");
}

/* BOATS & DRIVERS GRIDS */

.boats-grid,
.drivers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

/* FOOTER */

.site-footer {
  padding: 2.2rem 0;
  background: #151515;
  color: #f3f3f3;
  margin-top: 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-links a {
  color: #f3f3f3;
  font-size: 0.85rem;
  text-decoration: none;
  margin-left: 1rem;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

/* BURGER */

.burger {
  display: none;
  width: 36px;
  height: 30px;
  padding: 0;
  border: none;
  background: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
}

/* FORM */

.contact-form {
  margin-top: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem 1.5rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.25rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  font: inherit;
}

/* RESPONSIVE */

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    inset-inline: 0;
    top: 58px;
    background: rgba(245,241,235,0.98);
    transform: translateY(-120%);
    transition: transform 0.2s ease;
  }

  .main-nav.open {
    transform: translateY(0%);
  }

  .main-nav ul {
    flex-direction: column;
    padding: 1rem 1.3rem 1.5rem;
    gap: 0.9rem;
  }

  .burger {
    display: flex;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }
/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(90%, 650px);
  background: #ffffff;
  border: 1px solid #d6d0c8;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  padding: 1.2rem 1.5rem;
  border-radius: 0.85rem;
  display: none; /* caché par défaut */
  z-index: 9999;
  animation: fadeInCookie 0.45s ease-out forwards;
}

@keyframes fadeInCookie {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}

.cookie-banner p {
  margin: 0 0 0.8rem;
  color: #2c2a28;
  font-size: 0.95rem;
}

.cookie-banner a {
  color: #195a7a;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-buttons {
  display: flex;
  gap: 0.7rem;
}

.cookie-buttons button {
  padding: 0.45rem 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

#cookie-accept {
  background: #195a7a;
  color: #fff;
}

#cookie-reject {
  background: #e6e6e6;
  color: #2c2a28;
}

}
.contact-direct {
  margin: 1.2rem 0 1.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
}

.contact-direct-title {
  margin: 0 0 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.65);
}

.contact-direct-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
}

.contact-direct-link {
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.25);
  padding-bottom: 2px;
}

.contact-direct-link:hover {
  border-bottom-color: rgba(0,0,0,0.6);
}

