* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: Arial, sans-serif;
}

a {
  text-decoration: none;
  color: #b5b3b3;
}

.btn-dark {
  display: inline-block;
  background-color: black;
  color: white;
  padding: 12px 25px;
  margin-bottom: 10px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

.btn-dark:hover {
  background-color: #333;
}

.logo-header {
  width: 100px;
  height: auto;
}

header {
  background-color: black;
  position: sticky;
  top: 0;
  z-index: 10;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

.navbar .navbar-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  margin: 0 15px;
}
.navbar .nav-button-basket img {
  width: 25px;
  color: aliceblue;
  cursor: pointer;
}
.navbar p {
  color: white;
}
.navbar .nav-logo img {
  width: 50px;
  display: inline-block;
}
.navbar .nav-menu {
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background-color: black;
  list-style: none;
  padding: 0;
  height: 100vh;
  z-index: 2;
  opacity: 0.89;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-270%);
  transition: all 0.4s ease;
}
.navbar .nav-menu.show {
  transform: translateY(0);
}
.navbar .nav-menu .nav-item {
  padding: 1.05rem;
  display: flex;
  justify-content: center;
}
.navbar .nav-menu .nav-item:hover {
  width: 100%;
}
.navbar a {
  font-size: 1.5rem;
}
.navbar .nav-button {
  cursor: pointer;
  width: 25px;
}

.header_img img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}

@media (min-width: 769px) {
  .navbar .nav-logo img {
    width: 150px;
  }
  .navbar .nav-menu {
    top: 150px;
  }
  .navbar .nav-menu .nav-item {
    padding: 1.3rem;
  }
}
footer {
  background-color: #000000;
  color: #fff;
  padding: 30px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.logo-footer {
  width: 120px;
  height: auto;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer-nav::before {
  display: none;
}

.footer-nav div a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.9rem;
  display: block;
  text-align: center;
}

.footer-nav div a:hover {
  color: #fff;
}

.footer-contact::before {
  display: none;
}

.footer-contact p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.9;
  margin: 0;
  text-align: center;
}

.footer-social-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-social-col > p {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
}

.social-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.social-links img {
  filter: brightness(0) invert(1);
  transition: opacity 0.2s;
}

.social-links a:hover img {
  opacity: 0.7;
}

.separator {
  width: 100%;
  border: none;
  border-top: 1px solid #333;
  margin: 8px 0;
}

