/*
Theme Name: Blocksy Child
Template: blocksy
Version: 1.0
*/
.home-fiselerie {
  background: #ffffff;
}

.hero-fiselerie {
  min-height: 680px;
  background: linear-gradient(rgba(18, 59, 67, 0.55), rgba(18, 59, 67, 0.55)),
    url('/wp-content/uploads/hero-fiselerie.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: clamp(48px, 8vw, 96px);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-content p {
  color: #ffffff;
  font-size: 26px;
  margin-bottom: 35px;
}

.hero-button {
  background: #F47C20;
  color: #ffffff;
  padding: 15px 32px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 700;
}
.agenda-home {
  padding: 90px 20px;
  background: #ffffff;
}

.agenda-home .container {
  max-width: 1200px;
  margin: 0 auto;
}

.agenda-home h2 {
  font-size: clamp(36px, 5vw, 56px);
  color: #123B43;
  margin-bottom: 20px;
}

.agenda-home p {
  font-size: 20px;
  color: #333333;
}
.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.agenda-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    transition: .3s;
}

.agenda-card:hover {
    transform: translateY(-5px);
}

.agenda-date {
    color: #2E8B8F;
    font-weight: 700;
}

.agenda-heure {
    color: #666;
    margin-bottom: 10px;
}

.agenda-lieu {
    margin: 15px 0;
}

.agenda-tarif {
    font-weight: bold;
    color: #F47C20;
}

.agenda-button {
    display: inline-block;
    margin-top: 20px;
    background: #F47C20;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
}