@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(132deg, #fff 0%, #f9f9f9 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  color: #bfa14c; /* doré doux */
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

label {
  color: #333;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
  margin-bottom: 20px;
  background: #fafafa;
  transition: all 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  border-color: #bfa14c;
  outline: none;
  background: #fff;
}

input[type="submit"] {
  background: #bfa14c;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 14px;
  width: 100%;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s ease;
}

input[type="submit"]:hover {
  background: #a88f3a;
}




/* ==== NAVBAR STYLES ==== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  height: 90px;
  padding: 0 3%;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  color: #222;
}

.logo img {
  height: 50px;
  margin-right: 10px;
}

/* ==== MENU ==== */

.menu {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu li {
  margin-left: 40px;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 16px;
}

/* ==== BURGER MENU ==== */

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #333;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* insta logo */

.social-icons {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 30px;
  margin-top: 32px;
  float: right;
}

.social-icons img {
  width: 34px;
  height: 34px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  /* filter: brightness(0) invert(1); rend les logos blancs si fond sombre */
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 0.75;
}

/* ==== RESPONSIVE ==== */

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }

  .menu li {
    margin: 15px 0;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}
