/* ============ ROLLING STONED — Salou ============ */

:root {
  --bg: #15130f;
  --bg-2: #1e1a15;
  --cream: #f4efe2;
  --acid: #ffdb15;
  --acid-dark: #d9b900;
  --lips: #ea011e;
  --lips-dark: #b8021a;
  --muted: #b8b0a0;
  --panel: rgba(21, 19, 15, 0.66);
  --panel-solid: rgba(21, 19, 15, 0.9);
  --radius: 18px;
  --font-display: "Anton", sans-serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

[hidden] { display: none !important; }

/* ---------- Wordmark ---------- */
.wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--acid);
}
.hl-red { color: var(--lips); }
.hl-acid { color: var(--acid); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--acid {
  background: var(--acid);
  color: #191507;
  padding: 0.9rem 1.8rem;
  font-size: 1rem;
  box-shadow: 0 4px 24px rgba(255, 219, 21, 0.35);
}
.btn--acid:hover { background: #ffe75c; box-shadow: 0 6px 30px rgba(255, 219, 21, 0.5); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244, 239, 226, 0.4);
  padding: 0.85rem 1.8rem;
  font-size: 1rem;
}
.btn--ghost:hover { border-color: var(--cream); }

.btn--sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.2rem; font-size: 1.05rem; margin-top: 1rem; }

/* ---------- Age gate ---------- */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background:
    radial-gradient(80% 120% at 20% 0%, rgba(234, 1, 30, 0.25), transparent 55%),
    radial-gradient(70% 100% at 90% 100%, rgba(255, 219, 21, 0.12), transparent 50%),
    var(--bg);
}
.age-gate__card {
  max-width: 460px;
  width: 100%;
  background: var(--bg-2);
  border: 1px solid rgba(255, 219, 21, 0.18);
  border-radius: calc(var(--radius) + 8px);
  padding: 2.5rem 2.2rem;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.wordmark--gate { font-size: 1.8rem; margin-bottom: 0.3rem; }
.age-gate__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.4rem;
}
.age-gate__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.8rem;
}
.age-gate__text { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.6rem; }
.age-gate__buttons { display: grid; gap: 0.7rem; margin-bottom: 1.2rem; }
.age-gate__fine { font-size: 0.75rem; color: rgba(184, 176, 160, 0.7); }

.age-blocked {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--bg);
  text-align: center;
}
.age-blocked__emoji { font-size: 3rem; margin-bottom: 1rem; }
.age-blocked__card h1 { font-family: var(--font-display); margin-bottom: 0.6rem; }
.age-blocked__card p { color: var(--muted); max-width: 420px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.9rem 1.6rem;
  background: linear-gradient(rgba(21, 19, 15, 0.85), rgba(21, 19, 15, 0));
  transition: background 0.3s ease;
}
.nav.is-scrolled { background: var(--panel-solid); backdrop-filter: blur(10px); }
.nav__brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--acid);
  text-decoration: none;
  white-space: nowrap;
}
.nav__links {
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
}
.nav__links a {
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  opacity: 0.9;
}
.nav__links a:hover { color: var(--acid); opacity: 1; }
.nav__cta { white-space: nowrap; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__burger span {
  width: 24px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Background video ---------- */
.bg-video {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg-tint {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(21, 19, 15, 0.55), rgba(21, 19, 15, 0.72)),
    radial-gradient(100% 60% at 50% 100%, rgba(21, 19, 15, 0.85), transparent 60%);
}

/* ---------- Page / sections ---------- */
.page { position: relative; z-index: 1; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  text-align: center;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.7);
}
.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.2rem;
  font-size: 1.05rem;
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 6rem 1.5rem 3rem;
  position: relative;
}
.hero__kicker {
  font-size: 0.85rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero__name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 11vw, 8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--cream);
  text-shadow: 0 6px 40px rgba(0, 0, 0, 0.75);
}
.hero__salou {
  font-weight: 700;
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  letter-spacing: 0.65em;
  text-indent: 0.65em;
  margin-top: 1rem;
  color: var(--cream);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.hero__tag {
  margin-top: 1.2rem;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: var(--acid);
  font-weight: 600;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.8);
}
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  color: var(--cream);
  text-decoration: none;
  font-size: 1.6rem;
  opacity: 0.8;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--lips);
  color: var(--cream);
  padding: 0.55rem 0;
  transform: rotate(-1.2deg) scale(1.02);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}
