/* ============================================
   Board Games in Funchal — Stylesheet
   ============================================ */

@font-face {
  font-family: 'TAN Headline';
  src: url('../assets/fonts/TAN-Headline.ttf') format('truetype'),
       url('../assets/fonts/TAN-Headline.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:         #FDF6E3;
  --bg-alt:     #F5EDD4;
  --white:      #FFFFFF;
  --text:       #2D3436;
  --text-muted: #636E72;
  --green:      #1E5631;
  --green-dark: #153D22;
  --green-light:#2D7A47;
  --brown:      #8B4513;
  --brown-light:#A0522D;
  --shadow:     0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.12);
  --radius:     12px;
  --radius-lg:  20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

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

a {
  color: var(--green);
  text-decoration: none;
}
a:hover { text-decoration: underline; }

/* ---- Typography ---- */
.tan {
  font-family: 'TAN Headline', Georgia, serif;
}

h1, h2, h3 {
  font-family: 'TAN Headline', Georgia, serif;
  line-height: 1.2;
  color: var(--green);
}

h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); color: var(--brown); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout ---- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background: var(--bg-alt);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover { background: var(--green-light); }

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: var(--white);
}

.btn-brown {
  background: var(--brown);
  color: var(--white);
}
.btn-brown:hover { background: var(--brown-light); }

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0.75rem auto 0;
}

/* ---- Divider ---- */
.divider {
  width: 56px;
  height: 4px;
  background: var(--brown);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 227, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'TAN Headline', Georgia, serif;
  font-size: 1.05rem;
  color: var(--green);
  line-height: 1.2;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; color: var(--green-light); }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); text-decoration: none; }

.nav-cta { margin-left: 1rem; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: var(--text);
}

/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #1E5631 0%, #153D22 55%, #8B4513 100%);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Subtle board hex grid pattern */
.hero-decor::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #7FC97F;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

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

.hero-title {
  font-family: 'TAN Headline', Georgia, serif;
  font-size: clamp(2.2rem, 8vw, 5rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 1rem;
  font-style: italic;
}

.hero-intro {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

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

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* SVG decorations in hero */
.hero-svg-decor {
  position: absolute;
  opacity: 0.06;
}

/* ============================================
   ABOUT
   ============================================ */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  font-size: 1.05rem;
  color: var(--text);
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

/* 5th card spans full width so it sits centred on its own row */
.stat-card--record {
  grid-column: 1 / -1;
  border-top-color: #C9A84C;
}
.stat-card--record .stat-num {
  color: #C9A84C;
}

.stat-note {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border-top: 3px solid var(--green);
  transition: transform 0.2s;
}
.stat-card:hover { transform: translateY(-3px); }

.stat-card .stat-num {
  font-family: 'TAN Headline', Georgia, serif;
  font-size: 2.2rem;
  color: var(--green);
  display: block;
}
.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
#how-it-works .how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.how-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.how-card h3 {
  font-family: 'TAN Headline', Georgia, serif;
  font-size: 1rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.how-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ============================================
   VENUES
   ============================================ */
#venues .venues-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.venue-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--green);
  transition: transform 0.2s;
}
.venue-card.secondary { border-left-color: var(--brown); }
.venue-card.past      { border-left-color: #B2BEC3; opacity: 0.75; }
.venue-card:hover     { transform: translateY(-3px); }

.venue-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.venue-badge.main       { background: #D4EDDA; color: var(--green); }
.venue-badge.partner    { background: #FDE8D8; color: var(--brown); }
.venue-badge.past-badge { background: #EEE; color: #888; }

.venue-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 700;
}

.venue-addr {
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

/* ============================================
   EVENTS
   ============================================ */
#events .events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.event-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.event-card-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.event-card-header.tournament {
  background: linear-gradient(135deg, var(--brown) 0%, #5C2D0A 100%);
}

.event-card-header::after {
  content: '';
  position: absolute;
  right: -20px;
  top: -20px;
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}

.event-type-tag {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.event-card-header h3 {
  font-family: 'TAN Headline', Georgia, serif;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.3;
}

.event-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-meta {
  list-style: none;
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.event-meta li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}

.event-meta .icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--text-muted);
}

.event-card-body .btn {
  margin-top: auto;
  text-align: center;
}

.events-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  font-style: italic;
}

.events-cta {
  text-align: center;
}

/* Loading state */
.events-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(30,86,49,0.15);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Fallback / error state */
.events-fallback {
  text-align: center;
  padding: 2.5rem 0;
  color: var(--text-muted);
}
.events-fallback a {
  color: var(--green);
  font-weight: 600;
}

/* ============================================
   PARTNERSHIPS
   ============================================ */
#partnerships .partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

#partnerships .partner-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

@media (max-width: 640px) {
  #partnerships .partners-grid {
    grid-template-columns: 1fr;
  }
}

.partner-logo-placeholder {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--green), var(--brown));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
}

.partner-box h3 {
  font-family: 'TAN Headline', Georgia, serif;
  color: var(--green);
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.partner-box p {
  color: var(--text);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.partner-box .btn {
  font-size: 0.82rem;
  padding: 0.55rem 1.25rem;
}

/* ============================================
   TEAM
   ============================================ */
#team .team-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: transform 0.2s;
}
.team-card:hover { transform: translateY(-3px); }

.team-avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--brown));
  color: var(--white);
  font-family: 'TAN Headline', Georgia, serif;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
}

.team-avatar--photo {
  padding: 0;
  overflow: hidden;
}

.team-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.team-body h3 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.team-aka {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.team-role {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.team-body p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.team-body p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .team-card { flex-direction: column; gap: 1rem; }
}

/* ============================================
   CONTACT
   ============================================ */
#contact .contact-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-box > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.contact-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border-radius: 50px;
  padding: 0.85rem 1.5rem;
  box-shadow: var(--shadow);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: var(--green);
}

.contact-link svg {
  flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 2.5rem 0;
  text-align: center;
}

footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  font-family: 'TAN Headline', Georgia, serif;
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.88rem;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.footer-links a:hover {
  color: rgba(255,255,255,1);
  text-decoration: none;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ============================================
   GALLERY
   ============================================ */
#gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

.gallery-item {
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
  display: block;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 86, 49, 0);
  transition: background 0.25s ease;
  border-radius: var(--radius);
}

.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.88);
}

.gallery-item:hover::after {
  background: rgba(30, 86, 49, 0.15);
}


/* ---- Lightbox ---- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.93);
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

#lightbox-img {
  max-width: min(90vw, 600px);
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
  user-select: none;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  #gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

/* ============================================
   PRIVACY PAGE
   ============================================ */
.privacy-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.25rem 5rem;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}
.privacy-back:hover { text-decoration: underline; }

.privacy-wrap h1 {
  margin-bottom: 0.5rem;
}
.privacy-wrap .updated {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.privacy-wrap h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.privacy-wrap p,
.privacy-wrap li {
  font-size: 0.97rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.privacy-wrap ul { padding-left: 1.5rem; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(253, 246, 227, 0.98);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    padding: 0.5rem 0 1rem;
  }

  .nav-links.open li a {
    display: block;
    padding: 0.7rem 1.5rem;
  }

  .nav-toggle { display: block; }

  .nav {
    position: sticky;
  }
  .nav-inner { position: relative; }

  #about .about-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }

  .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 280px; text-align: center; }

  .contact-links { flex-direction: column; align-items: center; }
  .contact-link { width: 100%; max-width: 320px; justify-content: center; }

  .events-grid { grid-template-columns: 1fr; }
  .venues-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .how-grid    { grid-template-columns: 1fr 1fr; }
}
