@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --red-dark: #7e1a1a;
  --red-mid: #b83535;
  --red-light: #e8c0c0;
  --cream: #F5EFE4;
  --cream-dark: #e0d8c8;
  --text-dark: #222222;
}

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

html {
  scroll-behavior: smooth;
  min-height: 100%;
  background: linear-gradient(to bottom, #7e1a1a 0%, #cc4040 55%, #f5d8d8 100%);
}

body {
  min-height: 100vh;
  font-family: 'Bebas Neue', Impact, sans-serif;
  background: transparent;
}

/* ===== PAGE WRAPPER ===== */
.page {
  min-height: 100vh;
  padding: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
nav {
  background: var(--cream);
  border-radius: 18px;
  padding: 24px 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  position: relative;
}

.nav-logo {
  order: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}

.nav-links {
  order: 1;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-toggle {
  order: 2;
}

nav a.nav-link {
  color: var(--red-dark);
  text-decoration: none;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
  white-space: nowrap;
}

nav a.nav-link:hover {
  opacity: 0.55;
}

nav a.nav-link.active {
  border-bottom: 2px solid var(--red-dark);
  padding-bottom: 1px;
}

.logo-svg {
  height: 100px;
  width: auto;
  color: var(--red-dark);
  display: block;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--red-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

nav.open .menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
nav.open .menu-toggle span:nth-child(2) {
  opacity: 0;
}
nav.open .menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px 90px;
  color: var(--cream);
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  letter-spacing: 0.12em;
  line-height: 0.9;
  text-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.hero-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.75rem, 1.8vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.4em;
  margin-top: 18px;
  text-transform: uppercase;
  opacity: 0.85;
}

.hero-next {
  margin-top: 64px;
  background: rgba(245, 239, 228, 0.12);
  border: 1px solid rgba(245, 239, 228, 0.25);
  border-radius: 14px;
  padding: 28px 56px;
  color: var(--cream);
  text-align: center;
}

.hero-next .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 10px;
}

.hero-next .event-name {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  letter-spacing: 0.12em;
}

.hero-next .event-details {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 6px;
  letter-spacing: 0.12em;
}

.hero-next .event-details span {
  margin: 0 8px;
  opacity: 0.5;
}

/* ===== CONTENT CARD ===== */
.content-card {
  background: var(--cream);
  border-radius: 18px;
  padding: 60px;
  margin-bottom: 24px;
}

/* ===== PAGE TITLE ===== */
.page-title {
  color: var(--red-dark);
  font-size: clamp(2.8rem, 6vw, 5rem);
  letter-spacing: 0.12em;
  margin-bottom: 44px;
  line-height: 1;
}

/* ===== ORIGIN PAGE ===== */
.origin-body {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-dark);
  max-width: 760px;
}

.origin-body p + p {
  margin-top: 1.4rem;
}

.origin-body strong {
  font-weight: 600;
  color: var(--red-dark);
}

.origin-img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
  margin: 40px 0;
}

.pull-quote {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--red-mid);
  letter-spacing: 0.08em;
  border-left: 5px solid var(--red-mid);
  padding-left: 24px;
  margin: 44px 0;
  line-height: 1.2;
  max-width: 700px;
}

.origin-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-item {
  background: white;
  border-radius: 12px;
  padding: 28px 24px;
  border: 2px solid var(--red-light);
}

.value-item h3 {
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  color: var(--red-dark);
}

.value-item p {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #555;
}

/* ===== PAST EVENTS PAGE ===== */
.year-section {
  margin-bottom: 48px;
}

.year-label {
  color: var(--red-mid);
  font-size: 2rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--cream-dark);
  padding-bottom: 10px;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--red-light);
  transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(126, 26, 26, 0.12);
}

.event-card-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--red-light);
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.event-card-body {
  padding: 18px 20px 20px;
  color: var(--red-dark);
}

.event-card-name {
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}

.event-card-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--red-mid);
  letter-spacing: 0.06em;
}

.event-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--red-light);
  color: var(--red-dark);
  background: rgba(126, 26, 26, 0.04);
}

/* ===== LOCALS PAGE ===== */
.locals-intro-more {
  display: none;
  margin-top: 1.2rem;
}

.locals-intro-more p + p {
  margin-top: 1.2rem;
}

.locals-intro-more.open {
  display: block;
}

.read-more-btn {
  background: none;
  border: none;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--red-dark);
  cursor: pointer;
  margin-top: 14px;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.2s;
  display: block;
}

.read-more-btn:hover {
  opacity: 0.6;
}

.locals-intro {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  max-width: 680px;
  margin-top: 64px;
  margin-bottom: 48px;
}

.locals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 28px;
}

.local-card {
  text-align: center;
}

.local-avatar {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--cream-dark);
}

.local-card.founder {
  border: 3px solid var(--red-mid);
  border-radius: 16px;
  padding: 10px;
  background: rgba(184, 53, 53, 0.06);
}

.local-role strong {
  font-weight: 700;
  color: var(--red-dark);
}

.local-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.local-name {
  color: var(--red-dark);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
}

.local-role {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--red-mid);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 4px;
}

.local-bio {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: #555;
  line-height: 1.6;
  margin-top: 10px;
}

/* ===== BOOK US PAGE ===== */
.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.booking-info h2 {
  color: var(--red-dark);
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  margin-top: 28px;
}

.booking-info h2:first-child {
  margin-top: 0;
}

.booking-info p {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 8px;
}

.contact-block {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item strong {
  font-family: 'Bebas Neue', sans-serif;
  color: var(--red-dark);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  display: block;
  margin-bottom: 2px;
}

.contact-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--text-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  color: var(--red-dark);
}

