@media (min-width: 1200px) {
  .showcase-area {
    height: 70vh;
    background: linear-gradient(rgba(240, 240, 240, 0.144),
        rgba(255, 255, 255, 0.336)),
      url("https://img.freepik.com/photos-gratuite/personne-au-bureau-pendant-journee-travail_23-2150690165.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 1rem;
    text-align: center;
  }

  .showcase-area h1 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 3.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .showcase-area p {
    font-size: 2.5rem;
    color: rgb(10, 15, 171);
    line-height: 1.5;
    text-align: center;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }

    to {
      opacity: 3;
      transform: translateY(0);
    }
  }

  .showcase-container {
    animation: fadeInUp 1.2s ease-out forwards;
  }
.category-card {
  display: grid;
  grid-template-areas:
    "image title"
    "image text"
    "image button";
    overflow: hidden;
    border: rgb(14, 15, 15) solid 1px;
    margin: 2em 0.5em;
    padding: 1em 2;
    border-radius: 8px;
    
}
.category-card img {
  width: 300px;
  height: 250px;
  grid-area: image;
}
.category-card h3 {
  grid-area: title;
  margin: 0.5em 0.5em 0 0.5em;
  font-size: 1.2rem;
  text-align: center;
}
.category-card p {
  grid-area: text;
  font-size: 1.2rem;
  margin: 0.5em 0.5em 0 0.5em;
}
.category-card .btn {
  grid-area: button;
  margin: 1em 0;
  
}





.categories-container, .catalogue-coiffure {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
}
#catalogue-coiffure,#catalogue-menuiserie {
    justify-content: flex-start;
    gap: 32px;
    padding: 40px;
  }

  .card {
    width: 300px;
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }

  .category-logo {
    width: 300px;
    height: 200px;
    margin-bottom: 16px;
  }

  .card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 1em;
    margin-bottom: 14px;
  }

  #price {
    font-size: 1.05em;
    margin-bottom: 12px;
  }

  .open-modal {
    font-size: 1em;
    padding: 12px 20px;
  }
  .card:hover {
    transform: translateY(-8px);
  }
  }