.marquee__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Gallery ---------- */
.gallery { padding: 5rem 1.5rem; max-width: 1200px; margin: 0 auto; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-2);
  border: 1px solid rgba(244, 239, 226, 0.08);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery__item:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 2px rgba(255, 219, 21, 0.35);
}
.gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1rem 0.8rem;
  font-weight: 700;
  font-size: 0.95rem;
  background: linear-gradient(transparent, rgba(21, 19, 15, 0.88));
}

/* ---------- Stories ---------- */
.stories { padding: 3rem 1.5rem 5rem; max-width: 860px; margin: 0 auto; }
.stories .section-title { margin-bottom: 2rem; }
.stories__grid { display: grid; gap: 1rem; }

.story {
  background: var(--panel);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 239, 226, 0.1);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.story.is-open { border-color: rgba(255, 219, 21, 0.4); }

.story__head {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  padding: 1.2rem 1.4rem;
  cursor: pointer;
  text-align: left;
}
.story__head h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  font-weight: 400;
  flex: 1;
}
.story__emoji { font-size: 1.4rem; }
.story__plus {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--acid);
  transition: transform 0.25s ease;
}
.story.is-open .story__plus { transform: rotate(45deg); }

.story__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.story.is-open .story__body { max-height: 500px; }
.story__body > * { margin: 0 1.4rem 1.3rem; }
.story__body p { color: var(--cream); opacity: 0.92; }
.story__body strong { color: var(--acid); font-weight: 700; }

.join-list { list-style: none; display: grid; gap: 0.7rem; }
.join-list li { display: flex; align-items: center; gap: 0.8rem; }
.join-list li span {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--lips);
  color: var(--cream);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---------- Find us ---------- */
.contact { padding: 3rem 1.5rem 5rem; max-width: 1100px; margin: 0 auto; }
.contact .section-title { margin-bottom: 2rem; }
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.2rem;
}
.contact__photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 226, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
  grid-row: span 2;
}
.contact__photo img { width: 100%; height: 100%; object-fit: cover; }
.contact__photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.6rem 1rem 0.8rem;
  font-weight: 700;
  background: linear-gradient(transparent, rgba(21, 19, 15, 0.88));
}
.contact__info {
  background: var(--panel);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 239, 226, 0.1);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.contact__hours strong { color: var(--acid); font-size: 1.1rem; }
.contact__note { font-size: 0.85rem; color: var(--muted); }
.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 239, 226, 0.1);
  min-height: 220px;
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  border: 0;
  filter: grayscale(30%) contrast(1.05);
}

/* ---------- Footer ---------- */
.footer {
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  background: linear-gradient(transparent, rgba(21, 19, 15, 0.9));
  color: var(--muted);
  font-size: 0.9rem;
}
.footer .wordmark { margin-bottom: 0.5rem; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(10, 9, 7, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox__figure { max-width: min(1000px, 88vw); text-align: center; }
.lightbox__figure img {
  max-height: 74vh;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.8);
}
.lightbox__figure figcaption {
  margin-top: 1rem;
  color: var(--cream);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.lightbox__counter { color: var(--muted); font-size: 0.85rem; font-weight: 400; }
.lightbox__close,
.lightbox__nav {
  position: absolute;
  background: rgba(244, 239, 226, 0.1);
  border: 1px solid rgba(244, 239, 226, 0.2);
  color: var(--cream);
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}
.lightbox__close:hover,
.lightbox__nav:hover { background: rgba(255, 219, 21, 0.25); }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__nav--prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__photo { grid-row: auto; max-height: 340px; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--panel-solid);
    backdrop-filter: blur(10px);
    padding: 0.5rem 0;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 0.9rem 1.6rem; }
  .nav__cta { margin-left: auto; }
  .nav__burger { display: flex; margin-left: 0.4rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .lightbox { padding: 1rem; }
  .lightbox__nav--prev { left: 0.4rem; }
  .lightbox__nav--next { right: 0.4rem; }
}