input,
textarea,
select {
  padding: 12px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--text-dark);
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--red-mid);
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  background: var(--red-dark);
  color: var(--cream);
  border: none;
  padding: 15px 36px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.18em;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-submit:hover {
  background: var(--red-mid);
  transform: translateY(-2px);
}

/* ===== MODAL ===== */
.modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(80, 10, 10, 0.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal {
  background: white;
  border-radius: 18px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modal-in 0.2s ease;
}

@keyframes modal-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-header {
  background: var(--red-dark);
  color: white;
  padding: 28px 32px 24px;
  border-radius: 18px 18px 0 0;
}

.modal-header .modal-number {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 6px;
}

.modal-header .modal-title {
  font-size: 2.2rem;
  letter-spacing: 0.1em;
  line-height: 1;
}

.modal-header .modal-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  opacity: 0.8;
  margin-top: 8px;
  letter-spacing: 0.06em;
}

.modal-body {
  padding: 28px 32px 32px;
}

.modal-description {
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.modal-photos-btn {
  display: inline-block;
  margin-bottom: 24px;
  padding: 9px 22px;
  border: 2px solid var(--red-dark);
  border-radius: 8px;
  color: var(--red-dark);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.modal-photos-btn:hover {
  background: var(--red-dark);
  color: var(--cream);
}

.modal-section-title {
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--red-dark);
  margin-bottom: 10px;
}

.modal-lineup {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.modal-lineup li {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: #333;
  padding: 8px 14px;
  background: var(--cream);
  border-radius: 8px;
  border-left: 3px solid var(--red-mid);
}

.modal-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.modal-stat {
  background: var(--cream);
  border-radius: 10px;
  padding: 16px 18px;
  text-align: center;
}

.modal-stat .stat-value {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--red-dark);
  line-height: 1;
}

.modal-stat .stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

.modal-stat .stars {
  font-size: 1.3rem;
  color: var(--red-mid);
  letter-spacing: 0.05em;
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 1.4rem;
  line-height: 1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.modal-close:hover {
  background: rgba(255,255,255,0.25);
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 36px 20px;
  color: rgba(245, 239, 228, 0.5);
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-logo {
  display: block;
  margin: 0 auto 16px;
  height: 80px;
  width: auto;
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 820px) {
  .origin-values {
    grid-template-columns: 1fr;
  }

  .booking-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page {
    padding: 12px;
  }

  nav {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
  }

  .nav-logo {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 0;
    background: var(--cream);
    border-radius: 0 0 18px 18px;
    padding: 12px 0 20px;
    z-index: 100;
  }

  nav.open .nav-links {
    display: flex;
  }

  .nav-group {
    flex-direction: column;
    gap: 0;
    width: 100%;
    text-align: center;
  }

  .nav-group a.nav-link {
    font-size: 1.4rem;
    padding: 10px 0;
    display: block;
    border-bottom: none !important;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-svg {
    height: 70px;
  }

  .hero {
    padding: 44px 12px 64px;
  }

  .hero-next {
    padding: 20px 24px;
    width: 100%;
    max-width: 100%;
  }

  .content-card {
    padding: 28px 22px;
  }

  .page-title {
    margin-bottom: 28px;
  }

  .events-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .locals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .origin-values {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .events-grid {
    grid-template-columns: 1fr;
  }

  .hero-next {
    padding: 18px 18px;
  }
}

/* ===== CO-HOST PAGE ===== */
.cohost-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}

.cohost-photo {
  opacity: 1;
}

.cohost-card {
  background: var(--card-bg, #fff);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 32px 28px;
}

.cohost-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--red-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
}

.cohost-title {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cohost-text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin: 0;
}

.cohost-text strong {
  font-weight: 600;
  color: var(--red-dark);
}

@media (max-width: 700px) {
  .cohost-options {
    grid-template-columns: 1fr;
  }
}

/* ===== CO-HOST PAGE — BLUE THEME ===== */
:root {
  --blue: #1c1990;
  --blue-mid: #3533b0;
  --blue-light: rgba(28, 25, 144, 0.08);
}

html:has(body.cohost-page) {
  background: linear-gradient(to bottom, #1c1990 0%, #3533b0 55%, #d8d8f5 100%);
}

.cohost-page nav {
  background: #e8e8f5;
}

.cohost-page nav a.nav-link {
  color: var(--blue);
}

.cohost-page nav a.nav-link.active {
  border-bottom-color: var(--blue);
}

.cohost-page .menu-toggle span {
  background: var(--blue);
}

.cohost-page .content-card {
  background: #e8e8f5;
}

.cohost-page .page-title {
  color: var(--blue);
}

.cohost-page .origin-body p {
  color: var(--blue);
}

.cohost-page .cohost-card {
  border-color: rgba(28, 25, 144, 0.15);
  background: #fff;
}

.cohost-page .cohost-label {
  color: var(--blue);
}

.cohost-page .cohost-title {
  color: var(--blue);
}

.cohost-page .cohost-text {
  color: #222;
}

.cohost-page .cohost-text strong {
  color: var(--blue);
}

.cohost-page footer {
  color: rgba(28, 25, 144, 0.45);
}

.logo-mobile { display: none; }

/* ===== INSTAGRAM NAV ICON ===== */
.nav-insta {
  position: absolute;
  top: 14px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  opacity: 1;
  transition: opacity 0.2s;
}

.nav-insta:hover {
  opacity: 0.55;
}

.nav-insta-icon {
  height: 24px;
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .cohost-page .logo-desktop { display: none; }
  .cohost-page .logo-mobile { display: block; }
}
