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

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  background: #f5f5f5;
}

/* LOGO BAR */
.logo-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}

.site-logo {
  max-height: 300px;
  width: auto;
  padding-bottom: 80px;
}

/* HERO */
.hero {
  background-image: url('img/header_bg_cropped.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  position: relative;
  color: #fff;
  text-align: center;
  padding: 10px 20px 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(40, 20, 80, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 8px 0 18px;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  font-size: 1rem;
  margin-bottom: 32px;
  opacity: 0.92;
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA BUTTON */
.cta-btn {
  background: #f5c518;
  color: #3a1f7a;
  border: none;
  padding: 16px 48px;
  border-radius: 40px;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 24px rgba(245, 197, 24, 0.4);
}

/* SECTIONS */
.section {
  padding: 56px 24px;
  max-width: 860px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #4b2d8f;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.footer-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

/* EXPECT GRID */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.expect-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}

.expect-icon {
  font-size: 2.2rem;
}

.expect-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #222;
}

.expect-card p {
  font-size: 0.85rem;
  color: #777;
  margin-top: 2px;
}

/* TICKETS */
.tickets-section {
  background: #8984c9;
  padding: 56px 24px;
}

.tickets-inner {
  max-width: 860px;
  margin: 0 auto;
}

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.ticket-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px 16px 18px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.ticket-card.featured {
  background: #f5c518;
}

.ticket-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
}

.ticket-price {
  font-size: 1.8rem;
  font-weight: 900;
  color: #4b2d8f;
}

.ticket-card.featured .ticket-price {
  color: #3a1f7a;
}

.ticket-desc {
  font-size: 0.8rem;
  color: #888;
}

.ticket-card.featured .ticket-desc {
  color: #3a1f7a;
}

.ticket-note {
  font-size: 0.72rem;
  color: #aaa;
  margin-top: 4px;
}

.ticket-card.featured .ticket-note {
  color: #3a1f7a;
}

.buy-btn {
  background: #4b2d8f;
  color: #fff;
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.buy-btn:hover {
  background: #3a1f7a;
}

.ticket-card.featured .buy-btn {
  background: #3a1f7a;
  color: #f5c518;
}

.ticket-card.featured .buy-btn:hover {
  background: #2d1660;
}

/* EVENT INFO */
.info-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 32px;
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  flex-wrap: wrap;
  gap: 20px;
}

.info-item {
  text-align: center;
}

.info-label {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 6px;
}

.info-item p {
  font-size: 0.9rem;
  color: #777;
}


/* RESPONSIVE */
@media (max-width: 640px) {
  .expect-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 2rem;
  }
}

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

/* PARTNERS SECTION */
.partners-section {
  background: #c08bfc;
  padding: 56px 24px;
  text-align: center;
}

.section-title-white {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 0 auto;
}

.partner-logo {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: filter 0.2s;
}

/* TICKET EMBED */
.tt-embed-wrapper {
  margin-top: 40px;
  border-radius: 14px;
  overflow: hidden;
}

/* 5-column ticket grid */
.tickets-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* PARTNERS SECTION */
.partners-section {
  background: #4b2d8f;
  padding: 56px 0;
  text-align: center;
  overflow: hidden;
}

.section-title-white {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.scroller-wrapper {
  overflow: hidden;
  width: 100%;
}

.logos-scroller {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: scroll-logos 18s linear infinite;
}

.partner-logo {
  max-height: 160px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}