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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}

div.emiel > span:nth-child(1), /* emiel */
div.emiel > span:nth-child(3) {
  display: none;
}

a {
  color: #D4AF37; /* Doré */
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  border-bottom: 1px solid #e0e0e0;
  padding: 0.75rem 1.5rem;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.navbar {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrapper img {
  height: 52px;
  width: auto;
}

.site-title {
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.img-redim {
  width: 450px;
  height: auto;     /* auto pour garder les proportions */
  object-fit: cover;
}


main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.5rem;
}

/* Hero */

.hero {
  padding: 2.5rem 0 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.hero p.lead {
  font-size: 1.1rem;
  max-width: 40rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 2.5rem 0 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.hero-content {
  flex: 2;
  padding-right: 2rem;
}

.hero-card {
  flex: 1;
}

.hero-card .card {
  border: 1px solid #e0e0e0;
  padding: 1.25rem;
  background: #f9f9f9;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 1.5rem;
  }
}


/* Sections */

.section {
  padding: 2rem 0;
  border-bottom: 1px solid #e0e0e0;
}

.section h2 {
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section p,
.section li {
  font-size: 0.98rem;
  color: #222;
}

.section:last-child {
  border-bottom: none;
}

/* Grille simple */

.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 2rem;
}

/* Encadrés */

.card {
  border: 1px solid #e0e0e0;
  padding: 1.25rem;
  margin-bottom: 1rem;
}

/* News */

.news-article {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #e0e0e0;
  padding: 1.25rem 0;
}

.news-image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  overflow: hidden;
  margin-right: 1rem;
  border: 1px solid #e0e0e0;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  flex: 1;
}

.news-date {
  font-size: 0.85rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.news-title {
  font-size: 1.1rem;
  margin: 0.35rem 0 0.35rem 0;
}

.news-content p {
  font-size: 0.96rem;
}


/* Contact */

.contact-list {
  list-style: none;
}

.contact-list li + li {
  margin-top: 0.5rem;
}

.contact-social {
  display: flex;
  align-items: center;
  margin: 1.5rem 0;
}


.contact-social a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #D4AF37;
}

.contact-social a:hover {
  text-decoration: underline;
}

.social-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
  margin-right: 15px; /* Ajoute 15px d'espace à droite du logo */
}

.social-link {
  font-size: 1.1rem;
  text-align: center;
  flex: 1;
}

/* Footer */

footer {
  border-top: 1px solid #e0e0e0;
  padding: 1rem 1.5rem 1.5rem 1.5rem;
  font-size: 0.85rem;
  color: #666;
}

footer .footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* Responsive */

.menu-toggle {
  display: none;
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
    position: absolute;
    right: 1.5rem;
    top: 60px;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 0.75rem 1rem;
    flex-direction: column;
    gap: 0.75rem;
  }

  nav ul.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 1.6rem;
  }
}
