* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2D2D2D;
  line-height: 1.5;
}

/* Liens */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* Logo */
@font-face {
  font-family: 'Kapakana';
  src: url('fonts/Kapakana[wght].ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ---------------- NAVBAR ---------------- */
.navbar {
  background-color: #fff;
  padding: 1.5em 4em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.navbar-logo {
  font-size: 4rem;
  font-family: 'Kapakana', sans-serif;
  font-weight: 500;
  color: #A09878;
}

.navbar-list {
  list-style: none;
  display: flex;
  gap: 2em;
  font-size: 1rem;
  font-weight: 450;
}

.navbar-list li:hover {
  color: #A09878;
}

.active {
  color: #888166;
  font-weight: 600;
}


/* Burger pour mobile */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.burger span {
  width: 25px;
  height: 3px;
  background: #2D2D2D;
  border-radius: 2px;
}

/* ---------------- HERO ---------------- */
.hero {
  position: relative;
  height: 90vh;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: white;
}

.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.hero p {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: auto;
}

.hero-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 3rem;
  background-color: #BF5B5E;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 50px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-btn:hover {
  background-color: #8f3f42;
  transform: scale(1.05);
}

/* --- HERO plus petit pour les pages secondaires --- */
.small-hero {
  height: 50vh;
}
.small-hero .hero-content h1 {
  font-size: 2.5rem;
}

/* ---------------- RESPONSIVE ---------------- */
@media (max-width: 992px) {
  .navbar {
    padding: 1em 2em;
  }
  .navbar-list {
    gap: 1.5em;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .navbar-list {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 1.5em;
    padding: 1.5em 2em;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .navbar-list.active {
    display: flex;
  }
  .burger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .hero-btn {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .navbar-logo {
    font-size: 3rem;
  }
  .hero {
    height: 80vh;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 0.9rem;
  }
}


/* ----- FOOTER ----- */
footer {
  background: #2D2D2D;
  color: white;
  text-align: center;
  padding: 1.5em;
  margin-top: auto;
}
footer a {
  color: #A09878;
  font-size: 0.9rem;
}
footer a:hover {
  text-decoration: underline;
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ----- BURGER ANIMATION ----- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}
.burger span {
  width: 28px;
  height: 3px;
  background: #2D2D2D;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation en croix */
.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu mobile */
@media (max-width: 768px) {
  .navbar-list {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2em;
    font-size: 1.2rem;
    transition: right 0.4s ease;
    box-shadow: -4px 0 15px rgba(0,0,0,0.1);
  }
  .navbar-list.active {
    right: 0;
  }
  .burger {
    display: flex;
  }
}


