/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f4f7fb, #e9eef6);
  color: #1f2937;
  line-height: 1.6;
}

/* ================= GLOBAL ================= */
.section {
  padding: 42px 16px;
  text-align: center;
}

h1, h2, h3 {
  font-weight: 700;
}

h2 {
  margin-bottom: 22px;
  font-size: 1.6rem;
  color: #4338ca;
}

p {
  opacity: 0.9;
}

a {
  text-decoration: none;
}

/* ================= HERO ================= */
.hero {
  padding: 48px 16px;
  text-align: center;
  background: linear-gradient(160deg, #e0e7ff, #f8fafc);
}

.logo-main {
  width: 110px;
  margin: 0 auto 14px;
  display: block;
}

.hero-affiche {
  width: 100%;
  max-width: 7000px;
  margin: 22px auto;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  cursor: zoom-in;
}

.hero h1 {
  font-size: 1.7rem;
  margin-top: 14px;
}

.slogan {
  margin: 10px 0;
  font-size: 0.95rem;
}

/* ================= BUTTON ================= */
.btn-primary {
  display: inline-block;
  margin-top: 18px;
  padding: 14px 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f8cff, #7b5cff);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(99,102,241,0.35);
}

/* ================= ABOUT ================= */
.about-list {
  list-style: none;
  margin-top: 18px;
}

.about-list li {
  margin: 10px 0;
}

/* ================= CITY ================= */
.city {
  margin-bottom: 50px;
}

.city h3 {
  font-size: 1.35rem;
}

.lieu {
  opacity: 0.7;
  margin-bottom: 12px;
}

/* ================= SCROLL GALLERY ================= */
.scroll-gallery {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 12px 4px;
  scroll-snap-type: x mandatory;
}

.scroll-gallery img {
  width: 240px;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  scroll-snap-align: center;
  cursor: zoom-in;
  transition: transform 0.25s;
}

.scroll-gallery img:hover {
  transform: scale(1.03);
}

/* ================= LIKE ================= */
.like-btn {
  border: none;
  background: #eef2ff;
  color: #4338ca;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
}

.like-btn.liked {
  transform: scale(1.2);
  background: #c7d2fe;
}

/* ================= BILLETS ================= */
.city-billets {
  background: transparent;
}

.ticket {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  margin: 20px auto;
  max-width: 360px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  position: relative;
}

.ticket.vip {
  border: 2px solid #6366f1;
}

.price {
  font-size: 1.4rem;
  font-weight: bold;
}



/* ================= CONTACT ================= */
.contact {
  background: #ffffff;
}

.contact h2 {
  font-weight: 800;
  color: #7b5cff;
}

.contact p {
  font-weight: 700;
  color: #4338ca;
}

/* ================= SOCIAL ================= */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
}

/* ================= MOBILE ZOOM IMAGE ================= */
.image-zoom {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-zoom img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 14px;
}

/* ================= CITY PAGE ================= */
.city-page {
  padding: 24px 16px;
  max-width: 420px;
  margin: auto;
}

.city-header {
  background: linear-gradient(135deg, #6366f1, #7c3aed);
  color: white;
  padding: 22px;
  border-radius: 18px;
  text-align: center;
  margin-bottom: 24px;
}

.city-header h1 {
  font-size: 1.4rem;
}

.city-header p {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ================= TICKET CARD ================= */
.ticket {
  margin-top: 24px;
}

.ticket-desc {
  text-align: left;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.ticket-desc li {
  margin-bottom: 6px;
}

/* ================= COUNTER ================= */
.stock {
  margin: 10px 0;
  font-size: 0.9rem;
  font-weight: bold;
  color: #4f46e5;
}

/* ================= BACK BUTTON ================= */
.back-home {
  display: block;
  margin: 40px auto 10px;
  padding: 14px;
  text-align: center;
  border: 2px solid #6366f1;
  border-radius: 999px;
  font-weight: 700;
  color: #6366f1;
  max-width: 260px;
}

.social-icons img {
  width: 36px;
}

/* ================= ANIMATIONS ================= */
.fade-up {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.fade-delay-1 { animation-delay: 0.2s; }
.fade-delay-2 { animation-delay: 0.4s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= DESKTOP ================= */
@media (min-width: 768px) {
  .hero-affiche {
    max-width: 380px;
  }

  .scroll-gallery img {
  width: 1000px;          /* PLUS GRAND */
  height: 800px;
  object-fit: cover;
  border-radius: 16px;
  cursor: zoom-in;
  transition: transform 0.25s ease;
}
.scroll-gallery img:hover {
  transform: scale(1.05);
}
  /* ================= ZOOM IMAGE ================= */
.image-zoom {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.image-zoom img {
  max-width: 95%;
  max-height: 90%;
  border-radius: 18px;
}
.like-btn {
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.scroll-gallery img {
  cursor: zoom-in;
  pointer-events: auto;
  position: relative;
  z-index: 1;
}
}
