/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: #f5f0e8;
  color: #1a1a1a;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ===========================
   NAVBAR
=========================== */
.navbar {
  background-color: #004252;
  padding: 18px 30px;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}


/* ===========================
   HERO
=========================== */
.hero {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #f5f0e8;
  padding: 60px 10vw 60px 0;
}

/* Ondes à gauche */
.waves-container {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.waves-svg {
  width: 100%;
  height: 100%;
}

/* Contenu texte à droite */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 520px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-style: italic;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  color: #1a1a1a;
}

.hero-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  letter-spacing: 6px;
  font-weight: 300;
  color: #555;
  text-transform: uppercase;
}

/* Ligne décorative sous le titre */
.hero-content::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #00d4d4;
  margin: 24px auto 0;
}

/* ===========================
   FOOTER
=========================== */
.footer {
  background-color: #1a3a4a;
  padding: 28px 40px;
  text-align: center;
  /* Texture simulée avec dégradé pointillé */
  background-image: radial-gradient(circle, #ffffff08 1px, transparent 1px);
  background-size: 6px 6px;
}

.footer-text {
  color: #7aaabb;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 300;
}
