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

/* ===== COLORS ===== */
:root {
  --neon-green: #7eff3f;
  --hot-pink: #ff41b3;
  --sky-blue: #40b5ff;
  --deep-blue: #3f6fb7;
  --dark-text: #1a1a1a;
  --light-text: #fafafa;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont,
    sans-serif;
  background: #f5f5f5;
  color: var(--dark-text);
}

.container {
  width: min(1100px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--sky-blue);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}

.logo-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-square {
  width: 42px;
  height: 42px;
  background: var(--neon-green);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 0.9rem;
}

.logo-text {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* nav pills */
.nav-pills {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.nav-pills a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: #ff6fbf;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
}

.nav-pills a:hover {
  background: #ff8ed0;
}

/* mobile tweak */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-pills {
    align-self: flex-end;
  }
}

/* ===== HERO SECTION – FULL WIDTH ===== */
.hero {
  position: relative;
  min-height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  width: 100%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.75),
    rgba(0, 0, 0, 0.1)
  );
  padding-block: 2.5rem;
}

.hero-content {
  color: #ffffff;
}

.hero-content h1 {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: var(--neon-green);
  text-transform: uppercase;
}

.hero-date {
  margin-top: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.btn-heart {
  display: inline-block;
  margin-top: 0.9rem;
  padding: 0.55rem 1.6rem;
  background: var(--hot-pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 999px;
  box-shadow: 0 4px 0 #c6257c;
}

.btn-heart:hover {
  transform: translateY(1px);
  box-shadow: 0 2px 0 #c6257c;
}

/* ===== GENERIC SECTION STYLES ===== */
.section {
  padding-block: 3rem;
}

.section-pink {
  background: var(--hot-pink);
  color: #ffffff;
}

.section-green {
  background: var(--neon-green);
}

/* ===== PINK / ABOUT TEXT ===== */
.lime-heading {
  font-family: "Bungee", system-ui, sans-serif;
  text-transform: uppercase;
  color: var(--neon-green);
  font-size: clamp(1.2rem, 2.4vw, 1.5rem);
  line-height: 1.3;
}

.tagline {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffeaf8;
}

/* ===== BLUE EVENT BOX ===== */
.blue-box {
  margin-top: 1.25rem;
  padding: 1.4rem 1.3rem;
  background: #4f8ad0;
  border-radius: 6px;
  color: #ffffff;
}

.blue-intro {
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.blue-box h3 {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.event-list {
  list-style: none;
  font-size: 0.8rem;
}

.event-list li {
  position: relative;
  padding-left: 1.1rem;
  margin-bottom: 0.45rem;
}

.event-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--neon-green);
}

.event-label {
  font-weight: 700;
  text-transform: uppercase;
}

/* ===== CONTACT / GREEN SECTION ===== */
.green-grid {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 768px) {
  .green-grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }
}

/* fake retro TV frame for image */
.tv-frame {
  background: #f4d7a5;
  padding: 0.65rem;
  border-radius: 12px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.25);
}

.tv-frame img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

/* contact text */
.contact-copy h2 {
  font-family: "Bungee", system-ui, sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

.contact-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.contact-block {
  background: #181818;
  color: #ffffff;
  border-radius: 8px;
  padding: 1rem 1.1rem;
}

.contact-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bffb2;
  margin-top: 0.2rem;
  margin-bottom: 0.1rem;
}

.contact-link {
  font-size: 0.85rem;
  color: #ffffff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

/* socials row */
.icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.3rem;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--sky-blue);
  color: #000;
  font-weight: 700;
  font-size: 0.75rem;
  text-decoration: none;
}

.icon-pill:hover {
  background: #63c9ff;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #111111;
  color: #ffffff;
  padding-block: 1rem;
}

.footer-inner {
  font-size: 0.8rem;
  text-align: center;
}
