/* ═══════════════════════════════════════════════════
   RUSH! – Måneskin Tribute | Global Stylesheet
   Palette : noir profond · or/cuivre · blanc · rouge
   ═══════════════════════════════════════════════════ */

/* ─── Variables ─────────────────────────────────── */
:root {
  --clr-bg:        #0a0a0a;
  --clr-bg2:       #111111;
  --clr-bg3:       #161616;
  --clr-gold:      #c9a84c;
  --clr-gold-lt:   #e8c96a;
  --clr-red:       #b5232b;
  --clr-white:     #f5f5f5;
  --clr-gray:      #9a9a9a;
  --clr-border:    rgba(201,168,76,0.2);

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Raleway', sans-serif;

  --nav-h: 72px;
  --transition: .35s cubic-bezier(.4,0,.2,1);
  --radius: 4px;
}

/* ─── Reset & Base ──────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { display: block; max-width: 100%; height: auto; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }
input, select, textarea { font-family: var(--font-body); }

/* ─── Container ─────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── Sections ──────────────────────────────────── */
section {
  padding: 100px 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 1rem;
}
.section-label.centered { display: block; text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: .03em;
  margin-bottom: 3rem;
}
.section-title.centered { text-align: center; }

/* ─── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--clr-gold);
  color: #000;
}
.btn-primary:hover {
  background: var(--clr-gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,.4);
}

.btn-outline {
  border: 2px solid var(--clr-white);
  color: var(--clr-white);
}
.btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.btn.full-width { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,10,10,.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 40px rgba(0,0,0,.6);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.nav-logo img {
  height: 84px;
  width: auto;
  mix-blend-mode: screen;
  transition: opacity var(--transition);
}
.nav-logo:hover img { opacity: .75; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-white);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }

.btn-nav {
  padding: .5rem 1.4rem !important;
  background: var(--clr-gold) !important;
  color: #000 !important;
  border-radius: var(--radius);
}
.btn-nav:hover { background: var(--clr-gold-lt) !important; }
.btn-nav::after { display: none !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.burger span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.4) 50%,
    rgba(0,0,0,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp .8s ease both;
}

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

.hero-logo {
  width: min(320px, 60vw);
  mix-blend-mode: screen;
  drop-shadow: drop-shadow(0 0 40px rgba(201,168,76,.4));
  animation: fadeInUp .8s .1s ease both;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(.75rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--clr-gold);
  animation: fadeInUp .8s .2s ease both;
}

.hero-tagline {
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(245,245,245,.85);
  max-width: 540px;
  animation: fadeInUp .8s .3s ease both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .5rem;
  animation: fadeInUp .8s .4s ease both;
}

.hero-social {
  display: flex;
  gap: 1.4rem;
  margin-top: .5rem;
  animation: fadeInUp .8s .5s ease both;
}
.hero-social a {
  font-size: 1.3rem;
  color: rgba(245,245,245,.7);
  transition: color var(--transition), transform var(--transition);
}
.hero-social a:hover { color: var(--clr-gold); transform: translateY(-3px); }

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(245,245,245,.5);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════ */
#about {
  background: var(--clr-bg2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  border-radius: 2px;
  object-fit: cover;
  object-position: center top;
  aspect-ratio: 16/10;
  filter: saturate(.9);
  transition: filter var(--transition);
}
.about-img-wrap:hover img { filter: saturate(1.1); }

.about-img-accent {
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--clr-gold);
  border-radius: 2px;
  z-index: -1;
  opacity: .5;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 1.4rem;
  letter-spacing: .02em;
}

.about-text p {
  color: rgba(245,245,245,.8);
  margin-bottom: 1rem;
  font-size: .97rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}

.stat { text-align: center; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--clr-gold);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: .75rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--clr-gray);
  margin-top: .3rem;
}


/* ═══════════════════════════════════════════════════
   MEDIA
   ═══════════════════════════════════════════════════ */
