@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600;1,700&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Pacifico&display=swap');

:root {
  --bg: #0a0908;
  --bg-elevated: #14120f;
  --panel: #181512;
  --cream: #eee2c7;
  --cream-soft: #d9ceb9;
  --paper: #f0e5d1;
  --ink: #201b16;
  --orange: #c84e2e;
  --orange-bright: #de5d3a;
  --gold: #cda45b;
  --gold-glow: rgba(205, 164, 91, 0.25);
  --muted: #aaa096;
  --line: rgba(238, 226, 199, 0.14);
  --line-strong: rgba(205, 164, 91, 0.35);
  --max: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-warm: 0 20px 50px rgba(0, 0, 0, 0.6);
}

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

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

body {
  background-color: var(--bg);
  color: #f5eee2;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* Subtle Film Grain Texture Overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: radial-gradient(#fff 0.6px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  z-index: 999;
}

.grain-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 998;
  opacity: 0.04;
  background: repeating-linear-gradient(0deg, transparent 0 2px, rgba(255, 255, 255, 0.15) 3px);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

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

button {
  font-family: inherit;
}

/* Kicker Text */
.kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b8afa2;
  margin-bottom: 14px;
  display: inline-block;
}

.kicker.orange {
  color: #e26947;
}

.kicker.gold {
  color: #cda45b;
}

/* Pill Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  width: fit-content;
}

.badge-live {
  background: rgba(200, 78, 46, 0.2);
  border: 1px solid rgba(200, 78, 46, 0.5);
  color: #ff7854;
}

.badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff5e36;
  box-shadow: 0 0 8px #ff5e36;
  animation: pulseDot 1.6s infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.3); }
}

.badge-gold {
  background: rgba(205, 164, 91, 0.15);
  border: 1px solid rgba(205, 164, 91, 0.4);
  color: #e4ad57;
}

/* Primary CTA Button */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  background: var(--orange);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 28px rgba(200, 78, 46, 0.3);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.cta:hover {
  background: var(--orange-bright);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200, 78, 46, 0.45);
  color: #ffffff;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--cream);
  box-shadow: none;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--line-strong);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cta-gold {
  background: #b58c4a;
  box-shadow: 0 10px 28px rgba(181, 140, 74, 0.3);
}

.cta-gold:hover {
  background: #cba25d;
  box-shadow: 0 16px 36px rgba(181, 140, 74, 0.45);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.nav-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 9, 8, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}

.nav-container {
  width: min(var(--max), calc(100% - 40px));
  height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: #f5eee2;
}

.logo-lockup img {
  width: 42px;
  height: 52px;
  object-fit: contain;
}

.logo-lockup b {
  color: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream-soft);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-links a.active {
  color: #e4ad57;
}

.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: #e4ad57;
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--cream);
  font-size: 18px;
  transition: all 0.2s ease;
}

.nav-instagram:hover {
  border-color: #e4ad57;
  color: #e4ad57;
  transform: translateY(-1px);
}

.nav-reg-btn {
  padding: 10px 20px;
  font-size: 12px;
  border-radius: 20px;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* Mobile Drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(15, 14, 12, 0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  padding: 30px 24px;
  flex-direction: column;
  gap: 20px;
  z-index: 99;
}

.mobile-drawer.open {
  display: flex;
}

.mobile-drawer a {
  font-size: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   HERO / MAIN EVENT #1: ONLINE OPEN MIC
   ========================================================================== */
.hero-section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(360px, 0.85fr) 1.15fr;
  gap: 56px;
  align-items: center;
  padding: 50px 0 80px;
}

/* Ambient backlight behind hero */
.hero-section::after {
  content: "";
  position: absolute;
  right: -5%;
  top: 15%;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 78, 46, 0.18) 0%, rgba(205, 164, 91, 0.05) 50%, transparent 70%);
  z-index: -1;
  pointer-events: none;
}

.hero-poster-box {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(238, 226, 199, 0.16);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-poster-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(200, 78, 46, 0.22);
}

.hero-poster-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-poster-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
}

.hero-title-group {
  margin-bottom: 24px;
}

.hero-title-group h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(62px, 7.5vw, 118px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: #fdfaf6;
  margin: 10px 0 18px;
}

.hero-title-group h1 span {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: #d8ccb7;
}

.hero-quote {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  font-style: italic;
  color: #e5dac9;
  line-height: 1.4;
  margin-bottom: 12px;
}

.hero-meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin: 20px 0 28px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(205, 164, 91, 0.12);
  border: 1px solid rgba(205, 164, 91, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4ad57;
  font-size: 18px;
}

.meta-texts {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9d9488;
}

.meta-val {
  font-size: 15px;
  font-weight: 700;
  color: #f7eee1;
}

.meta-val.price {
  color: #e26947;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.hero-note {
  font-family: "Pacifico", cursive;
  color: #d5c5ae;
  font-size: 20px;
  transform: rotate(-3deg);
  margin-top: 24px;
}

/* ==========================================================================
   EVENT #1 DETAILS / PERFORMER CATEGORIES SECTION
   ========================================================================== */
.openmic-details-section {
  position: relative;
  background: linear-gradient(180deg, rgba(20, 18, 15, 0.6) 0%, rgba(10, 9, 8, 0.95) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 85px 0;
}

.openmic-container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 700;
  line-height: 0.92;
  margin: 10px 0 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 45px;
}

