/* Reset basique */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #3E2723;
  background: #F5F0EC;
  line-height: 1.6;
}

/* Header desktop */
.site-header {
  background: transparent;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 10;
  gap: 2rem;
}

.instagram-logo {
  color: #3E2723;
  text-decoration: none;
  position: absolute;
  left: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.maps-logo {
  color: #3E2723;
  text-decoration: none;
  position: absolute;
  left: 6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-list li a {
  text-decoration: none;
  color: #3E2723;
  font-weight: 500;
  font-size: 1rem;
}

/* Hero */
.hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url('hero-bg.jpg');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(62, 39, 35, 0.5);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Logo central */
.logo-central {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 9rem;
  margin-bottom: 0.3rem;
}

/* Motto */
.motto-central {
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #F5F0EC;
}

/* Hero-sub */
.hero-sub {
  font-size: 1.35rem;
  margin-top: 0;
  color: #F5F0EC;
}

/* Sections */
.section {
  padding: 3rem 1rem;
  text-align: center;
}

.section.alt {
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Galerie */
.gallery {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.photo {
  flex: 1;
  min-width: 200px;
  height: 120px;
  border-radius: 8px;
}

/* Formulaire */
form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  max-width: 300px;
  margin: auto;
  font-size: 0.9rem;
}

form input, form textarea {
  padding: 0.4rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  font-size: 0.9rem;
}

button {
  padding: 0.5rem 0.8rem;
  background: #3E2723;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #F5F0EC;
  font-size: 0.9rem;
}

/* Responsive */
@media(max-width:768px){
  .logo-central {
    font-size: 5.5rem;
    margin-bottom: 0.2rem;
  }

  .motto-central {
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .gallery {
    flex-direction: column;
  }

  /* Header responsive */
  .site-header {
    justify-content: space-between;
    padding: 1rem 1.5rem;
    gap: 0;
  }

  .instagram-logo {
    left: 0;
    font-size: 0.9rem;
    position: relative;
  }

  .maps-logo {
    left: 1rem;
    font-size: 0.9rem;
    position: relative;
  }

  .nav-list {
    margin-left: auto;
    flex-wrap: wrap;
    gap: 0.4rem;
  }

  .nav-list li a {
    font-size: 0.75rem;
  }

  form {
    max-width: 100%;
  }
}

/* Images responsives */
img {
  max-width: 100%;
  height: auto;
}
