/* ========== INDEX ========== */

/* 🌈 Fonts & Variables */
:root {
  --bg: #0b0b0f;
  --text: #fff;
  --accent: #ff007c;
  --accent2: #00e5ff;
  --gray: #888;
  --radius: 14px;
  --transition: 0.3s;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* 💫 Header */
.site-header {
  border-bottom: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Orbitron', sans-serif;
  color: #fff;
  text-decoration: none;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
nav a {
  margin-left: 1.2rem;
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}
nav a:hover, nav a.active {
  color: var(--accent2);
  border-bottom: 2px solid var(--accent2);
}

/* 🌃 Hero */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at center, rgba(255,0,120,0.15) 0%, transparent 70%);
}
.hero-inner {
  animation: fadeIn 1s ease-in-out;
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8rem;
  text-shadow: 0 0 15px var(--accent);
}
.hero p {
  margin-top: 0.5rem;
  color: #ccc;
}
.hero-btns {
  margin-top: 1.5rem;
}
.btn-primary, .btn-outline {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0 0.4rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: #fff;
  box-shadow: 0 0 20px rgba(255,0,150,0.3);
}
.btn-primary:hover {
  transform: scale(1.05);
}
.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* 📍 Info */
.info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1000px;
}
.info-box {
  flex: 1;
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.info-box:hover {
  background: rgba(255,255,255,0.1);
}
.info-box h3 {
  color: var(--accent);
  font-family: 'Orbitron', sans-serif;
}

/* 🕐 Horaires */
.horaires {
  text-align: center;
  margin: 4rem auto;
  max-width: 700px;
}
.horaires h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent);
}
.horaires ul {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}
.horaires li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.6rem 0;
}
.horaires li.ferme {
  color: var(--gray);
}
.horaires li.samedi span:first-child {
  color: var(--accent);
}
.note {
  font-size: 0.9rem;
  color: var(--gray);
}

/* 📱 Réseaux */
.reseaux {
  text-align: center;
  margin: 4rem auto;
}
.reseaux h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent2);
}
.socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}
.socials a {
  border: 2px solid var(--accent2);
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  text-decoration: none;
  color: #fff;
  transition: var(--transition);
  box-shadow: 0 0 10px rgba(0,229,255,0.2);
}
.socials a:hover {
  background: var(--accent2);
  color: #000;
}

/* ⚡ Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  font-size: 0.9rem;
}
footer a {
  color: var(--accent);
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

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

/*  Responsive */

@media (max-width: 768px) {
  .info {
    flex-direction: column;
    align-items: center;
  }
}
/* 🌍 Lien itinéraire dans l'accueil */
.info-box a[href*="maps/dir"] {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(255,0,150,0.2);
}
.info-box a[href*="maps/dir"]:hover {
  box-shadow: 0 0 20px rgba(0,229,255,0.5);
  transform: scale(1.05);
}



/* ========== EVENTS ========== */

/* 🪩 Événements */
.events-hero {
  background: radial-gradient(circle at center, rgba(255,0,120,0.15) 0%, transparent 70%);
  text-align: center;
  padding: 6rem 1rem 3rem;
}
.events-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-shadow: 0 0 15px var(--accent);
}
.events-hero p {
  color: #ccc;
  margin-top: 0.5rem;
  font-size: 1rem;
}

.events-list {
  max-width: 900px;
  margin: 3rem auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}
.event-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.5rem;
  flex: 1 1 260px;
  text-align: center;
  box-shadow: 0 0 20px rgba(255,0,130,0.05);
  transition: var(--transition);
}
.event-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.event-date {
  color: var(--accent2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.event-card h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent);
}
.event-card p {
  color: #ccc;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.events-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin: 2rem auto 4rem;
}
.events-note a {
  color: var(--accent2);
  text-decoration: none;
}
.events-note a:hover {
  text-decoration: underline;
}

/* ========== GALLERY (HERO) ========== */
.gallery-hero {
  text-align: center;
  padding: 6rem 1rem 3rem;
  background: radial-gradient(circle at center, rgba(0,229,255,0.1) 0%, transparent 70%);
}
.gallery-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-shadow: 0 0 15px var(--accent2);
}
.gallery-hero p {
  color: #ccc;
  margin-top: 0.5rem;
}

/* ========== GALLERY SCROLL AUTO ========== */
.gallery-scroll {
  overflow: hidden;
  position: relative;
  padding: 2rem 0;
  background: radial-gradient(circle at center, rgba(255,255,255,0.02) 0%, transparent 70%);
}

.scroll-container {
  display: flex;
  gap: 1rem;
  animation: scrollGallery 4s linear infinite;
}

.scroll-container img {
  width: 320px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 20px rgba(255,0,150,0.1);
}
.scroll-container img:hover {
  transform: scale(1.50);
  box-shadow: 0 0 30px rgba(0,229,255,0.4);
}

/* Animation */
@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 600px) {
  .scroll-container img {
    width: 250px;
    height: 160px;
  }
}


