*{
    padding:0;
    margin:0;
}

html{
    scrollbar-width: none;
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: 'Playfair Display', serif;
    background-color: #f8f1e7;
    color: #1c1c1c;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    border-bottom: 1px solid #e0dcd5;
  }

  header nav a {
    margin: 0 1rem;
    text-decoration: none;
    color: #1c1c1c;
    font-weight: 500;
  }

  .hero {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-image: url(Les4.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: 25%;

  }

  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #1c1c1c;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.2s ease;
    text-decoration: none;
    color:#1c1c1c;
  }

  .btn:hover {
    background-color: #1c1c1c;
    color: white;
  }

  .section-art {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8rem 8%;
    margin:auto;
    width: 1100px;
  }
  
  .text-content {
    max-width: 40%;
  }
  
  .text-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5rem;
  }
  
  .text-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #333;
  }
  
  .btn-outline {
    padding: 0.75rem 1.5rem;
    border: 1.5px solid #000;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    color: #000;
    transition: all 0.3s ease;
  }
  
  .btn-outline:hover {
    background-color: #000;
    color: #fff;
  }
  
  .image-wrapper {
    position: relative;
    flex: 1;
    max-width: 500px;
  }
  
  .rhum-image {
    width: 100%;
    border-radius: 20px;
    display: block;
  }
  
  .overlay-box {
    position: absolute;
    bottom: 20px;
    left: -30px;
    background-color: #1c1f23;
    color: white;
    display: flex;
    gap: 2rem;
    padding: 1.5rem 2rem;
    border-radius: 10px;
  }
  
  .stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  .stat p {
    margin: 0;
    font-size: 0.9rem;
  }

/* Ton code de base reste identique jusqu'ici */

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
    .section-art {
        flex-direction: column;
        align-items: flex-start;
        width: 90%;
        padding: 3rem 1.5rem;
    }
  
    .text-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
  
    .image-wrapper {
        max-width: 100%;
    }
  
    .overlay-box {
        position: static;
        margin-top: 1rem;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        border-radius: 8px;
        box-sizing: border-box;
    }
  
    .overlay-box .stat {
        text-align: left;
    }
    
    .image-box {
        width: 100%;
      }
      
  }
  
  @media (max-width: 768px) {
    .hero {
      height: auto;
      padding: 4rem 1rem;
      background-position: center;
    }
  
    .hero h1 {
      font-size: 2rem;
    }
  
    .hero p {
      font-size: 1rem;
    }
  
    .btn, .btn-outline {
      font-size: 0.9rem;
      padding: 0.6rem 1.2rem;
    }
  
    .text-content h2 {
      font-size: 2rem;
    }
  
    .text-content p {
      font-size: 0.95rem;
    }
  
    .stat span {
      font-size: 1.4rem;
    }
  
    .stat p {
      font-size: 0.85rem;
    }
  }
  .nos-rhums-snap {
    padding: 8rem 8%;
    background-color: #f3ebe2;
    text-align: center;
  }
  
  .nos-rhums-snap h2 {
    font-size: 2.5rem;
    margin-bottom: 5rem;
    font-weight: 700;
  }
  
  .snap-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 1rem;
  
    /* Masquer la scrollbar */
    scrollbar-width: none; /* Firefox */
  }
  .snap-container::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }
  
  .rhum-card {
    scroll-snap-align: center;
    flex: 0 0 80%;
    max-width: 400px;
    margin: 0 auto;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  
  .rhum-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .rhum-info {
    padding: 1.5rem;
    text-align: left;
  }
  
  .rhum-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .rhum-info p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 1rem;
  }
  .savoir-faire {
    padding: 2rem 8% 5rem 8%;
    background-color: #fff;
    text-align: center;
  }
  
  .savoir-faire h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
  }
  
  .savoir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
  }
  
  .savoir-item {
    padding: 2rem;
    background-color: #f8f1e7;
    border-radius: 15px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .savoir-item:hover {
    transform: translateY(-5px);
  }
  
  .savoir-item img {
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .savoir-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .savoir-item p {
    font-size: 0.95rem;
    color: #444;
  }
  .footer {
    background-color: #1c1c1c;
    color: #f8f1e7;
    padding: 4rem 8% 2rem;
    font-size: 0.95rem;
  }
  
  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  
  .footer-brand h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #f8f1e7;
    transition: opacity 0.2s ease;
  }
  
  .footer-links a:hover {
    opacity: 0.7;
  }
  
  .footer-contact p {
    margin-bottom: 1rem;
  }
  
  .footer-socials a {
    margin-right: 1rem;
    color: #f8f1e7;
    transition: color 0.2s ease;
  }
  
  .footer-socials a:hover {
    color: #e0dcd5;
  }
  
  .footer-socials i {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
  }
  
  .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
  }
  

  .fiche-container {
    padding: 4rem 8%;
    max-width: 900px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.8;
  }
  
  .fiche-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .fiche-image {
    max-width: 300px;
    border-radius: 20px;
    margin-bottom: 2rem;
  }
  
  .fiche-titre h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }
  
  .fiche-details h2, .fiche-details h3 {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  
  .fiche-details ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 0.5rem;
  }
  
  blockquote {
    font-style: italic;
    background-color: #f3ebe2;
    padding: 1rem 1.5rem;
    border-left: 4px solid #1c1c1c;
    margin-top: 1rem;
    border-radius: 5px;
  }
  
  .fiche-details img {
    float: right;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin:10px;
  }
  .newsletter-form {
    margin-top: 2rem;
    text-align: center;
  }
  
  .newsletter-form input {
    padding: 0.5rem 1rem;
    border: 2px solid #f8f1e7;
    border-radius: 10px;
    margin-right: 0.5rem;
    font-family: 'Playfair Display', serif;
  }
  .newsletter-form input:active{
    border:none;
  }
  
  .newsletter-form button {
    background-color: #ffffff;
    color: #1c1c1c;
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Playfair Display', serif;
    border: 2px solid #f8f1e7;
  }
  .newsletter-form button:hover{
    background-color: #f8f1e7;
    color:#1c1c1c;
    transform: scale(1.05);
  }
  .login-adminpage{
    background-color: #fff;
  }
  .login-adminpage .login-form{
    background-color: #000;
    height: 100vh;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .login-form .connexion{
    display: flex;
    flex-direction: column;
    gap:15px;
  }