@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Nunito:wght@400;600;700&family=Dancing+Script:wght@700&display=swap');

:root {
  --noir: #080808;
  --violet: #e060f0;
  --violet-dark: #a030b0;
  --orange: #f0a020;
  --orange-dark: #c07010;
  --blanc: #f0e8f5;
  --gris: #2a2a2a;
  --glow-violet: 0 0 20px rgba(224, 96, 240, 0.6), 0 0 40px rgba(224, 96, 240, 0.3);
  --glow-orange: 0 0 20px rgba(240, 160, 32, 0.6), 0 0 40px rgba(240, 160, 32, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--noir);
  color: var(--blanc);
  font-family: 'Nunito', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(224, 96, 240, 0.2);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo img {
  height: 88px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 0.2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--blanc);
  text-decoration: none;
  padding: 0.4rem 0.9rem;
  border-radius: 4px;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--violet);
  text-shadow: var(--glow-violet);
}

.nav-links a.active {
  border-bottom: 2px solid var(--orange);
}

.nav-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  color: #e060f0 !important;
  text-decoration: none !important;
}

/* Burger menu mobile */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--violet);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/photos/drone.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.3);
  transform: scale(1.05);
  animation: slowzoom 20s ease-in-out infinite alternate;
}

@keyframes slowzoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  width: min(460px, 85vw);
  margin-bottom: 2rem;
  filter: drop-shadow(var(--glow-violet));
  animation: logopulse 4s ease-in-out infinite;
}

@keyframes logopulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(224,96,240,0.5)); }
  50% { filter: drop-shadow(0 0 40px rgba(224,96,240,0.9)); }
}

.hero-tagline {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--orange);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-shadow: var(--glow-orange);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BOUTONS ── */
.btn {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
  display: inline-block;
}

.btn-violet {
  background: var(--violet);
  color: #000;
  box-shadow: var(--glow-violet);
}
.btn-violet:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(224,96,240,0.9);
}

.btn-orange {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  box-shadow: var(--glow-orange);
}
.btn-orange:hover {
  background: var(--orange);
  color: #000;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--violet);
  border: 2px solid var(--violet);
}
.btn-outline:hover {
  background: var(--violet);
  color: #000;
  transform: translateY(-2px);
}

/* ── SECTIONS ── */
.section {
  padding: 5rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.05em;
  color: var(--violet);
  text-shadow: var(--glow-violet);
  margin-bottom: 0.3rem;
}

.section-title span {
  color: var(--orange);
  text-shadow: var(--glow-orange);
}

.section-subtitle {
  font-size: 0.95rem;
  color: rgba(240,232,245,0.5);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--violet), var(--orange));
  margin: 0.8rem 0 2.5rem;
  border-radius: 2px;
}

/* ── CARDS INFO (accueil) ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.info-card {
  background: var(--gris);
  border: 1px solid rgba(224,96,240,0.15);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  transition: border-color 0.3s, transform 0.3s;
}
.info-card:hover {
  border-color: var(--violet);
  transform: translateY(-4px);
}

.info-card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 0.7rem;
}

.info-card p, .info-card li {
  font-size: 0.95rem;
  color: rgba(240,232,245,0.75);
  line-height: 1.6;
}
.info-card ul { list-style: none; }
.info-card ul li::before { content: "—  "; color: var(--violet); }

/* ── PHOTO STRIP (accueil) ── */
.photo-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 260px;
  gap: 4px;
  border-radius: 8px;
  overflow: hidden;
}
.photo-strip-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.photo-strip-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(224,96,240,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-strip-item:hover::after { opacity: 1; }
.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.photo-strip-item:hover img { transform: scale(1.06); }

/* ── PAGE HEADER (pages internes) ── */
.page-header {
  padding: 130px 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(224,96,240,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-header h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.06em;
  color: var(--violet);
  text-shadow: var(--glow-violet);
  line-height: 1;
}
.page-header p {
  font-size: 1rem;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 0.8rem;
}

/* ── MENU ── */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.menu-block {
  background: var(--gris);
  border: 1px solid rgba(224,96,240,0.12);
  border-radius: 8px;
  padding: 2rem;
}
.menu-block.full-width {
  grid-column: 1 / -1;
}

.menu-block-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  text-shadow: var(--glow-orange);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-name {
  font-size: 0.95rem;
  color: var(--blanc);
  flex: 1;
}
.menu-item-desc {
  font-size: 0.78rem;
  color: rgba(240,232,245,0.45);
  display: block;
  margin-top: 0.2rem;
}

.menu-item-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  color: var(--violet);
  white-space: nowrap;
}

/* Prix multi-tailles bières */
.price-cols {
  display: flex;
  gap: 0.8rem;
}
.price-col { text-align: right; }
.price-col small {
  display: block;
  font-size: 0.7rem;
  color: rgba(240,232,245,0.4);
  font-family: 'Nunito', sans-serif;
}

.menu-header-prices {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--orange);
}
.menu-header-prices span { width: 40px; text-align: right; }

