* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Outfit', sans-serif;
    background-color: #f8f8f8;
    color: #333;
  }
  h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
  }
  
  /* Navbar */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4%;
    background-color: rgba(255, 255, 255, 0.95);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .logo {
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
    color: #111;
     display: flex;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  
  .nav-links li {
    position: relative;
  }
  
  .nav-links a {
    color: #111;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem;
    transition: 0.3s;
  }
  
  .nav-links a:hover {
    color: #8ca977;
  }
  
  .nav-links li ul {
    display: none;
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links li:hover ul {
    display: block;
  }
  
  .nav-links li ul li a {
    padding: 0.5rem 1rem;
    display: block;
  }
  
  .btn-reserver {
    background-color: #8ca977;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-weight: 500;
  }
  .custom-caption {
    bottom: 20px;
    left: 20px;
    right: auto;
    text-align: left;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 1.5rem;
    border-radius: 8px;
  }
  
  .custom-caption h5 {
    color: #fff;
    font-family: 'DM Serif Display', serif;
    font-size: 1.4rem;
    margin: 0;
  }
    
  /* Footer */
  footer {
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
  }
  
  .footer-links {
    margin-top: 1rem;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 1rem;
    font-weight: 300;
  }
  
  .footer-links a:hover {
    text-decoration: underline;
  }
  
  .reve {
    background-color: #fdfbf7;
    padding: 4rem 2rem;
  }
  
  .flex-reve {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .texte-reve {
    flex: 1 1 47%;
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
  }
  
  .texte-reve h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #533621;
  }
  
  .photos-reve {
    flex: 1 1 47%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  
  .photos-reve img {
    width: 100%;
    height: 220px; /* plus grandes */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .photos-reve img:hover {
    transform: scale(1.03);
  }
  
  /* Responsive */
  @media (max-width: 992px) {
    .flex-reve {
      flex-direction: column;
    }
  
    .texte-reve, .photos-reve {
      flex: 1 1 100%;
    }
  
    .photos-reve {
      grid-template-columns: 1fr;
    }
  
    .photos-reve img {
      height: 200px;
    }
  }
  .footer-hille {
    background-color: #f2f2f2;
    padding: 40px 0;
    font-family: 'Georgia', serif;
    color: #222;
  }
  
  .container-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-column {
    flex: 1 1 200px;
    margin: 20px;
  }
  
  .footer-column h4 {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.2em;
    color: #111;
  }
  
  .footer-column p,
  .footer-column strong {
    color: #333;
    font-size: 0.95em;
    line-height: 1.4em;
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 0.9em;
    color: #444;
    border-top: 1px solid #ccc;
  }
  
  .footer-bottom a {
    color: #444;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  .logo-footer.stylized-logo {
    width: 100px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 10px;
    transition: transform 0.3s ease;
  }
  
  .logo-footer.stylized-logo:hover {
    transform: scale(1.05) rotate(-1deg);
  }
  
  .social-icons img {
    width: 26px;
    margin-right: 12px;
    transition: transform 0.3s ease;
    vertical-align: middle;
  }
  
  .social-icons img:hover {
    transform: scale(1.2);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .container-footer {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-column {
      flex: 1 1 100%;
      margin: 10px 0;
    }
  }
  .btn-reve {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #8ca977;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .btn-reve:hover {
    background-color: #739361;
  }
  .hero-mariage {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }
  
  .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
  }
  
  .hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
  }
  
  .hero-overlay h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
  }
  
  .hero-overlay p {
    font-size: 18px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.5);
  }
  
  /* Section formules */
  .formules-mariage {
    background-color: #fdfbf7;
    padding: 4rem 1rem;
    text-align: center;
  }
  
  .formules-mariage h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #533621;
  }
  
  .formules-mariage .texte-reve {
    text-align: left;
    padding: 2rem;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 12px;
    margin: 1rem;
    flex: 1 1 30%;
  }
  .formules-mariage .formules-bloc {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
  
  .cta-contact {
    text-align: center;
    margin: 3rem 0;
  }
  .btn-cta-contact {
    display: inline-block;
    margin-top: 1.5rem;
    background-color: #8ca977;
    color: white;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }
  
  .btn-cta-contact:hover {
    background-color: #739361;
  }
  @media (max-width: 768px) {

    /* Section HERO */
    .hero-mariage {
      height: 400px;
    }
  
    .hero-overlay {
      padding: 1rem;
    }
  
    .hero-overlay h1 {
      font-size: 1.8rem;
    }
  
    .hero-overlay p {
      font-size: 1rem;
    }
  
    /* Section RÊVE */
    .flex-reve {
      flex-direction: column;
      padding: 0 1rem;
    }
  
    .texte-reve,
    .photos-reve {
      width: 100%;
      padding: 1rem;
    }
  
    .texte-reve h2 {
      font-size: 1.6rem;
      text-align: center;
    }
  
    .texte-reve p {
      font-size: 0.95rem;
      text-align: justify;
    }
  
    .photos-reve {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
  
    .photos-reve img {
      height: 180px;
    }
  
    .btn-reve {
      font-size: 0.95rem;
      padding: 0.6rem 1.2rem;
      margin: 1rem auto 0;
      display: block;
    }
  
    /* Section FORMULES */
    .formules-bloc {
      flex-direction: column;
    }
  
    .formules-mariage .texte-reve {
      width: 100%;
      text-align: center;
    }
  
    .formules-mariage h2 {
      font-size: 2rem;
    }
  
    .texte-reve h3 {
      font-size: 1.3rem;
    }
  
    /* Footer déjà responsive mais renforcement */
    .footer-hille {
      padding: 2rem 1rem;
    }
  
    .footer-column {
      text-align: center;
      margin-bottom: 2rem;
    }
  
    .footer-bottom {
      font-size: 0.85rem;
    }
  
    .logo-footer {
      width: 80px;
    }
  }
  .logo a {
    color: #111 !important;
    text-decoration: none !important;
    font-family: 'DM Serif Display', serif;
    font-size: 1.8rem;
  }