:root {
  --header-height: 70px;
  --primary-color: #eac649;
  --text-color: #ffffff;
  --background-overlay: rgba(0, 0, 0, 0.7);
}

/* Désactiver les animations sur la page about */
.no-animation .nav-desktop ul li,
.no-animation .logo {
  opacity: 1 !important;
  animation: none !important;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes socialIconHover {
  0% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.15) rotate(5deg);
  }
  100% {
    transform: scale(1.25) rotate(-5deg);
  }
}

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Metal Mania', fantasy;
  color: var(--text-color);
  line-height: 1.6;
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.background {
  background-image: url('content/background.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  min-height: 100vh;
  position: relative;
}

.background::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--background-overlay);
  z-index: 1;
}

/* Main Content */
.main-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--header-height) + 40px);
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 4em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  animation: scaleIn 1s ease-out forwards;
  opacity: 0;
}

.hero .tagline {
  font-size: 1.5em;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

.hero .tagline-logo {
  font-size: 1.5em;
  margin-bottom: 30px;
  animation: fadeIn 1s ease-out 0.5s forwards;
  opacity: 0;
}

/* Animated social icons in hero section */
.social-icon-hero {
  color: white;
  text-decoration: none;
  display: inline-block;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.social-icon-hero:hover {
  animation: socialIconHover 0.6s ease-in-out;
}

/* About Preview Section */
.about-preview {
  padding: 80px 20px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-preview.visible {
  opacity: 1;
  transform: translateY(0);
}

.about-preview h2 {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 30px;
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.about-preview.visible h2 {
  opacity: 1;
  transform: scale(1);
}

.about-preview p {
  font-size: 1.2em;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.about-preview.visible p {
  opacity: 1;
  transform: translateY(0);
}

.about-preview .btn {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.about-preview.visible .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Override global .about-content styles for the index preview so it doesn't
   appear as the boxed two-column layout used on the full About page. This
   ensures title, text and button are stacked vertically and centered. */
.about-preview .about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: transparent;
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}


/* Bouton En savoir plus */
.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  font-family: 'Metal Mania', fantasy;
  font-size: 1.1em;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  color: white;
}

.btn:hover {
  transform: scale(1.2);
  background-color: var(--primary-color);
  color: black !important;
}

/* Legal Content */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  color: white;
}

.legal-content h1 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.legal-content h2 {
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content p, .legal-content ul {
  margin-bottom: 20px;
  line-height: 1.6;
}

.legal-content ul {
  margin-left: 20px;
}

/* Footer */
.footer {
  position: relative;
  z-index: 2;
  background-color: black;
  padding: 40px 20px;
  width: 100%;
  margin-top: auto;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.footer-section h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.5em;
}

.footer-section p {
  margin: 10px 0;
}

.footer-section a {
  transition: opacity 0.2s;
  display: inline-block;
  transition: transform 0.3s ease;
  color: white;
  text-decoration: none;
}

.footer-section a:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 3em;
  }

  .hero .tagline {
    font-size: 1.2em;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .about-preview {
    padding: 40px 20px;
  }

  .evenements-liste {
    padding: 0 15px;
  }

  #events-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .event-card {
    margin: 0 auto;
    font-size: 0.95em;
  }

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

/* Header */
.bandeau_top {
  background-color: black;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  box-sizing: border-box;
}

.logo {
  width: 70px;
  margin-right: 40px;
  animation: scaleIn 0.8s ease-out forwards;
  opacity: 0;
}

/* Desktop Navigation */
.nav-desktop {
  flex: 1;
  font-family: 'Metal Mania', fantasy;
  display: flex;
  justify-content: center;
}

.nav-desktop ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
  justify-content: center;
}

.nav-desktop ul li {
  opacity: 0;
}

.nav-desktop ul li:nth-child(1) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 0.2s;
}

.nav-desktop ul li:nth-child(2) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 0.4s;
}

.nav-desktop ul li:nth-child(3) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 0.6s;
}

.nav-desktop ul li:nth-child(4) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 0.8s;
}

.nav-desktop ul li:nth-child(5) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 1.0s;
}

.nav-desktop ul li:nth-child(6) {
  animation: slideIn 0.5s ease-out forwards;
  animation-delay: 1.2s;
}

.nav-desktop a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  transition: opacity 0.2s;
  display: inline-block;
  transition: transform 0.3s ease;
}

.nav-desktop a:hover {
  opacity: 0.8;
  transform: scale(1.2);
}