.menu-note {
  font-size: 0.8rem;
  color: rgba(240,232,245,0.4);
  font-style: italic;
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.menu-asterisk {
  font-size: 0.82rem;
  color: rgba(240,232,245,0.5);
  margin-top: 2.5rem;
  padding: 1.2rem;
  background: rgba(240,160,32,0.06);
  border-left: 3px solid var(--orange);
  border-radius: 0 4px 4px 0;
  line-height: 1.6;
}

/* ── ÉVÉNEMENTS ── */
.events-month {
  margin-bottom: 3.5rem;
}
.month-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.5rem;
  color: var(--orange);
  text-shadow: var(--glow-orange);
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.month-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.event-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: var(--gris);
  border: 1px solid rgba(224,96,240,0.1);
  border-radius: 8px;
  margin-bottom: 0.8rem;
  transition: border-color 0.3s, transform 0.2s;
}
.event-card:hover {
  border-color: var(--violet);
  transform: translateX(6px);
}

.event-date {
  min-width: 90px;
  text-align: center;
}
.event-date .day-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--orange);
  text-transform: uppercase;
}
.event-date .day-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  color: var(--violet);
  line-height: 1;
  text-shadow: var(--glow-violet);
}
.event-date .month-short {
  font-size: 0.75rem;
  color: rgba(240,232,245,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-info { flex: 1; }
.event-type {
  font-size: 0.75rem;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.2rem;
}
.event-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--blanc);
  line-height: 1.2;
}
.event-details {
  font-size: 0.85rem;
  color: rgba(240,232,245,0.5);
  margin-top: 0.3rem;
}

.event-tba {
  opacity: 0.5;
  font-style: italic;
}

.events-coming {
  text-align: center;
  padding: 3rem;
  background: var(--gris);
  border: 1px dashed rgba(224,96,240,0.3);
  border-radius: 8px;
  color: rgba(240,232,245,0.5);
  font-size: 0.95rem;
}
.events-coming strong { color: var(--violet); }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info-icon {
  font-size: 1.5rem;
  min-width: 40px;
  text-align: center;
  margin-top: 2px;
}
.contact-info-item h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 0.3rem;
}
.contact-info-item p, .contact-info-item a {
  font-size: 0.95rem;
  color: rgba(240,232,245,0.75);
  text-decoration: none;
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--violet); }

.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(224,96,240,0.2);
  box-shadow: var(--glow-violet);
}
.map-container iframe {
  width: 100%;
  height: 380px;
  border: none;
  display: block;
}

.horaires-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}
.horaires-table tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.horaires-table td {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(240,232,245,0.75);
}
.horaires-table td:first-child {
  color: var(--blanc);
  font-weight: 600;
  width: 50%;
}
.horaires-table .ouvert { color: var(--violet); }
.horaires-table .ferme { color: rgba(240,232,245,0.3); }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  text-decoration: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  transition: all 0.2s;
}
.social-btn.facebook {
  background: rgba(24,119,242,0.15);
  color: #4a9ff5;
  border: 1px solid rgba(24,119,242,0.3);
}
.social-btn.facebook:hover { background: rgba(24,119,242,0.3); transform: translateY(-2px); }
.social-btn.instagram {
  background: rgba(193,53,132,0.12);
  color: #e1508a;
  border: 1px solid rgba(193,53,132,0.3);
}
.social-btn.instagram:hover { background: rgba(193,53,132,0.28); transform: translateY(-2px); }
  background: rgba(240,160,32,0.12);
  color: var(--orange);
  border: 1px solid rgba(240,160,32,0.3);
}
.social-btn.google:hover { background: rgba(240,160,32,0.25); transform: translateY(-2px); }

/* ── GALERIE PHOTOS ── */
.gallery-grid {
  columns: 3;
  column-gap: 8px;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item::after {
  content: '🔍';
  position: absolute;
  inset: 0;
  background: rgba(224,96,240,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.04); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-size: 2.5rem;
  color: var(--violet);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid rgba(224,96,240,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
}
footer img {
  height: 200px;
  margin-bottom: 1rem;
  opacity: 0.9;
}
footer p {
  font-size: 0.8rem;
  color: rgba(240,232,245,0.3);
  letter-spacing: 0.08em;
}
footer a {
  color: var(--violet);
  text-decoration: none;
}
footer a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(8,8,8,0.98);
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(224,96,240,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.8rem 2rem; font-size: 1.3rem; }
  .burger { display: flex; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-block.full-width { grid-column: 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .photo-strip { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px; }
  .photo-strip-item:first-child { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .gallery-grid { columns: 1; }
}
