/* === HEADER MODERNE ET ÉPURÉ === */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&display=swap');

.new-header {
  background-color: white;
  border-bottom: 1px solid #ccc;
  padding: 1.2rem 0;
  font-family: 'Playfair Display', serif;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo img {
  height: 50px;
}

.main-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #0077b6;
}

.search-box form {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 0.3rem 0.8rem;
  background-color: #f1f1f1;
}

.search-box input {
  border: none;
  background: transparent;
  padding: 0.4rem 0.6rem;
  outline: none;
  font-family: inherit;
  font-size: 0.95rem;
}

.search-box button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}
