/* 1. Import de la police personnalisée */
@font-face {
  font-family: 'Satisfy';
  src: url('fonts/Satisfy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

html {
  height: 100%;
  margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fffacd; /* jaune pâle uni */
  overflow-x: hidden;
}

.header, footer {
  position: fixed;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: center; /* centre le conteneur interne */
  align-items: center;
  background: #000;
  color: #fff;
  padding: 0;
  z-index: 1000;
}

.header {
  top: 0;
  height: 80px; /* fixe une hauteur claire */
}

footer {
  bottom: 0;
  height: 80px;
}

.headfoot-container {
  width: 100%;
  max-width: 1200px;
  display: flex; /* remet flex pour l’intérieur */
  justify-content: space-between;
  align-items: center;
  padding: 0 20px; /* espace intérieur à gauche/droite */
  box-sizing: border-box;
}

.header-left {
  flex: 0 1 auto;
}

.header-left img {
  max-height: 50px;
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;     /* évite les espaces fantômes inline */
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-right a {
  color: #fff;
  text-decoration: none;
  font-family: 'Calibri', sans-serif;
  font-size: 1rem;
}

.main-content {
  margin-top: 80px;    /* compense la hauteur du header */
  margin-bottom: 200px; /* compense la hauteur du footer */
  flex: 1 0 auto;
  width: 100%;
  max-width: 1200px;
  padding: 20px;
  box-sizing: border-box;
}

h1 {
  font-family: 'Satisfy', cursive;
  font-weight: 300;
  margin: 20px 0 40px;
  color: #444;
  font-size: clamp(2rem, 5vw, 4rem); /* taille responsive */
  text-align: center;
}

.h1bis {
  font-family: 'Satisfy', cursive;
  font-weight: 300;
  margin: 5px 0 20px;
  color: #444;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.maj {
  font-size: clamp(0.6rem, 2.2vw, 1.2rem);
  color: #333333;
  font-family: 'Calibri', sans-serif;
  line-height: 1.2;
  padding-top: 0px;
  padding-bottom: 20px;
  text-align: center;
}

h2 {
  font-family: 'Calibri', sans-serif;
  margin: 30px 0 20px;
  color: #555;
  font-size: clamp(1rem, 2.5vw, 1.6rem);
}

h3 {
  font-family: 'Calibri', sans-serif;
  margin: 30px 0 20px;
  color: #555;
  font-size: clamp(1rem, 2.0vw, 1.2rem);
}

.texte {
  font-size: clamp(0.8rem, 2.5vw, 1.4rem);
  color: #333333;
  font-family: 'Calibri', sans-serif;
  line-height: 1.2;
  padding-top: 100px;
  padding-bottom: 100px;
  text-align: justify;
}

.texte-a {
  font-size: clamp(1.2rem, 5vw, 2rem);
  font-weight: 500;
  color: #000000;
  font-family: 'Satisfy', cursive;
  line-height: 1.6;
  margin: 24px 0;
}

.image-row {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 30px;
}

.image-block {
  width: 30%;
  text-align: center;
  margin-bottom: 20px;
}

.image-block img {
  height: 100px;
  width: auto;
  display: block;
  margin: 0 auto;
}

.image-block p {
  text-align: left;
  padding: 0 10px;
}

.footer-left {
  font-family: 'Calibri', sans-serif;
  font-size: 0.9rem;
}

.footer-right img {
  height: 40px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .image-block {
    width: 45%;
  }
}

@media (max-width: 480px) {
  .image-block {
    width: 100%;
  }
}

.menu-container {
  width: 50%;
  max-width: 500px;
  position: relative;
  margin: 0 auto;
}

.circle-container {
  position: relative;
  width: 100%;
  padding-top: 100%;
}

.circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  transition: transform 1s ease, opacity 1s ease;
}

.buttons {
  position: absolute;
  top: -2%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}

.btn-img {
  display: block;
  width: 30%;
  padding-top: 30%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, opacity 0.5s ease;
}

.btn-img:hover {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .menu-container {
    width: 80%;
  }

  .buttons {
    width: 90%;
  }

  .btn-img {
    width: 24%;
    padding-top: 24%;
  }
}

@media (max-width: 600px) {
  .btn-img {
    width: 30%;
    padding-top: 30%;
  }
}

.intro-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, #faf3e0 0%, #f5f5dc 30%, #d4af37 90%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#intro-logo {
  width: 300px;
  opacity: 0;
  transition: opacity 1s ease;
  margin-bottom: 20px;
}

#intro-text {
  display: block;
  font-family: 'Satisfy', cursive;
  font-size: 60px;
  color: #333;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
}

.page-container {
  transform: translateY(20px);
}

.page-container.visible {
  transform: translateY(0);
}

	@keyframes zoom-in-out {
	  0% {
		transform: scale(1);
	  }
	  50% {
		transform: scale(1.1);
	  }
	  100% {
		transform: scale(1);
	  }
	}

	.logo-animated {
	  animation: zoom-in-out 3s infinite ease-in-out;
	  display: inline-block;
	}

/* Styles pour le formulaire de contact */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Calibri', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #d4af37; /* doré léger */
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form button {
  padding: 12px;
  font-size: 1rem;
  font-family: 'Calibri', sans-serif;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.contact-form button:hover {
  background-color: #d4af37; /* doré au survol */
  color: #000;               /* noir sur fond doré */
  transform: translateY(-2px);
}

.contact-form select {
  padding: 12px 15px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: 'Calibri', sans-serif;
  background-color: #fff;
  color: #333;
  appearance: none; /* enlève le style natif */
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg width='10' height='7' viewBox='0 0 10 7' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23333' stroke-width='2' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form select:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 5px rgba(212, 175, 55, 0.6);
}