/* ========== ALBUMS SECTION ========== */
.albums-section {
  text-align: center;
  padding: 3rem 1rem 5rem;
}
.albums-section h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  text-shadow: 0 0 10px var(--accent);
}
.albums-desc {
  color: #aaa;
  margin: 0.5rem auto 2rem;
  max-width: 700px;
}
.albums-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1rem;
}
.album-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(255,0,150,0.1);
  transition: transform var(--transition), box-shadow var(--transition);
}
.album-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0,229,255,0.3);
}
.album-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.album-info {
  padding: 1.2rem;
}
.album-info h3 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent2);
  margin-bottom: 0.4rem;
}
.album-info .date {
  font-size: 0.9rem;
  color: #aaa;
}
.album-info .desc {
  font-size: 0.95rem;
  margin: 0.8rem 0 1rem;
  color: #ccc;
}

/* ========== ALBUM PAGE (INTÉRIEUR D'UN ALBUM) ========== */
.album-hero {
  text-align: center;
  padding: 5rem 1rem 3rem;
  background: radial-gradient(circle at center, rgba(0,229,255,0.1) 0%, transparent 70%);
}
.album-grid {
  max-width: 1100px;
  margin: 2rem auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}
.album-grid img {
  width: 100%;
  border-radius: var(--radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(255,0,150,0.1);
}
.album-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0,229,255,0.3);
}

/* Responsive */
@media (max-width: 600px) {
  .scroll-container img {
    width: 250px;
    height: 160px;
  }
}



/* ========== DRINKS ========== */

/* ===========================================================
   📖 Carte des boissons — Effet Livre 3D
   =========================================================== */

.drinks-hero {
  text-align: center;
  padding: 6rem 1rem 3rem;
  background: radial-gradient(circle at center, rgba(255,0,120,0.15) 0%, transparent 70%);
}
.drinks-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-shadow: 0 0 15px var(--accent);
}
.drinks-hero p {
  color: #ccc;
  margin-top: 0.5rem;
}

/* === 🌈 Onglets === */
.drinks-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.tab-btn {
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  border: none;
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 2rem;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 0, 200, 0.25);
}
.tab-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 200, 255, 0.45);
}
.tab-btn.active {
  background: linear-gradient(45deg, #00c9ff, #92fe9d);
  color: #111;
  box-shadow: 0 0 20px rgba(0, 255, 150, 0.4);
}

/* === 📖 Livre interactif === */
.drinks-book {
  position: relative;
  width: 100%;
  max-width: 950px;
  margin: 3rem auto;
  perspective: 1200px;
}
.drink-page {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 0 25px rgba(255, 0, 130, 0.1);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 1;
  position: relative;
}
.drink-page.hidden {
  transform: rotateY(90deg);
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

/* Titres */
.drink-page h2 {
  font-family: 'Orbitron', sans-serif;
  color: var(--accent2, #00c9ff);
  text-shadow: 0 0 8px rgba(0, 200, 255, 0.4);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 0.3rem;
  margin-top: 1.5rem;
}
.drink-page ul {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1.6rem;
}
.drink-page li {
  color: #ddd;
  margin: 0.35rem 0;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.drink-page li:hover {
  color: var(--accent, #00ffff);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === 📱 Note === */
.drinks-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--gray);
  margin: 4rem 0;
}

/* === 🍸 Happy Hour (bulles animées) === */
.happy-hour-bubbles {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 60px auto;
  border-radius: 25px;
  background: linear-gradient(135deg, #ff00cc, #6f00ff);
  box-shadow: 0 0 30px rgba(255, 0, 200, 0.25);
  animation: hhGlow 6s ease-in-out infinite;
}
.hh-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,0,200,0.1), transparent 70%),
              radial-gradient(circle at 70% 70%, rgba(0,200,255,0.1), transparent 60%);
  z-index: 1;
}
.happy-hour-bubbles::before,
.happy-hour-bubbles::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255,255,255,0.15) 2px, transparent 3px);
  background-size: 50px 50px;
  animation: bubblesUp 18s linear infinite;
  top: 100%;
  left: -50%;
  z-index: 0;
  opacity: 0.3;
  filter: blur(1px);
}
.happy-hour-bubbles::after {
  animation-duration: 22s;
  animation-delay: 3s;
  background-size: 60px 60px;
  opacity: 0.25;
}
.hh-inner {
  position: relative;
  z-index: 2;
  background: rgba(15,15,25,0.9);
  border-radius: 23px;
  padding: 45px 40px;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  backdrop-filter: blur(10px);
}
.hh-inner h2 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 0, 200, 0.8),
               0 0 20px rgba(0, 200, 255, 0.6);
}
.hh-inner p {
  color: #ccc;
  font-size: 1rem;
  margin-bottom: 12px;
}
.hh-inner ul {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.hh-inner li {
  color: #bbb;
  margin: 6px 0;
  font-size: 0.95rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* === Animations === */
@keyframes bubblesUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes hhGlow {
  0%, 100% { box-shadow: 0 0 25px rgba(255, 0, 200, 0.25); }
  50% { box-shadow: 0 0 45px rgba(0, 204, 255, 0.5); }
}

/* === 📱 Responsive === */
@media (max-width: 768px) {
  .drinks-book {
    perspective: none;
  }
  .drink-page {
    transform: none !important;
    opacity: 1 !important;
    position: relative;
    transition: none;
  }
  .drink-page.hidden {
    display: none;
  }
}


/* ==========================================
   🍔 Menu mobile — Animation et affichage
   ========================================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--accent2);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animation croix */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* Navigation mobile */
@media (max-width: 850px) {
  .nav-inner nav {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    max-width: 280px;
    background: rgba(15, 15, 25, 0.92);
    backdrop-filter: blur(15px);
    border-left: 2px solid var(--accent2);
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 25px rgba(0,229,255,0.2);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    transition: right 0.35s ease-in-out;
    z-index: 1000;
  }

  /* ✅ Le menu glisse depuis la droite */
  .nav-inner nav.open {
    right: 0;
    animation: slideIn 0.35s ease-out forwards;
  }

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

  .nav-inner nav a {
    display: block;
    margin: 0.7rem 0;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    text-shadow: 0 0 6px var(--accent2);
    transition: 0.3s ease;
  }

  .nav-inner nav a:hover {
    color: var(--accent2);
    text-shadow: 0 0 10px var(--accent2), 0 0 20px var(--accent);
  }

  .menu-toggle {
    display: flex;
  }
}


/* ========== CONTACT ========== */

.contact-hero {
  text-align: center;
  padding: 6rem 1rem 3rem;
  background: radial-gradient(circle at center, rgba(255,0,120,0.15) 0%, transparent 70%);
}
.contact-hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.5rem;
  text-shadow: 0 0 15px var(--accent);
}
.contact-hero p {
  color: #ccc;
  margin-top: 0.5rem;
}

.contact-infos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 3rem auto;
  max-width: 1000px;
}
.contact-box {
  flex: 1;
  min-width: 250px;
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.contact-box:hover {
  background: rgba(255,255,255,0.1);
}
.contact-box h3 {
  color: var(--accent2);
  font-family: 'Orbitron', sans-serif;
}
.contact-box a {
  color: var(--accent);
  text-decoration: none;
}
.contact-box a:hover {
  text-decoration: underline;
}

/* 🗺️ Carte */
.map-section {
  text-align: center;
  margin: 4rem auto;
}
.map-section h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent2);
}
.map-container {
  max-width: 800px;
  margin: 2rem auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
}