.category-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  background: #1e1a16;
}

.category-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.category-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
  color: var(--cream);
}

.category-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.openmic-perks-box {
  background: rgba(205, 164, 91, 0.06);
  border: 1px dashed rgba(205, 164, 91, 0.3);
  border-radius: var(--radius-md);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.perks-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.perk-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #ded3c3;
}

.perk-item span.tick {
  color: #6edb8c;
  font-weight: 800;
}

/* ==========================================================================
   EVENT #2: DELHI SHOW — ADHURE MUSAFIR (SECOND POSITION)
   ========================================================================== */
.delhi-event-section {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
  border-bottom: 1px solid var(--line);
}

.delhi-grid {
  display: grid;
  grid-template-columns: 1fr minmax(380px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.delhi-content {
  display: flex;
  flex-direction: column;
}

.delhi-content h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 6.5vw, 96px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.04em;
  margin: 12px 0 16px;
}

.delhi-content h2 span {
  color: #e5dac9;
  font-style: italic;
}

.delhi-subtitle {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 24px;
  color: #dfd4c4;
  margin-bottom: 24px;
}

.delhi-details-list {
  border-top: 1px solid var(--line);
  margin-bottom: 28px;
}

.delhi-detail-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.delhi-detail-row i {
  color: #e4ad57;
  font-style: normal;
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.delhi-detail-row div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.delhi-detail-row b {
  font-size: 15px;
  color: #f7eee1;
}

.delhi-detail-row small {
  color: #9f9588;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Delhi Countdown Box */
.countdown-box {
  background: rgba(20, 18, 15, 0.85);
  border: 1px solid rgba(205, 164, 91, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 30px;
  backdrop-filter: blur(8px);
}

.countdown-title-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #cda45b;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.countdown-digits {
  display: flex;
  align-items: center;
  gap: 10px;
}

.digit-block {
  flex: 1;
  background: rgba(10, 9, 8, 0.9);
  border: 1px solid rgba(238, 226, 199, 0.12);
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
}

.digit-num {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1;
  color: #f5eee2;
}

.digit-label {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #9e9488;
  margin-top: 4px;
}

.digit-sep {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  color: #cda45b;
  opacity: 0.6;
  margin-bottom: 10px;
}

.delhi-poster-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-warm);
  border: 1px solid rgba(238, 226, 199, 0.14);
}

.delhi-poster-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.bms-btn {
  background: #c84e2e;
  color: #ffffff;
}

.bms-btn:hover {
  background: #de5d3a;
}

/* ==========================================================================
   COMMUNITY VALUES SECTION
   ========================================================================== */
.community-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.community-item {
  text-align: center;
  padding: 60px 24px;
  border-right: 1px solid var(--line);
}

.community-item:last-child {
  border-right: none;
}

.community-glyph {
  display: block;
  color: #d99a3d;
  font-size: 30px;
  margin-bottom: 14px;
}

.community-item h3 {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 12px;
  color: #f7eee1;
}

.community-item p {
  font-size: 13px;
  color: #9d958d;
  line-height: 1.6;
}

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 110px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--line);
}

.about-left h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: -0.04em;
  margin-top: 14px;
}

.about-left h2 em {
  font-style: italic;
  color: #d8ccb7;
}

.about-right {
  padding-top: 30px;
}

.about-right p {
  font-size: 18px;
  line-height: 1.8;
  color: #aaa198;
  margin-bottom: 24px;
}

/* ==========================================================================
   FOUNDERS SECTION
   ========================================================================== */
.founders-section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 95px 0;
  text-align: center;
}

.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 680px;
  margin: 40px auto 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.founder-card {
  padding: 36px 28px;
  border-right: 1px solid var(--line);
  transition: all 0.25s ease;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder-card:last-child {
  border-right: none;
}

.founder-card:hover {
  background: rgba(205, 164, 91, 0.08);
  transform: translateY(-2px);
}

.founder-sign {
  font-family: "Pacifico", cursive;
  font-size: 34px;
  color: #e1d2ba;
  margin-bottom: 10px;
  transform: rotate(-3deg);
}

.founder-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: #f7eee1;
  margin-bottom: 4px;
}

.founder-card span {
  font-size: 11px;
  color: #8d857b;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.founder-card small {
  display: inline-block;
  margin-top: 14px;
  color: #d99a3d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 50px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: #837a71;
  font-size: 12px;
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a:hover {
  color: #e4ad57;
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & PHONES)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-top: 30px;
  }

  .hero-poster-box {
    max-width: 480px;
    margin: 0 auto;
  }

  .delhi-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .delhi-poster-wrap {
    max-width: 480px;
    margin: 0 auto;
    order: -1;
  }

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

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

  .community-item:nth-child(2) {
    border-right: none;
  }

  .community-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 70px 0;
  }

  .about-right {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions .nav-reg-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title-group h1 {
    font-size: 64px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .community-section {
    grid-template-columns: 1fr;
  }

  .community-item {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .community-item:last-child {
    border-bottom: none;
  }

  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-card {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .founder-card:last-child {
    border-bottom: none;
  }

  .openmic-perks-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