.legal {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-copy {
  text-align: center;
  color: #888;
  font-size: 0.8rem;
  padding-bottom: 20px;
  margin: 0;
  width: 100%;
}

/* ===== FOOTER PC ===== */
@media (min-width: 769px) {
  footer {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 80px 0;
    gap: 40px;
  }
  .logo-footer {
    width: 160px;
  }
  .footer-nav {
    align-items: flex-start;
    gap: 10px;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-nav::before {
    display: block;
    content: "NAVIGATION";
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 8px;
  }
  .footer-nav div a {
    text-align: left;
  }
  .footer-contact::before {
    display: block;
    content: "CONTACT";
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    margin-bottom: 14px;
  }
  .footer-contact p {
    text-align: center;
  }
  .footer-social-col {
    align-items: flex-start;
  }
  .footer-social-col > p {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  .separator {
    margin: 0;
  }
  .legal {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }
  .footer-copy {
    padding-bottom: 24px;
    text-align: center;
    width: 100%;
  }
}
.produits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  padding: 2rem;
}

.card {
  background: #d9d9d9;
  border: 2px solid black;
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.card h3 {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0;
}
.card p {
  font-size: 0.9rem;
  margin: 0;
}
.card .btn-dark {
  width: 100%;
  text-align: center;
}

.produit-show {
  display: flex;
  justify-content: center;
  padding: 2rem;
}
.produit-show .card {
  max-width: 500px;
  width: 100%;
}
.produit-show .card img {
  height: 350px;
  object-fit: contain;
}

@media (max-width: 768px) {
  .produits {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
}
.contact-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 100%;
  max-width: 700px;
  background: #d9d9d9;
  border: 2px solid black;
  border-radius: 12px;
  padding: 2rem;
}

.contact-container h2 {
  text-align: center;
  margin-bottom: 50px;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 25px;
}

.name-row {
  display: flex;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid black;
  background-color: white;
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-form textarea {
  resize: none;
}

.contact-form button {
  margin-top: 40px;
  padding: 15px;
  background-color: black;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.contact-form button:hover {
  opacity: 0.8;
}

.cours-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  padding: 2rem;
}

.cours-card {
  border: 2px solid black;
  border-radius: 12px;
  padding: 1.5rem;
  background: #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cours-titre {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
}

.cours-age {
  color: gray;
  font-size: 0.9rem;
  margin: 0;
}

.cours-accroche {
  font-style: italic;
  margin: 0;
}

.cours-desc {
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.cours-points {
  font-size: 0.9rem;
  padding-left: 1.2rem;
  line-height: 1.8;
  margin: 0;
}

.cours-card .btn-dark {
  margin-top: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .cours-grid {
    grid-template-columns: 1fr;
    padding: 1rem;
  }
  .cours-card {
    width: 100%;
  }
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding: 2rem;
}

.tarif-card {
  border: 2px solid black;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  background: #d9d9d9;
}

.tarif-titre {
  font-size: 1.2rem;
  font-weight: bold;
}

.tarif-age {
  color: gray;
  font-size: 0.9rem;
}

.tarif-prix {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0.5rem 0;
}

.tarif-detail {
  font-size: 0.85rem;
  color: gray;
}

.panier-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

.panier-table th, .panier-table td {
  border: 1px solid #ddd;
  padding: 15px 20px;
  text-align: center;
}

.panier-table th {
  background-color: #f9f9f9;
  font-size: 16px;
}

.panier-table td img {
  max-width: 120px;
  height: auto;
  border-radius: 8px;
}

/* RESERVATION */
.reservations-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.reservations-container h2 {
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  border-bottom: 3px solid #1a1a1a;
  padding-bottom: 10px;
}

.reservations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.reservation-card {
  background-color: #fff;
  border: 2px solid #1a1a1a;
  border-radius: 8px;
  overflow: hidden;
}

.reservation-card-header {
  background-color: #000000;
  color: #fff;
  padding: 14px 20px;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-card-body {
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.reservation-card-body p {
  margin: 0;
  font-size: 0.95rem;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 8px;
}

.reservation-card-body p span.label {
  font-weight: 700;
  min-width: 70px;
}

.reservation-card-footer {
  padding: 12px 20px;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.statut {
  display: inline-block;
  padding: 4px 12px;
  background-color: #000000;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.btn-retour {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 8px;
}

.no-reservation {
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

.btn-annuler {
  padding: 4px 12px;
  background-color: #fff;
  color: #000000;
  border: 2px solid #1a1a1a;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
}

.btn-annuler:hover {
  background-color: #1a1a1a;
  color: #fff;
}

.profil-container {
  max-width: 600px;
  margin: 60px auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.profil-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.profil-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
}

.profil-email {
  color: #888;
  font-size: 0.9rem;
  margin: 0;
}

.profil-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
}

.profil-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 16px;
  background-color: #111;
  border: 1px solid #222;
  border-radius: 12px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.2s, border-color 0.2s;
}
.profil-card:hover {
  background-color: #1a1a1a;
  border-color: #444;
}
.profil-card--admin {
  grid-column: 1/-1;
  background-color: #1a0000;
  border-color: #4a0000;
}
.profil-card--admin:hover {
  background-color: #220000;
}

.profil-card-icon {
  font-size: 2rem;
}

.profil-card-label {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/*# sourceMappingURL=app.output.css.map */
