:root {
  --dark: #182327;
  --green: #4f5f36;
  --orange: #d9822b;
  --cream: #fff7ec;
  --light: #f5efe3;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--dark);
  background: var(--cream);
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  background: rgba(24,35,39,.96);
}

.navbar-brand {
  font-weight: 800;
}

.navbar-brand img,
.footer img {
  border-radius: 50%;
}

.navbar-brand img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  margin-right: 10px;
}

.nav-link {
  font-weight: 700;
}

.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(24,35,39,.72), rgba(24,35,39,.78)),
    url('images/hero.jpg') center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 90px 16px;
}

.hero-logo {
  width: min(92vw, 850px);
  display: block;
  margin: 0 auto 28px;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
}

.sponsor-hero {
  min-height: auto;
  background: var(--dark);
  color: white;
  display: block;
  text-align: center;
  padding: 80px 20px;
}

.eyebrow {
  color: #f4b66d;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: .9rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 10vw, 6rem);
  font-weight: 800;
  line-height: .95;
}

.hero .lead {
  max-width: 780px;
  margin: 20px auto;
  font-size: clamp(1.05rem, 4vw, 1.35rem);
}

.event-highlight {
  display: inline-block;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  padding: 10px 18px;
  margin-top: 12px;
  font-weight: 700;
}

.btn-warm,
.btn-home {
  display: inline-block;
  background: var(--orange);
  color: white !important;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn-warm {
  padding: 14px 28px;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}

.btn-home {
  padding: 12px 24px;
}

.btn-warm:hover,
.btn-home:hover {
  background: #bd6f22;
  color: white !important;
  text-decoration: none;
}

.btn-warm:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0,0,0,.2);
}

.btn-outline-light {
  border-radius: 999px;
  font-weight: 700;
  padding: 14px 28px;
}

.info-strip {
  background: var(--green);
  color: white;
  padding: 22px 14px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

.section {
  padding: 80px 16px;
}

.section-title {
  font-weight: 800;
  margin-bottom: 20px;
}

.quick-menu,
.vendor-band {
  background: var(--light);
}

.quick-menu {
  padding: 34px 16px;
}

.quick-menu-card,
.card-feature,
.schedule-item,
.location-card,
.sponsor-card {
  background: white;
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
  height: 100%;
}

.sponsor-card {
  text-align: center;
  padding: 30px;
}

.quick-menu-card {
  display: block;
  color: var(--dark);
  text-decoration: none;
  transition: .2s ease;
}

.quick-menu-card:hover {
  transform: translateY(-4px);
  color: var(--dark);
}

.icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.logo-placeholder {
  height: 120px;
  background: var(--light);
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #666;
}

.music-photo {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 16px 36px rgba(0,0,0,.18);
}

.schedule-time {
  color: var(--orange);
  font-weight: 800;
  text-transform: uppercase;
  font-size: .9rem;
  margin-bottom: 8px;
}

.beer-garden {
  background: linear-gradient(rgba(79,95,54,.92), rgba(79,95,54,.92));
  color: white;
}

.cause-section {
  background: var(--dark);
  color: white;
}

.map-wrap {
  overflow: hidden;
  border-radius: 22px;
  min-height: 360px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.footer {
  background: #11191c;
  color: white;
  padding: 40px 16px;
  text-align: center;
}

.footer img {
  width: 86px;
  margin-bottom: 14px;
}

@media (max-width: 576px) {
  .hero {
    min-height: auto;
    padding: 70px 12px;
  }

  .hero-logo {
    width: 94vw;
  }

  .section {
    padding: 60px 12px;
  }

  .btn-warm,
  .btn-outline-light {
    width: 100%;
    max-width: 320px;
  }
}