:root {
  --beige: #f5e9d8;
  --rouge: #c42c2c;
  --rouge-foncé: #8a1e1e;
  --blanc: #fff;
  --gris: #e0d6c9;
}

.hero .navbar {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.navbar-item {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--rouge-foncé) !important;
  font-weight: bold;
  letter-spacing: 1px;
}

.navbar-item button {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--rouge-foncé) !important;
  font-weight: bold;
  letter-spacing: 1px;
}

#section1 {
  background: url("media/banner.png") no-repeat 33% / auto 100%;
  background-color: #f8f8f8;
}

.hero-body {
  background-color: #f8f8f8;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}






    .tarte {
      background: var(--blanc);
      border-radius: 12px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
      padding: 1.5rem;
      transition: transform 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .tarte h3 {
      color: var(--rouge-foncé);
      margin-bottom: 0.5rem;
      font-size: 1.3rem;
    }

    .tarte p {
      color: #666;
      font-style: italic;
      margin-top: auto;
    }

    .tarte img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 1rem;
    }

    .location {
      background: var(--gris);
      padding: 2rem;
      border-radius: 12px;
      margin-top: 3rem;
      text-align: center;
      font-size: 1.1rem;
    }

    .location strong {
      color: var(--rouge);
      font-weight: bold;
    }

    .hours {
      background: var(--blanc);
      padding: 1.5rem;
      border-radius: 12px;
      margin-top: 2rem;
      box-shadow: 0 4px 8px rgba(0,0,0,0.08);
    }

    .hours table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 1rem;
    }

    .hours th, .hours td {
      padding: 0.5rem;
      text-align: left;
      border-bottom: 1px solid var(--gris);
    }

    .hours th {
      color: var(--rouge-foncé);
      font-weight: bold;
    }

    @media (max-width: 768px) {
      .tarte {
        width: 100%;
      }
    }
