.site-header {
    background: rgba(245, 240, 230, 1); 
    background-color: rgba(245, 240, 230, 1) ;
    color: black;
    min-height: 12vh; /* hauteur par défaut */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
  }

  .header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
  }

  .logo {
    height: 60px;
    border-radius: 8px;
  }

.title {
  font-size: 3vw;
  font-weight: bold;
  margin: 0.2em 0;   /* petit espace vertical maîtrisé */
  padding: 0;
  color: #2980b9;
  line-height: 1.2;  /* un peu plus d’air */
}



/* 📱 Ajustement mobile */
@media (max-width: 768px) {
  .site-header {
    min-height: auto; /* plus de contrainte */
    padding: 3px 8px; /* réduit les marges */
    height: auto;
  }
 
  .logo {
    height: 45px; /* logo plus petit */
  }

  .title {
    font-size: 36px;
    margin: 0.5em 0;
    line-height: 1.2;
  }
}


/* 📱 iPhone et petits écrans */
@media (max-width: 480px) {
  .title {
    font-size: 28px;   /* au lieu de 36px */
    .title {
  font-size: clamp(22px, 6vw, 36px);
}

    line-height: 1.1;
  }

  .logo {
    height: 40px;      /* logo un peu plus petit aussi */
  }

  .site-header {
    padding: 4px 6px;
  }
}



body{
	background-color:rgba(204, 186, 149, 1);
    /*background-color:rgba(250, 245, 235, 1);*/
	margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;       
}

nav {
    background: linear-gradient(135deg, #0891B2 0%, #1E40AF 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #FFD700;
}

nav ul {
    list-style: none;
    padding: 8px;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap; /* Les éléments passent à la ligne */
}



nav ul li a {
    text-decoration: none;
    color: white;
    padding: 16px 24px;
    display: block;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

nav ul li a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

/* Icône décorative */
nav ul li a::before {
    content: '⭐';
    margin-right: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

nav ul li a:hover::before {
    transform: rotate(72deg) scale(1.2);
}

.CaseFonda {
    margin-left: auto;
}

.CaseFonda a {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.CaseFonda a::before {
    content: '🔑';
}

.CaseFonda a:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.6);
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
}

/* Sur mobile, réduire la taille */
@media (max-width: 768px) {
    nav ul li a {
        padding: 12px 16px;
        font-size: 12px;
    }
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: black;
    color: white;
    text-align: left;
    padding-top: 1px;
    padding-bottom: 1px;
    height: auto;
    
    z-index: 999; /* Assurez-vous que le z-index est élevé pour s'assurer que le footer reste au-dessus du contenu */
}

  footer a {
    text-decoration: none;
    color: white;

  }
  footer a:hover {
    text-decoration: underline;
    
  }

  footer ul {

    list-style-type: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
}

footer ul li {
   margin-left: 20px;
    display: inline; /* Afficher les éléments en ligne */
    margin-right: 20px; /* Espace entre les éléments */
}