#media {
  background: var(--clr-bg2);
}

.video-main {
  margin-bottom: 3.5rem;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: 0 20px 80px rgba(0,0,0,.6);
}
.video-responsive iframe,
.video-responsive #ytPlayer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Fallback si la vidéo YouTube est bloquée */
.yt-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: var(--clr-bg3);
  color: var(--clr-gray);
  font-size: .95rem;
  text-align: center;
  padding: 2rem;
}
.yt-fallback .btn {
  font-size: .9rem;
}

.video-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--clr-gray);
  font-size: .88rem;
  font-style: italic;
}
.video-caption small { font-size: .75rem; opacity: .7; }

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  filter: saturate(.8);
}
.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.1);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-overlay i {
  font-size: 1.8rem;
  color: var(--clr-gold);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ─── Lightbox ───────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.95);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  color: var(--clr-white);
  font-size: 1.5rem;
  padding: .8rem;
  transition: color var(--transition);
  background: rgba(0,0,0,.5);
  border-radius: 50%;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--clr-gold); }

.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }


/* ═══════════════════════════════════════════════════
   QUOTE
   ═══════════════════════════════════════════════════ */
#quote {
  background: var(--clr-red);
  padding: 60px 0;
}

#quote blockquote {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
}
#quote blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  letter-spacing: .04em;
  line-height: 1.2;
  color: var(--clr-white);
}
#quote blockquote cite {
  display: block;
  margin-top: 1rem;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(245,245,245,.65);
  font-style: normal;
}

/* ═══════════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════════ */
#booking {
  background: var(--clr-bg2);
}

.booking-centered {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.booking-intro {
  color: rgba(245,245,245,.8);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
}

/* ─── Contact cards ─────────────────────────────── */
.booking-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.4rem 2rem;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--clr-white);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: left;
}
.contact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}
.contact-card--email:hover { border-color: var(--clr-gold); }
.contact-card--insta:hover { border-color: #e1306c; }
.contact-card--fb:hover    { border-color: #1877f2; }

.contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-card--email .contact-card-icon { background: rgba(201,168,76,.15); color: var(--clr-gold); }
.contact-card--insta .contact-card-icon { background: rgba(225,48,108,.15);  color: #e1306c; }
.contact-card--fb    .contact-card-icon { background: rgba(24,119,242,.15);  color: #1877f2; }

.contact-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.contact-card-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--clr-gray);
}
.contact-card-value {
  font-size: .97rem;
  font-weight: 600;
  color: var(--clr-white);
}

.contact-card-arrow {
  font-size: .85rem;
  color: var(--clr-gray);
  transition: transform var(--transition), color var(--transition);
}
.contact-card:hover .contact-card-arrow {
  transform: translateX(4px);
  color: var(--clr-white);
}

/* ─── Location line ─────────────────────────────── */
.booking-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  font-size: .88rem;
  color: var(--clr-gray);
  padding-top: 2rem;
  border-top: 1px solid var(--clr-border);
}
.booking-location i { color: var(--clr-gold); }

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
#footer {
  background: #050505;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--clr-border);
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--clr-border);
}

.footer-logo {
  height: 80px;
  mix-blend-mode: screen;
  opacity: .85;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gray);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--clr-gold); }

.footer-social {
  display: flex;
  gap: 1.2rem;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  color: var(--clr-gray);
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  color: var(--clr-gray);
  font-size: .8rem;
}
.footer-bottom p + p { margin-top: .4rem; }
.footer-disclaimer { font-size: .73rem; opacity: .6; }

/* ═══════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-img-wrap {
    max-width: 700px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  section { padding: 70px 0; }

  .burger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .about-stats { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .gallery { grid-template-columns: 1fr; }
  .contact-card { flex-wrap: wrap; }
  .contact-card-value { font-size: .85rem; word-break: break-all; }
}

/* ─── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-gold); border-radius: 3px; }