/* 💬 Formulaire */
.contact-form {
  text-align: center;
  margin: 4rem auto;
  max-width: 700px;
}
.contact-form h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 0.8rem 1rem;
  border-radius: var(--radius);
  font-family: 'Poppins', sans-serif;
  transition: border var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent2);
  outline: none;
  box-shadow: 0 0 10px rgba(0,229,255,0.3);
}
.contact-form button {
  align-self: center;
}

/* 📱 Réseaux */
.contact-socials {
  text-align: center;
  margin: 4rem auto;
}
.contact-socials h2 {
  font-family: 'Orbitron', sans-serif;
  text-shadow: 0 0 10px var(--accent2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-infos {
    flex-direction: column;
    align-items: center;
  }
}

.contact-box a[href*="maps/dir"] {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
  transition: var(--transition);
}
.contact-box a[href*="maps/dir"]:hover {
  box-shadow: 0 0 15px rgba(0,229,255,0.4);
  transform: scale(1.05);
}





/* --- responsive --- */
@media (max-width: 768px) {
  .tab-btn {
    padding: 0.5rem 1rem;
    font-size: 0.95rem;
  }

  .drinks-hero h1 {
    font-size: 2rem;
  }

  /* ✅ Corrige les chevauchements sur mobile */
  .drinks-book {
    perspective: none;
    display: block;
    position: relative;
  }

  .drink-page {
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.03);
    display: none; /* on cache toutes les pages par défaut */
    margin-bottom: 1.5rem;
    animation: fadeIn 0.4s ease;
  }

  /* on affiche uniquement la page active */
  .drink-page:not(.hidden) {
    display: block;
  }

  /* Happy Hour */
  .happy-hour-bubbles {
    margin: 40px auto;
  }

  .hh-inner {
    padding: 35px 25px;
  }

  .hh-inner h2 {
    font-size: 1.6rem;
  }
}
/* ========== FOOTER CUSTOMIZATION ========== */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: rgba(10,10,20,0.7);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;
  color: #ccc;
}

.site-footer a {
  color: var(--accent1, #ff00cc);
  text-decoration: none;
}

.footer-logo img {
  opacity: 0.8;
  margin-bottom: 0.5rem;
  transition: opacity 0.3s;
}

.footer-logo img:hover {
  opacity: 1;
}
.site-footer a:hover {
  text-decoration: underline;
}
