html, body {
  height: 100%;
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  background: #10131a url('assets/background.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff8e6;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* HEADER + NAV */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 18, 13, 0.74);
  padding: 18px 50px 18px 35px;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 4px 28px 0 #000a;
  backdrop-filter: blur(6px);
}
.logo { height: 56px; min-width: 42px; filter: drop-shadow(0 2px 12px #000a);}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0; padding: 0;
  flex-wrap: wrap;
}
nav a {
  color: #ffe39a;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: 1.09em;
  text-shadow: 0 2px 7px #0007;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 100px;
  background: rgba(234, 198, 116, 0.06);
  transition: .20s cubic-bezier(.7,.1,.9,1.2);
  border: 1px solid transparent;
  white-space: nowrap;
}
nav a.active, nav a:hover {
  background: linear-gradient(90deg, #ffe39a 0%, #eac674 100%);
  color: #191921;
  box-shadow: 0 4px 24px #ffe39a66;
  border-color: #eac674;
  text-shadow: none;
}

/* HERO */
.hero {
  margin: 50px auto 45px auto;
  max-width: 1050px;
  padding: 70px 35px 46px 35px;
  text-align: center;
  border-radius: 32px;
  background: rgba(26, 22, 13, 0.62);
  box-shadow: 0 10px 64px 0 #000d, 0 2px 18px #eac67440;
  backdrop-filter: blur(5px) saturate(1.06);
  border: 1.5px solid #eac67433;
}
.hero-content h1 {
  color: #eac674;
  font-family: 'Montserrat', serif;
  font-size: 2.6em;
  letter-spacing: .06em;
  margin: 0 0 15px 0;
  text-shadow: 0 2px 16px #0009, 0 1px 8px #eac67444;
}
.hero-content p { font-size: 1.30em; margin: 0 0 8px 0; }

/* HOMEPAGE ROW */
.homepage-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 36px;
  max-width: 1220px;
  margin: 38px auto 30px auto;
  width: 98%;
  flex-wrap: wrap;
}
.homepage-col {
  flex: 1 1 480px;
  min-width: 320px;
  background: rgba(26,22,13,0.62);
  border-radius: 28px;
  padding: 32px 22px 28px 22px;
  box-shadow: 0 5px 28px #000a, 0 1px 8px #eac67433;
  border: 1.5px solid #eac67433;
  backdrop-filter: blur(4px) saturate(1.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 340px;
  max-width: 580px;
  width: 100%;
}
.section-title {
  text-align: center;
  color: #eac674;
  margin-bottom: 15px;
  letter-spacing: .07em;
  font-size: 1.35em;
}

/* IFRAME (booking + chatbot) */
.booking-frame, .chatbot-frame {
  width: 100%;
  min-width: 0;
  height: 400px;
  border-radius: 17px;
  border: none;
  background: transparent;
  box-shadow: 0 3px 15px #0004;
  margin-top: 10px;
  display: block;
  overflow: hidden;
  max-width: 100%;
}

/* Import Font Awesome */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

.footer {
  background: rgba(16, 19, 26, 0.9);
  color: #fff8e6;
  padding: 25px 30px;
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  width: 100%;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-nav { display: flex; gap: 20px; flex-wrap: wrap;}
.footer-nav a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.footer-nav a:hover { color: #d4af37; }
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.footer-social a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}
.footer-social a:hover {
  color: #d4af37;
  transform: translateY(-4px);
}
.footer p { margin: 0; font-size: 0.93rem; text-align: center; }


/* CARTES */
.rooms-list, .offers-list, .gallery-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 48px auto 0 auto;
  max-width: 1100px;
}
.room-card, .offer-card {
  background: rgba(26,22,13,0.66);
  border-radius: 27px;
  box-shadow: 0 8px 28px #000c, 0 2px 8px #eac67422;
  padding: 26px 26px 16px 26px;
  min-width: 280px;
  max-width: 380px;
  margin: 12px 8px;
  color: #fff8e6;
  position: relative;
  border: 1.3px solid #eac67433;
  backdrop-filter: blur(4px) saturate(1.1);
  width: 100%;
}
.room-slider {
  position: relative;
  height: 215px;
  margin-bottom: 18px;
  overflow: hidden;
  background: #18151b;
  border-radius: 17px;
  box-shadow: 0 3px 14px #0007;
}
.room-slider img {
  width: 100%; height: 215px; object-fit: cover;
  position: absolute; top: 0; left: 0;
  opacity: 0; transition: .7s;
  border-radius: 17px;
}
.room-slider img.active { opacity: 1; z-index: 1; }

.room-card h3 { margin: 18px 0 10px 0; color: #eac674; font-size: 1.36em; }
.room-card .room-desc { margin: 0 0 12px 0; font-size: 1.04em; color: #ffe39a;}
.room-card .room-price {
  color: #ffe39a;
  font-size: 1.19em;
  font-weight: bold;
  margin: 0 0 7px 0;
  letter-spacing: .02em;
}

.offer-card h3 { margin: 14px 0 8px 0; color: #eac674; }
.offer-card p { font-size: 1.10em; }

.gallery-title {
  text-align: center;
  margin-top: 36px;
  margin-bottom: 28px;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffe8b2;
  text-shadow: 0 2px 16px #000a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  padding: 0 3vw 48px 3vw;
  justify-items: center;
}

.gallery-card {
  background: rgba(20, 18, 13, 0.82);
  border-radius: 18px;
  box-shadow: 0 6px 26px #000a;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.gallery-card:hover {
  transform: scale(1.04) translateY(-4px) rotate(-1deg);
  box-shadow: 0 10px 36px #000b;
}

.gallery-photo {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  transition: filter 0.2s, transform 0.2s;
  box-shadow: 0 2px 14px #0006;
  cursor: zoom-in;
}
.gallery-card:hover .gallery-photo {
  filter: brightness(1.08) saturate(1.15);
  transform: scale(1.06) rotate(1deg);
}

.gallery-empty {
  grid-column: 1/-1;
  color: #ffe8b2cc;
  font-size: 1.35rem;
  text-align: center;
  margin: 46px 0;
}

/* MODAL Zoom */
.gallery-modal {
  display: none;
  position: fixed;
  z-index: 800;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(16,15,23, 0.97);
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: fadeIn .25s;
}
.gallery-modal-content {
  max-width: 88vw;
  max-height: 82vh;
  border-radius: 18px;
  box-shadow: 0 0 32px #000c;
  animation: zoomIn .3s;
}
.gallery-close {
  position: absolute;
  top: 30px; right: 44px;
  color: #ffe8b2;
  font-size: 2.8rem;
  font-weight: bold;
  cursor: pointer;
  text-shadow: 0 4px 14px #000;
  z-index: 900;
  user-select: none;
  transition: color 0.15s;
}
.gallery-close:hover {
  color: #fff;
}
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes zoomIn {
  from {transform: scale(0.95);}
  to {transform: scale(1);}
}
@media (max-width: 600px) {
  .gallery-title { font-size: 1.5rem; }
  .gallery-card { padding: 7px; }
  .gallery-modal-content { max-width: 98vw; max-height: 65vh; }
}


/* FORM */
form input, form textarea {
  display: block;
  width: 100%;
  margin-bottom: 18px;
  padding: 13px;
  border-radius: 13px;
  border: none;
  font-size: 1.10em;
  background: #232335e6;
  color: #ffe39a;
  box-shadow: 0 2px 8px #0002;
}
form button {
  background: linear-gradient(90deg, #ffe39a 0%, #eac674 100%);
  color: #191921;
  border: none;
  border-radius: 12px;
  padding: 13px 32px;
  font-size: 19px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 3px 14px #eac67422;
  transition: .18s;
}
form button:hover { background: linear-gradient(90deg, #fffbe7 0%, #ffe39a 100%); }
form .error, .error { color: #f44; margin: 8px 0; }
form .success, .success { color: #2e0; margin: 8px 0; }

/* ========== ADMIN PANEL ========== */
/* Structure principale */
.admin-wrapper {
  display: flex;
  min-height: 100vh;
  background: rgba(16, 19, 26, 0.96);
}
.admin-sidebar {
  width: 270px;
  min-width: 210px;
  background: linear-gradient(145deg, #23232f 70%, #191921 100%);
  padding: 44px 26px 22px 20px;
  box-shadow: 4px 0 24px #000c;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top-right-radius: 28px;
  border-bottom-right-radius: 28px;
}
.admin-sidebar h2 {
  color: #ffe39a;
  font-size: 1.45em;
  margin-bottom: 24px;
  text-align: left;
  letter-spacing: .08em;
  font-weight: 900;
  text-shadow: 0 2px 8px #0007;
}
.admin-sidebar ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.admin-sidebar a {
  color: #eac674;
  text-decoration: none;
  font-weight: 700;
  padding: 13px 18px;
  border-radius: 12px;
  transition: background .18s, color .18s, transform .16s;
  font-size: 1.13em;
  letter-spacing: .04em;
  background: transparent;
  border: 1px solid transparent;
}
.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: linear-gradient(90deg, #ffe39a 20%, #eac674 100%);
  color: #10131a;
  font-weight: 800;
  border-color: #eac674a2;
  transform: translateX(4px) scale(1.05);
}

/* Contenu admin */
.admin-content {
  flex: 1;
  padding: 44px 40px 32px 40px;
  background: rgba(24, 22, 19, 0.96);
  min-height: 100vh;
  border-top-left-radius: 36px;
  border-bottom-left-radius: 36px;
  box-shadow: -6px 0 24px #000a;
}
.admin-content h1,
.admin-content h2 {
  color: #ffe39a;
  font-size: 2.10em;
  letter-spacing: .07em;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 16px #000a;
}
.admin-content h3 {
  color: #eac674;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.admin-cards { display: flex; flex-wrap: wrap; gap: 30px; margin-bottom: 30px;}
.admin-card {
  background: linear-gradient(125deg, #18151b 70%, #eac67422 100%);
  border-radius: 20px;
  padding: 28px 34px 21px 30px;
  min-width: 240px;
  max-width: 390px;
  box-shadow: 0 6px 32px #000d, 0 1px 8px #eac6742c;
  border: 1.5px solid #eac67444;
  color: #ffe39a;
  font-size: 1.09em;
  margin-bottom: 14px;
  transition: transform .18s;
}
.admin-card:hover {
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 12px 38px #000c, 0 3px 12px #eac67440;
}

.admin-table {
  width: 100%;
  border-radius: 16px;
  background: #232335e8;
  box-shadow: 0 2px 22px #0008;
  margin-bottom: 35px;
  overflow-x: auto;
  border-collapse: separate;
  border-spacing: 0;
}
.admin-table th, .admin-table td {
  padding: 15px 10px;
  font-size: 1.09em;
  color: #ffe39a;
  border-bottom: 1px solid #eac67444;
  text-align: left;
}
.admin-table th {
  background: #eac6742b;
  color: #eac674;
  font-weight: 900;
  letter-spacing: .03em;
  font-size: 1.11em;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover { background: #19192180; transition: background .14s; }

/* Admin boutons */
.admin-btn, .admin-table button, .admin-actions a {
  background: linear-gradient(90deg, #ffe39a 0%, #eac674 100%);
  color: #18151b;
  border: none;
  border-radius: 12px;
  padding: 9px 21px;
  font-size: 1em;
  font-weight: 700;
  cursor: pointer;
  margin-right: 8px;
  box-shadow: 0 2px 8px #eac67426;
  transition: .17s;
  outline: none;
  text-decoration: none;
  display: inline-block;
}
.admin-btn.danger, .admin-table .danger, .admin-actions .danger {
  background: linear-gradient(90deg, #ef6969 0%, #f44 100%);
  color: #fff8e6;
}
.admin-btn:hover, .admin-table button:hover, .admin-actions a:hover {
  background: linear-gradient(90deg, #fffbe7 0%, #ffe39a 100%);
  color: #191921;
}

/* Admin formulaire */
.admin-form {
  max-width: 490px;
  margin: 0 auto 40px auto;
  background: #191921dd;
  padding: 30px 26px 25px 26px;
  border-radius: 20px;
  box-shadow: 0 2px 12px #0005;
  border: 1.5px solid #eac67433;
}
.admin-form label {
  color: #eac674cc;
  font-size: 1.08em;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
  letter-spacing: .02em;
}
.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 11px 10px;
  border-radius: 9px;
  border: none;
  font-size: 1.08em;
  background: #232335e9;
  color: #ffe39a;
  box-shadow: 0 1px 6px #0002;
  outline: none;
  transition: border-color .16s;
}
.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border: 1.2px solid #ffe39a;
  background: #232335;
}
.admin-form button {
  background: linear-gradient(90deg, #ffe39a 0%, #eac674 100%);
  color: #18151b;
  border: none;
  border-radius: 10px;
  padding: 11px 30px;
  font-size: 1.09em;
  font-weight: bold;
  box-shadow: 0 2px 7px #eac67424;
  cursor: pointer;
  transition: .16s;
  margin-top: 8px;
}
.admin-form button:hover { background: linear-gradient(90deg, #fffbe7 0%, #ffe39a 100%); }

/* Admin notifications */
.admin-success, .admin-error {
  padding: 12px 0;
  border-radius: 10px;
  margin-bottom: 17px;
  text-align: center;
  font-size: 1.11em;
  font-weight: 700;
  letter-spacing: .02em;
  max-width: 450px;
  margin-left: auto; margin-right: auto;
}
.admin-success {
  background: #243024cc;
  color: #98ff99;
  border: 1.5px solid #3adb57;
}
.admin-error {
  background: #302424cc;
  color: #ff5454;
  border: 1.5px solid #ef6969;
}

/* ---------- RESPONSIVE ------------- */
@media (max-width: 1100px) {
  .homepage-row { flex-direction: column; gap: 28px; }
  .homepage-col { max-width: 99vw; }
}
@media (max-width: 900px) {
  .header, .footer { padding: 10px 3vw;}
  .hero { padding: 35px 2vw; }
  nav ul { gap: 9px; }
}
@media (max-width: 800px) {
  .admin-wrapper { flex-direction: column; }
  .admin-sidebar {
    flex-direction: row;
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 19px 7vw 8px 7vw;
    border-radius: 0;
    box-shadow: 0 4px 14px #000a;
  }
  .admin-content {
    border-radius: 0 0 28px 28px;
    min-height: auto;
    padding: 26px 5vw 26px 5vw;
  }
}
@media (max-width: 700px) {
  .header, .footer { padding: 6px; }
  .logo { height: 38px;}
  nav ul { gap: 2px; overflow-x: auto; }
  nav a { padding: 7px 13px; font-size: 1em;}
  .hero { padding: 19px 1vw; }
  .homepage-row { gap: 12px; }
  .homepage-col { padding: 11px 7px; min-width: 0; }
  .rooms-list, .offers-list, .gallery-list { gap: 10px;}
  .room-card, .offer-card { padding: 9px 2vw 7px 2vw; min-width: 95vw; max-width: 98vw;}
  .gallery-photo { margin: 7px 2vw; max-width: 97vw;}
  .footer-content { gap: 7px; }
  .footer-social a { font-size: 1.1rem;}
  .admin-sidebar, .admin-content { padding: 8px 2vw 6px 2vw;}
  .admin-card, .admin-form { padding: 9px 7px;}
}
@media (max-width: 430px) {
  .header { flex-direction: column; align-items: flex-start;}
  .hero-content h1 { font-size: 1.35em;}
  .room-slider { height: 138px;}
  .room-slider img { height: 138px;}
  .room-card, .offer-card { font-size: 0.99em;}
  .footer { padding: 13px 4vw;}
}




.contact-form {
  background: rgba(26,22,13,0.85);
  border-radius: 24px;
  box-shadow: 0 4px 22px #000b, 0 1px 10px #eac67422;
  border: 1.5px solid #eac67455;
  max-width: 420px;
  margin: 0 auto;
  padding: 38px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}

.contact-group {
  position: relative;
  margin-bottom: 14px;
}
.contact-group input,
.contact-group textarea {
  background: transparent;
  color: #ffe39a;
  border: none;
  border-bottom: 2.2px solid #eac67477;
  width: 100%;
  padding: 18px 8px 8px 8px;
  font-size: 1.13em;
  border-radius: 0;
  outline: none;
  transition: border-color 0.22s;
  resize: none;
  box-shadow: none;
}
.contact-group textarea { min-height: 92px; }
.contact-group label {
  position: absolute;
  left: 10px;
  top: 18px;
  color: #eac67499;
  font-size: 1em;
  pointer-events: none;
  transition: 0.18s;
  letter-spacing: .04em;
  background: transparent;
}
.contact-group input:focus,
.contact-group input:valid,
.contact-group textarea:focus,
.contact-group textarea:valid {
  border-bottom: 2.2px solid #ffe39a;
}
.contact-group input:focus + label,
.contact-group input:valid + label,
.contact-group textarea:focus + label,
.contact-group textarea:valid + label {
  top: -13px;
  left: 2px;
  color: #ffe39a;
  font-size: .93em;
  background: #191921;
  padding: 0 6px;
  border-radius: 7px;
  font-weight: 500;
}
.honeypot { display: none; }
.contact-btn {
  background: linear-gradient(90deg, #ffe39a 0%, #eac674 100%);
  color: #191921;
  font-size: 1.14em;
  border: none;
  border-radius: 13px;
  padding: 14px 0;
  font-weight: bold;
  margin-top: 10px;
  box-shadow: 0 2px 8px #eac67422;
  cursor: pointer;
  letter-spacing: .06em;
  transition: background 0.20s, color 0.20s;
}
.contact-btn:hover {
  background: linear-gradient(90deg, #fffbe7 0%, #ffe39a 100%);
  color: #191921;
}
.contact-success, .contact-error {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 20px;
  padding: 14px 0;
  border-radius: 10px;
  max-width: 400px;
  margin-left: auto; margin-right: auto;
}
.contact-success {
  background: #243024e8;
  color: #8ef087;
  border: 1.5px solid #5adb57;
}
.contact-error {
  background: #302424e8;
  color: #ff6060;
  border: 1.5px solid #f44;
}
@media (max-width:600px) {
  .contact-form { padding: 17px 4vw 18px 4vw; }
}


/* ADMIN Events */
.admin-events {
  max-width: 700px;
  margin: 50px auto 40px auto;
  background: rgba(34,28,18,0.67);
  border-radius: 22px;
  padding: 38px 30px;
  box-shadow: 0 4px 22px #0009;
}
.event-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
  align-items: flex-end;
}
.event-form input, .event-form textarea, .event-form button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  padding: 8px 11px;
  background: #1a1626;
  color: #fff8e6;
  outline: none;
}
.event-form input, .event-form textarea {
  flex: 1 1 170px;
  min-width: 120px;
  max-width: 220px;
  border: 1.5px solid #eac67444;
}
.event-form textarea { min-width: 220px; }
.event-form button {
  background: #eac674;
  color: #222018;
  font-weight: bold;
  cursor: pointer;
  min-width: 120px;
  transition: background 0.2s;
}
.event-form button:hover { background: #ffe0a3; }

.event-list {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
.event-list th, .event-list td {
  padding: 7px 10px;
  text-align: center;
  border-bottom: 1px solid #fff3;
}
.event-list th {
  color: #eac674;
  font-weight: 600;
  background: rgba(0,0,0,0.09);
}

/* Events publiques = déjà dans ton style.css mais on complète */
/* Section événement comme .hero */
.hero.events-hero {
  background: rgba(20, 20, 34, 0.75);
  border-radius: 32px;
  margin: 48px auto 36px auto;
  max-width: 980px;
  box-shadow: 0 10px 48px #000c, 0 2px 18px #eac67440;
  padding: 48px 24px 42px 24px;
  text-align: center;
}
.events-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin: 28px 0 14px 0;
}

/* Style des événements dans la home façon hero */
.event-hero {
  background: rgba(29, 27, 20, 0.75);
  border-radius: 18px;
  box-shadow: 0 4px 18px #0007;
  padding: 24px 18px 16px 18px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.14s, box-shadow 0.14s;
}
.event-hero:hover {
  transform: scale(1.025);
  box-shadow: 0 8px 38px #000b;
}
/* Carrousel horizontal pour événements */
.events-carousel {
  display: flex;
  flex-direction: row;
  gap: 32px;
  overflow-x: auto;
  padding: 10px 5px 18px 5px;
  scroll-snap-type: x mandatory;
  margin: 24px 0 0 0;
  justify-content: flex-start;
  align-items: stretch;
}

/* Scrollbar discrète sur Chrome */
.events-carousel::-webkit-scrollbar {
  height: 10px;
  background: transparent;
}
.events-carousel::-webkit-scrollbar-thumb {
  background: #eac67477;
  border-radius: 8px;
}

/* Event Card façon hero */
.event-card {
  background: rgba(29, 27, 20, 0.80);
  border-radius: 20px;
  box-shadow: 0 6px 22px #0009;
  padding: 32px 22px 18px 22px;
  min-width: 270px;
  max-width: 300px;
  flex: 0 0 270px;
  margin-bottom: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  scroll-snap-align: start;
  transition: transform 0.18s, box-shadow 0.14s;
}
.event-card:hover {
  transform: scale(1.037);
  box-shadow: 0 16px 36px #000c;
}
.event-date {
  color: #ffd7a4;
  font-weight: 600;
  font-size: 1.11rem;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.event-title {
  color: #eac674;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 9px 0 5px 0;
}
.event-lieu {
  color: #ffedbd;
  font-size: 1.04rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.event-desc {
  color: #fff8e6;
  font-size: 1rem;
  opacity: 0.87;
  margin-top: 2px;
}

/* Responsive : 1 event par ligne en mobile */
@media (max-width: 700px) {
  .events-carousel {
    gap: 16px;
    padding: 5px 0 12px 0;
  }
  .event-card {
    min-width: 94vw;
    max-width: 97vw;
    padding: 24px 8px 12px 8px;
  }
}

/* Le bouton "Voir tous les événements" */
.btn-hero {
  display: inline-block;
  margin-top: 32px;
  padding: 11px 28px;
  font-size: 1.09rem;
  font-weight: 600;
  color: #10131a;
  background: linear-gradient(90deg,#eac674 60%, #fff5cc 100%);
  border: none;
  border-radius: 16px;
  box-shadow: 0 2px 16px #0005;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, color 0.13s;
}
.btn-hero:hover {
  background: linear-gradient(90deg,#ffe6b2 55%, #eac674 100%);
  color: #15141c;
}
