/* Logo + texte superposés dans le hero */
.logo-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  min-height: 220px;
}
.logo-img {
  width: 700px;
  height: auto;
  display: block;
  margin-left: 80px; /* décale la guitare vers la droite */
  z-index: 1;
}
.logo-text {
  position: absolute;
  left: 0;
  top: 18%;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
.logo-text h1 {
  margin: 0;
  font-size: clamp(42px, 8vw, 96px);
  color: var(--accent-2);
  text-shadow: 0 2px 12px rgba(255,255,255,0.7), 0 1px 0 #fff;
}

:root {
  --bg: #edf0f8;           /* fond très clair */
  --bg-soft: #e7e8f0;      /* sections légèrement contrastées */
  --text: #232323;         /* texte gris foncé */
  --muted: #7a7a7a;        /* gris doux pour le texte secondaire */
  --accent: #1c2e86;       /* vert vif pour accent principal */
  --accent-2: #08044e;     /* vert plus profond pour accent secondaire */
  --shadow: 0 10px 30px rgba(0,0,0,.08); /* ombre douce */
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.6 "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(244, 244, 249, 0.95), rgba(244, 243, 247, 0.85) 60%, rgba(247,246,243,0));
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
}

.zikhub-link {
  font-weight: 800;
  letter-spacing: 2px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  color: var(--text);           /* foncé pour header clair */
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: 4px;
  transition: color 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.zikhub-link:hover,
.zikhub-link:focus {
  color: var(--accent);             /* couleur accent FUNK.IT au survol */
  outline: none;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
}
.nav a:hover { opacity: 1; color: var(--accent-2); }

.section { padding: 30px 0; }
.section h2 { font-size: 36px; margin: 0 0 24px; letter-spacing: .5px; }

/* HERO */
.hero { position: relative; min-height: 88vh; display: grid; place-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    /* Orange clair radial glow top-left */
    radial-gradient(
      1000px 700px at 50% 25%,
      rgba(140, 144, 137, 0.18),  /* accent plus doux */
      transparent 60%
    ),
    /* Fond très clair */
    linear-gradient(180deg, var(--bg), var(--bg) 60%, var(--bg));
  transform: translateZ(0);
}
.hero-content {padding: 120px 0; position: relative; z-index: 1; text-align: center; }
.hero h1 { font-size: clamp(42px, 8vw, 96px); line-height: 1.02; margin: 0 0 10px; }
.hero h1 span { color: var(--accent); }
.hero p { color: var(--muted); margin: 0 0 26px; font-size: 18px; }

/* Typewriter effect */
.typewriter {
  color: var(--accent-2);
  border-right: 3px solid var(--accent-2);
  animation: blink 1s infinite;
  min-width: 60px;
  display: inline-block;
}

@keyframes blink {
  0%, 50% { border-color: var(--accent-2); }
  51%, 100% { border-color: transparent; }
}
.cta {
  display: inline-block;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  padding: 12px 22px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.cta.small { padding: 8px 14px; font-size: 14px; }

/* SHOWS */
.featured { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 24px; }
.card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 6px; }
.card p { margin: 6px 0; color: var(--muted); }

.list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.list li {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 14px;
}
.list .title { font-weight: 600; }
.list .meta { color: var(--muted); font-size: 14px; }
.list a { color: var(--accent-2); text-decoration: none; }

.list li.past {
  background: #f0ede7cc;
  position: relative;
  opacity: 0.6;
}


.photos {background: linear-gradient(180deg, transparent, var(--bg-soft)); }

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  row-gap: 16px; /* space between images */
  column-gap: 0px; /* space between images */
  max-width: 1300px;  /* limite la largeur totale pour 4 images max */
  padding: 5px;
}

.gallery img {
  width: 200px;        /* thumbnail size */
  aspect-ratio: 1 / 1.2;
  object-fit: cover;    /* crops without distortion */
  border-radius: 4px;   /* optional: rounded corners */
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05); /* subtle hover zoom */
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  padding: 20px;
}

.lightbox.show {
  display: flex;
  animation: fadeIn 0.4s ease-out;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.8);
  animation: zoomIn 0.4s ease-out;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 40px;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10000;
  opacity: 0.8;
}
.close-btn:hover { opacity: 1; }

/* Navigation arrows */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 60px;
  color: white;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  padding: 10px 18px;
  border-radius: 8px;
  z-index: 10000;
  opacity: 0.8;
  user-select: none;
  transition: background 0.2s, opacity 0.2s;
}

.nav-btn:hover {
  background: rgba(255,255,255,0.15);
  opacity: 1;
}

.left-btn { left: 20px; }
.right-btn { right: 20px; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.85); }
  to   { transform: scale(1); }
}


.site-footer { padding: 40px 0; border-top: 1px solid #ececec; }
.site-footer p { margin: 0; color: var(--muted); text-align: center; }

/* Parallax basics */
.parallax { will-change: transform; }

@media (max-width: 1000px) {
  .list { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .featured { grid-template-columns: 1fr; }
  .list { grid-template-columns: 1fr; }
}



