:root {
  --primary-color: #f79995;
  --secondary-color: #cd5c5c;
  --light-color: #f1caca;
  --dark-color: #802e2e;

  --font-title: 'Inknut Antiqua', serif;
  --font-text: 'Inria Sans', sans-serif;
  --font-link: 'Inria Serif', serif;
}

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

html, body {
  min-height: 100%;
  font-family: var(--font-text);
  background: linear-gradient(to bottom, #FFF9F4, #f1caca, #f79995);
  color: var(--dark-color);
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  border-bottom: 1px solid var(--secondary-color);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 80px;
}

.logo h1 {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--dark-color);
}

.logo p {
  font-size: 0.8rem;
  color: var(--secondary-color);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav a {
  text-decoration: none;
  font-family: var(--font-link);
  color: var(--dark-color);
  font-weight: bold;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--secondary-color);
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 120px); /* hauteur de la fenêtre moins la hauteur du header */
  padding: 20px;
  gap: 30px;
  margin-top: 40px;
}
.contact-all {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.contact-container {
    background: #fff;
    padding: 30px 40px;
      max-width: 800px;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0,0,0,0.1);
      text-align: center;
      border: 2px solid var(--light-color);
    }
    .contact-zone {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: var(--dark-color);
  font-style: italic;
  line-height: 1.5;
}
    .carte img {
      width: 100%;
      max-width: 500px;
      border-radius: 10px;
      margin-bottom: 20px;
    }
    .image {
  max-width: 250px;
  border-radius: 10px;
}

    .contact-container h1, h2 {
        font-family: var(--font-title);
      margin-bottom: 15px;
      color: var(--secondary-color);
    }
    .contact-container p {
        font-family: var(--font-text);
      font-size: 1.1rem;
      margin-bottom: 25px;
      font-size: 30px;
      font-style: italic;
      color: var(--dark-color);
    }
    .contact-infos {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  align-items: flex-start;
  height: 100%;
  font-size: 20px;
}
    .contact-link {
      color: var(--dark-color);
      text-decoration: none;
      transition: color 0.3s ease;
    }
    .contact-link:hover {
      color: var(--dark-color);
      text-decoration: underline;
    }

    .social-link {
      display: inline-flex;
      align-items: center;
      margin-top: 20px;
      font-weight: 600;
      color: var(--dark-color);
      text-decoration: none;
      font-size: 1.2rem;
      gap: 8px;
      transition: color 0.3s ease;
    }
    .social-link:hover {
      color: var(--dark-color);
    }
    .social-icon {
      width: 24px;
      height: 24px;
      color: var(--dark-color);
      transition: fill 0.3s ease;
    }
    .social-link:hover .social-icon {
      color: var(--dark-color);
    }

    footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: var(--dark-color);
  border-top: 1px solid var(--secondary-color);
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .contact-all {
    flex-direction: column;
    align-items: center;
  }
  .contact-infos {
    align-items: center;
    text-align: center;
  }
}
