/* Hero Section */
.hero {
    position: relative;
    height: 67vh;
    max-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    overflow: normal;
  }
  
  /* Collage Grid */
  .collage {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Flexible grid */
    gap: 0; /* Space between images */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }
  
  /* Collage Items */
  .collage-item {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #ccc; /* Placeholder background for missing images */
  }
  
  /* Images Inside Collage */
  .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proportional scaling */
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8; /* Slight transparency for aesthetic */
  }
  
  .collage-item img:hover {
    transform: scale(1.1); /* Zoom effect on hover */
    opacity: 1;
  }
  
  /* Hero Overlay */
  .hero-overlay {
    position: absolute;
    left: -10px;
    width: 820px;
    z-index: 2;
    text-align: center;
    color: #fff;

  }
  
  .hero-overlay h1 {
    font-size: 28pt;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
    background-color: #111111FE;
    padding: 5px;
    width: 820px;
  }
  
  .cta-button {
    background-color: #a82d00;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
  }
  
  .fiches {
    padding: 20px;
  }
  
  .fiche-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .fiche {
    background: #f9f9f9;
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 2px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    cursor: pointer;
  }
  
  .fiche:hover {
    transform: scale(1.05);
  }
  
  .fiche img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    margin-bottom: 10px;
  }
  
  .cta-subscribe {
    text-align: center;
    padding: 10px 20px 10px 20px;
    background: #222;
    color: #fff;
    width: 800px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  }