/* Hide mobile elements by default */
.mobile-only,
.menu,
.menu-hotzone,
.dropdown,
.menu-overlay,
.drawer-close {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  body {
    padding-top: var(--header-height);
  }

  .bandeau_top {
    padding: 0 16px;
    font-size: 14px;
  }

  .logo {
    width: 56px;
    margin-right: 0;
  }

  .nav-desktop {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  /* Menu button */
  .menu {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 34px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 0;
    padding: 8px;
    cursor: pointer;
    z-index: 1400;
  }

  .menu span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform 160ms ease;
  }

  .menu:hover span {
    background: #fff;
  }

  .menu:focus {
    outline: 2px solid rgba(255,255,255,0.12);
    border-radius: 6px;
  }

  /* Dropdown menu */
  .dropdown {
    display: block !important;
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 85%;
    max-width: 360px;
    background: #111;
    color: #fff;
    transform: translateX(100%);
    transition: transform 320ms cubic-bezier(.2,.9,.2,1);
    z-index: 200000;
    padding-top: 64px;
    overflow-y: auto;
  }

  .dropdown[aria-hidden="false"] {
    transform: translateX(0);
  }

  .dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    display: flex;
    flex-direction: column;
  }

  .dropdown li {
    padding: 0;
    font-family: 'Metal Mania', fantasy;
  }

  .dropdown a {
    display: block;
    padding: 0.8rem 1.1rem;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
  }

  .dropdown a:hover,
  .dropdown a:focus {
    background: rgba(255,255,255,0.03);
    outline: none;
  }

  /* Overlay */
  .menu-overlay {
    display: block !important;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 199000;
  }

  .menu-overlay[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
  }

  /* Close button */
  .drawer-close {
    display: block !important;
    position: absolute;
    right: 12px;
    top: 12px;
    background: transparent;
    color: #fff;
    border: none;
    font-size: 1.4rem;
    padding: 8px;
    cursor: pointer;
    z-index: 200001;
  }

  .drawer-close:focus {
    outline: 2px solid rgba(255,255,255,0.12);
    border-radius: 6px;
  }

  /* Menu open state */
  html.menu-open .dropdown {
    transform: translateX(0);
  }
  
  html.menu-open .menu-overlay {
    opacity: 1;
    pointer-events: auto;
  }
  
  html.menu-open .menu {
    display: none !important;
  }
  
  html.menu-open body {
    overflow: hidden;
  }
}

/* Événements */
.evenements-liste {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

#events-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
  width: 100%;
}

.event-card {
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  padding: 20px;
  transition: all 0.3s ease;
  animation: fadeIn 0.5s ease-out forwards;
  opacity: 0;
  width: 100%;
  box-sizing: border-box;
  word-wrap: break-word;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

.event-card h3 {
  color: var(--primary-color);
  font-size: 1.8em;
  margin-bottom: 15px;
}

.event-card .date {
  color: #ffffff;
  font-size: 1.2em;
  margin-bottom: 15px;
  opacity: 0.9;
}

.event-card .description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Messages d'état */
.loading {
  text-align: center;
  padding: 20px;
  color: var(--primary-color);
  font-size: 1.2em;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

.error-container {
  text-align: center;
  padding: 30px;
  background: rgba(255, 0, 0, 0.1);
  border-radius: 10px;
  border: 2px solid #ff4444;
}

.error-message {
  color: #ff4444;
  margin-bottom: 20px;
  font-size: 1.2em;
}

.error-message small {
  display: block;
  margin-top: 10px;
  font-size: 0.9em;
  opacity: 0.8;
}

.btn-retry {
  background-color: transparent;
  border: 2px solid #ff4444;
  color: #ff4444;
  padding: 8px 20px;
  border-radius: 5px;
  font-family: 'Metal Mania', fantasy;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-retry:hover {
  background-color: #ff4444;
  color: white;
  transform: scale(1.1);
}

.no-events {
  text-align: center;
  padding: 40px;
  color: var(--text-color);
  font-size: 1.3em;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

#btn-add-event {
  display: block;
  margin: 30px auto;
  font-size: 1.3em;
  padding: 15px 30px;
}

.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  animation: fadeIn 0.3s ease-out;
  overflow-y: auto;
}

.modal-content {
  background-color: rgba(0, 0, 0, 0.95);
  border: 2px solid var(--primary-color);
  border-radius: 15px;
  margin: 80px auto 40px;
  padding: 30px;
  width: 90%;
  max-width: 500px;
  position: relative;
  animation: scaleIn 0.3s ease-out;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.modal-content h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 25px;
  font-size: 2em;
}

.close {
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--primary-color);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  color: #ffffff;
  transform: scale(1.2);
}


/* Reveal animation utility used on the About page */
.reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.995);
  transition: opacity 600ms cubic-bezier(.2,.9,.2,1), transform 600ms cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Slight variation for feature blocks: slide from right on larger screens */
@media (min-width: 769px) {
  .feature.reveal {
    transform: translateX(24px) translateY(6px) scale(0.995);
  }

  .feature.reveal.visible {
    transform: translateX(0) translateY(0) scale(1);
  }
}

/* Reduce motion: if user prefers reduced motion, disable transforms */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; transform: none !important; }
}
.auth-form input,
#event-form input,
#event-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--primary-color);
  border-radius: 8px;
  color: #ffffff;
  font-family: 'Metal Mania', fantasy;
}

