/*
Theme Name: Marinaj Live
Theme URI: https://marinajlive.com
Author: Marinaj Live
Author URI: https://marinajlive.com
Description: Official one-page theme for Marinaj Live — Where the Community Comes Alive. Moreno Valley's premier live events company.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: marinaj-live
Tags: one-page, dark, events, community
*/

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #111111;
  color: #f5f0e8;
  font-family: 'Avenir Next', 'Avenir', 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
input, textarea, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── CSS VARIABLES ────────────────────────────────────────────────────────── */
:root {
  --gold: #D3B558;
  --gold-light: #DFC87A;
  --gold-dim: #A8893A;
  --charcoal: #111111;
  --charcoal-2: #1a1a1a;
  --charcoal-3: #242424;
  --charcoal-4: #2e2e2e;
  --cream: #f5f0e8;
  --cream-dim: rgba(245,240,232,0.65);
}

/* ── SCROLLBAR ────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

/* ── UTILITIES ────────────────────────────────────────────────────────────── */
.gold-rule { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 1.5rem; }
.gold-rule.left { margin-left: 0; }
.section-label {
  font-family: 'Cinzel', Georgia, serif;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
}
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); color: #111; }

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline:hover { background: var(--gold); color: #111; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  border: 1.5px solid rgba(245,240,232,0.35);
  color: var(--cream-dim);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn-ghost:hover { border-color: var(--cream); color: var(--cream); transform: translateY(-1px); }

/* ── ANNOUNCEMENT BANNER ──────────────────────────────────────────────────── */
.announcement-bar {
  background: var(--gold);
  color: #111;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.6rem 1rem;
}
.announcement-bar a { color: #111; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(17,17,17,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-nav.scrolled {
  background: rgba(17,17,17,0.97);
  border-bottom-color: rgba(211,181,88,0.2);
}
.site-logo { display: flex; align-items: center; gap: 10px; }
.site-logo img { height: 36px; width: 36px; object-fit: contain; }
.site-logo__text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.site-logo__marinaj {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: #D3B558;
  letter-spacing: 0.03em;
}
.site-logo__live {
  font-family: 'Avenir Next', 'Avenir', 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 10px;
  color: var(--cream);
  letter-spacing: 0.35em;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

/* ── HERO ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.35) 50%, rgba(17,17,17,0.85) 100%);
}
.hero__gold-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 2rem 4rem;
  max-width: 860px;
  margin: 0 auto;
}
.hero__title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero__scroll {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.4;
}
.hero__scroll span { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: var(--cream); }

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about { background: var(--charcoal-2); padding: 3rem 2rem; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about__title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.about__title em { color: var(--gold); font-style: italic; }
.about__text { color: var(--cream-dim); line-height: 1.8; font-size: 1.05rem; margin-bottom: 1.25rem; }
.about__img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about__img-grid img { width: 100%; object-fit: cover; display: block; }
.about__img-grid img:last-child { grid-column: 1 / -1; }
.about__img-offset { margin-top: 2rem; }

/* STATS */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(211,181,88,0.15);
  max-width: 1100px;
  margin: 2rem auto 0;
}
.stats-strip__item {
  background: var(--charcoal-2);
  padding: 2rem;
  text-align: center;
}
.stats-strip__num {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.stats-strip__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ── EVENTS ───────────────────────────────────────────────────────────────── */
.events { background: var(--charcoal); padding: 3rem 2rem; }
.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* EVENT CARD */
.event-card {
  background: var(--charcoal-3);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.event-card--featured {
  background: linear-gradient(135deg, #1e1a0e 0%, #1a1a1a 100%);
  border-color: rgba(211,181,88,0.5);
}
.event-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.event-card__body { padding: 1.75rem; }
.event-card__tags { display: flex; gap: 0.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.event-card__tag-featured {
  background: var(--gold);
  color: #111;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}
.event-card__tag {
  border: 1px solid rgba(211,181,88,0.4);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
}
.event-card__title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.event-card__date {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.event-card__desc { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.25rem; }
.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.event-card__price-label { font-size: 0.7rem; color: var(--cream-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.event-card__price {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
}

/* ── PAST EVENTS ──────────────────────────────────────────────────────────── */
.past-events { background: var(--charcoal-2); padding: 2.5rem 2rem; }
.past-events__placeholder {
  border: 1px solid rgba(211,181,88,0.2);
  padding: 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.past-events__icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
}
.past-events__heading {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--cream);
}
.past-events__sub { color: var(--cream-dim); max-width: 400px; line-height: 1.7; font-size: 0.9rem; }

/* ── GALLERY ──────────────────────────────────────────────────────────────── */
.gallery { background: var(--charcoal); padding: 3rem 2rem; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 8px;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery__item { overflow: hidden; position: relative; }
.gallery__item:first-child { grid-column: 1 / 3; }
.gallery__item:nth-child(6) { grid-column: 3 / 5; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,0);
  transition: background 0.3s;
}
.gallery__item:hover::after { background: rgba(17,17,17,0.25); }

/* ── TICKET CTA ───────────────────────────────────────────────────────────── */
.ticket-cta {
  position: relative;
  padding: 3.5rem 2rem;
  overflow: hidden;
  text-align: center;
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.ticket-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.ticket-cta__bg img { width: 100%; height: 100%; object-fit: cover; }
.ticket-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.95) 0%, rgba(17,17,17,0.82) 100%);
}
.ticket-cta__content { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.ticket-cta__title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.ticket-cta__title em { color: var(--gold); font-style: italic; }
.ticket-cta__sub {
  color: var(--cream-dim);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0 auto 3rem;
  max-width: 500px;
}
.ticket-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── EMAIL SIGNUP ─────────────────────────────────────────────────────────── */
.email-signup {
  background: var(--charcoal-3);
  padding: 3rem 2rem;
  border-top: 1px solid rgba(211,181,88,0.15);
  text-align: center;
}
.email-signup__title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
}
.email-signup__sub { color: var(--cream-dim); line-height: 1.8; margin-bottom: 2.5rem; font-size: 1.05rem; }
.email-signup__form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}
.email-signup__input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(211,181,88,0.3);
  border-right: none;
  color: var(--cream);
  padding: 0.9rem 1.25rem;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-signup__input:focus { border-color: var(--gold); }
.email-signup__note {
  color: rgba(245,240,232,0.3);
  font-size: 0.75rem;
  margin-top: 1rem;
}
.email-signup__success {
  border: 1px solid rgba(211,181,88,0.4);
  padding: 2.5rem;
  background: rgba(211,181,88,0.05);
  max-width: 480px;
  margin: 0 auto;
  display: none;
}
.email-signup__success-title {
  font-family: 'Lara', 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact { background: var(--charcoal-2); padding: 3rem 2rem; }
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.contact__info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.contact__info-icon { font-size: 1.3rem; margin-top: 0.1rem; flex-shrink: 0; }
.contact__info-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
  font-weight: 700;
  display: block;
}
.contact__info-val { color: var(--cream); line-height: 1.6; }
.contact__map-placeholder {
  width: 100%;
  height: 380px;
  background: repeating-linear-gradient(135deg, #222 0px, #222 18px, #1a1a1a 18px, #1a1a1a 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(245,240,232,0.3);
  font-family: monospace;
  font-size: 0.8rem;
  text-align: center;
}
.contact__parent-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  font-weight: 700;
  display: block;
}
.contact__parent-link {
  color: var(--cream-dim);
  font-size: 0.9rem;
  text-decoration: underline;
  text-decoration-color: rgba(211,181,88,0.4);
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.site-footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(211,181,88,0.2);
  padding: 3.5rem 2rem 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.footer__rule { width: 40px; height: 1px; background: var(--gold); margin: 1.25rem 0; }
.footer__tagline { color: var(--cream-dim); font-size: 0.9rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.footer__socials { display: flex; gap: 1rem; }
.footer__social {
  width: 40px; height: 40px;
  border: 1px solid rgba(211,181,88,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer__social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(211,181,88,0.07);
}
.footer__social svg { width: 20px; height: 20px; }
.footer__col-title {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer__nav { list-style: none; }
.footer__nav li { margin-bottom: 0.65rem; }
.footer__nav a { color: var(--cream-dim); font-size: 0.88rem; transition: color 0.2s; }
.footer__nav a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer__copy { color: rgba(245,240,232,0.3); font-size: 0.78rem; }
.footer__parent-link { color: var(--gold-dim); }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-strip { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links li:not(:last-child) { display: none; }
  .about__img-grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-template-rows: unset; }
  .gallery__item:first-child,
  .gallery__item:nth-child(6) { grid-column: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__btns,
  .ticket-cta__btns { flex-direction: column; align-items: center; }
  .email-signup__form { flex-direction: column; }
  .email-signup__input { border-right: 1px solid rgba(211,181,88,0.3); border-bottom: none; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
