@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Playfair+Display:wght@600&display=swap');

:root {
  --color-black: #020202;
  --color-dark: #0f0f0f;
  --color-gold: #caa15b;
  --color-white: #fefefe;
  --color-grey: #a7a7a7;
  --radius-soft: 28px;
  --shadow-soft: 0 30px 65px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}


.module {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
}

.hero-section + .section {
  margin-top: 0;
  padding-top: 2rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.8)), url('../media/images/murima-night-flyer.jpg');
  background-size: cover;
  background-position: center;
  filter: saturate(1.1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(209, 31, 38, 0.75), rgba(0, 0, 0, 0.85));
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 3rem 1.5rem;
  max-width: 820px;
  z-index: 2;
  border-radius: var(--radius-soft);
  background: rgba(2, 2, 2, 0.6);
  box-shadow: var(--shadow-soft);
}

.hero-content,
.hero-content h1,
.hero-content p {
  color: var(--color-white);
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--color-grey);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.section {
  padding: 4rem 0;
}

.section-divider {
  background: var(--color-white);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
  margin: 2rem 0;
  color: #020202;
}

.section-divider h2,
.section-divider p {
  color: #020202;
}

.section-divider#powered {
  background: linear-gradient(135deg, #d11f26, #0b0b0b);
  color: #ffffff;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.5);
}

.section-divider#powered h2,
.section-divider#powered p {
  color: #ffffff;
}

.section-divider#details {
  background: var(--color-white);
  color: #020202;
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.15);
}

.section-divider#details h2,
.section-divider#details p {
  color: #020202;
}

.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #020202;
}

.section-header p {
  color: var(--color-grey);
  max-width: 620px;
  margin: 0.6rem auto 0;
}

.overview-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  color: #0f0f0f;
}

.detail-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #d11f26, #040404);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  color: #ffffff;
}

.detail-card h3,
.overview-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.detail-card h3 {
  color: #ffffff;
}

.detail-card p,
.detail-card li {
  color: rgba(255, 255, 255, 0.95);
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  justify-items: center;
  text-align: center;
}

.countdown-card {
  position: relative;
  background: linear-gradient(135deg, rgba(209, 31, 38, 0.95), rgba(4, 4, 4, 0.95));
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  padding: 1.8rem 1.2rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 45px rgba(6, 6, 6, 0.3);
  overflow: hidden;
}

.countdown-number {
  display: block;
  font-size: clamp(2.8rem, 5vw, 3.4rem);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.15em;
  animation: pulseGlow 1.6s ease-in-out infinite;
}

.countdown-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.25rem;
}

.countdown-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(209, 31, 38, 0.25), rgba(0, 0, 0, 0));
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.countdown-card:hover::after {
  opacity: 1;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 8px rgba(209, 31, 38, 0.8);
  }
  50% {
    text-shadow: 0 0 16px rgba(209, 31, 38, 1);
  }
  100% {
    text-shadow: 0 0 8px rgba(209, 31, 38, 0.8);
  }
}

.section-divider#details .detail-card p,
.section-divider#details .detail-card li {
  color: #ffffff;
}

.detail-card p {
  color: rgba(255, 255, 255, 0.95);
}

.flyer-frame {
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.powered-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.powered-logo {
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: #ffffff;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: #0f0f0f;
}

.map-frame {
  border-radius: var(--radius-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 960px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-end;
  }

  .btn {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 2.5rem 1.2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .hero-section {
    height: auto;
    min-height: 75vh;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
  }
}

@media (max-height: 700px) {
  .hero-section {
    height: auto;
    min-height: 70vh;
  }
}