#event-form textarea {
  height: 150px;
  resize: vertical;
}

.form-group {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  #events-container {
    grid-template-columns: 1fr;
  }
  
  .modal-content {
    margin: 20% auto;
    padding: 20px;
  }
}

/* Contact Page */
.contact-section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-info {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  color: var(--primary-color);
  font-size: 2.5em;
  margin-bottom: 30px;
  text-align: center;
}

.info-block {
  margin-bottom: 30px;
}

.info-block h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.info-block p {
  font-size: 1.1em;
  line-height: 1.6;
}

.info-block a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-block a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  transition: transform 0.3s ease;
  display: inline-block;
}

.social-links a:hover {
  transform: scale(1.2);
}

.map-container {
  height: 100%;
  min-height: 450px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-info {
    order: 2;
  }
  
  .map-container {
    order: 1;
    min-height: 300px;
  }
}

/* Admin Panel Styles */
.admin-panel {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.login-container {
  max-width: 400px;
  margin: 100px auto;
  background: rgba(0, 0, 0, 0.8);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.form-group button {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  cursor: pointer;
}

.events-manager {
  display: none;
}

.events-list {
  margin: 30px 0;
  background: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.event-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid var(--primary-color);
  margin-bottom: 10px;
}

.event-item:last-child {
  border-bottom: none;
}

.event-info {
  flex: 1;
}

.event-actions {
  display: flex;
  gap: 10px;
}

.btn-delete {
  background-color: #ff4444;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Metal Mania', fantasy;
}

.btn-delete:hover {
  background-color: #cc0000;
}

.success-message {
  color: #4CAF50;
  margin: 10px 0;
  padding: 10px;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 5px;
}

.error-message {
  color: #ff4444;
  margin: 10px 0;
  padding: 10px;
  background: rgba(255, 68, 68, 0.1);
  border-radius: 5px;
}

/* Very small phones */
/* About Page Styles */
.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.about-section h1 {
  color: var(--primary-color);
  font-size: 3em;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 20px;
  margin-top: 30px;
}

.about-text h2:first-child {
  margin-top: 0;
}

.about-text p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 25px;
  border-radius: 8px;
  border: 1px solid var(--primary-color);
}

.feature h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.feature ul {
  list-style: none;
  padding: 0;
}

.feature ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
  padding-left: 20px;
  position: relative;
}

.feature ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-section h1 {
    font-size: 2.5em;
  }

  .about-text h2 {
    font-size: 1.8em;
  }

  .feature {
    padding: 20px;
  }
}

/* Reservations Page Styles */
.reservations-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.reservations-section h1 {
  color: var(--primary-color);
  font-size: 3em;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.reservations-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-box {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.contact-info-box h2 {
  color: var(--primary-color);
  font-size: 2em;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.3em;
}

.contact-icon {
  font-size: 1.5em;
}

.contact-details a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
}

.contact-details a:hover {
  color: var(--primary-color);
  transform: scale(1.1);
}

.reservation-form {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
}

.google-doc-container {
  width: 100%;
  min-height: 1400px; /* ⬅️ Augmenté ! */
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 5px;
  overflow: hidden;
}

.google-doc-container iframe {
  width: 100%;
  height: 1400px; /* ⬅️ Ajouté ! */
  min-height: 1400px; /* ⬅️ Ajouté ! */
  border: none;
}

@media (max-width: 768px) {
  .reservations-section h1 {
    font-size: 2.5em;
  }

  .contact-info-box {
    padding: 20px;
  }

  .contact-info-box h2 {
    font-size: 1.8em;
  }

  .contact-details p {
    font-size: 1.1em;
  }

  .reservation-form {
    padding: 20px;
  }
}

/* Announcement Box */
.announcement-box {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.announcement-box p {
  color: var(--text-color);
  font-size: 1.2em;
  line-height: 1.6;
  margin: 0;
}

/* Very small phones */
@media (max-width: 480px) {
  :root {
    --header-height: 56px;
  }

  .logo {
    width: 48px;
  }

  .dropdown {
    width: 100%;
    max-width: none;
  }

  .drawer-close {
    right: 10px;
    top: 10px;
    font-size: 1.2rem;
  }
}

/* Mobile: désactiver animations/transitions pour la prévisualisation "À propos" */
@media (max-width: 768px) {
  /* Rendre immédiatement visible le container et ses enfants sur mobile */
  .about-preview,
  .about-preview h2,
  .about-preview p,
  .about-preview .btn {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  /* Si la classe .visible est ajoutée par JS, s'assurer que l'état final est appliqué */
  .about-preview.visible,
  .about-preview.visible h2,
  .about-preview.visible p,
  .about-preview.visible .btn {
    opacity: 1 !important;
    transform: none !important;
  }
}