:root{
  /* Festive palette: red, green, warm gold */
  --accent: #c9182b;    /* festive red */
  --accent2: #0a7a3f;   /* festive green */
  --gold: #ffb400;      /* warm gold */
  --dark: #0f1720;
  --muted: #68707a;
  --bg: #f7fafc;        /* slightly cooler for a winter feel */
  --max-width: 1100px;
  --radius: 10px;
  --gap: 1rem;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color-scheme: light;
}

/* Global box-sizing and base */
* { box-sizing: border-box; }
html, body { height: 100%; }

/* Wintery, subtle repeating snow + soft gradient background */
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(255,255,255,0.95) 0px, rgba(255,255,255,0) 2px),
    radial-gradient(circle at 30% 40%, rgba(255,255,255,0.95) 0px, rgba(255,255,255,0) 2px),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  background-size: 16px 16px, 22px 22px, 100% 100%;
  color: var(--dark);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Page container */
.container { max-width: var(--max-width); margin: 0 auto; padding: 1rem; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  position: static; left: auto; top: auto; width: auto; height: auto; padding: .5rem 1rem; background: #000; color: #fff; z-index: 1000;
}

/* Header - garland-like subtle gradient and slightly larger logo */
.site-header {
  background: linear-gradient(90deg, rgba(10,122,63,0.06), rgba(201,24,35,0.03));
  border-bottom: 3px solid rgba(200,28,40,0.06);
  position: sticky; top: 0; z-index: 10;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .8rem; }
.logo { width: 64px; height: 64px; border-radius: 12px; object-fit: cover; box-shadow: 0 6px 18px rgba(200,24,35,0.08); }
.site-title { margin: 0; font-size: 1.1rem; }
.site-sub { margin: 0; font-size: .85rem; color: var(--muted); }

/* Navigation */
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; align-items: center; }
.nav a { display: inline-block; padding: .5rem .75rem; color: var(--dark); text-decoration: none; border-radius: 6px; }
.nav a:hover, .nav a:focus { background: linear-gradient(90deg, rgba(200,24,35,0.06), rgba(10,122,63,0.04)); }
.nav .cta { background: linear-gradient(90deg, var(--accent), var(--gold)); color: #fff; border: none; }

/* Hero area - wintery sand and ornament accent */
.hero {
  background: linear-gradient(180deg, rgba(255,250,245,0.95) 0%, #fbfbfc 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: -60px; top: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), rgba(255,255,255,0) 40%),
              conic-gradient(from 120deg at 50% 50%, rgba(201,24,35,0.15), rgba(10,122,63,0.15));
  transform: rotate(18deg); border-radius: 50%; opacity: 0.9; pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 320px; gap: 1.25rem; align-items: center; z-index: 1; }
.hero-text h2 { margin: 0 0 .5rem; font-size: 1.6rem; }
.lead { margin: 0 0 1rem; color: var(--muted); }
.hero-ctas { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .5rem; }
.btn { display: inline-block; padding: .6rem .9rem; border-radius: 8px; text-decoration: none; font-weight: 600; border: 1px solid transparent; }
.btn-primary { background: linear-gradient(90deg, var(--accent), var(--gold)); color: #fff; box-shadow: 0 6px 18px rgba(201,24,35,0.12); }
.btn-outline { background: transparent; border-color: var(--accent2); color: var(--accent2); box-shadow: none; }
.meta { font-size: .85rem; color: var(--muted); }

/* Hero card - event badge with festive border */
.hero-card {
  background: linear-gradient(180deg, #fff 0%, #fffaf6 100%);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(16,24,40,0.08);
  overflow: hidden;
  border: 3px solid rgba(10,122,63,0.06);
}
.card-top { background: linear-gradient(90deg, var(--accent), var(--gold)); color: #fff; padding: .6rem; font-weight: 700; }
.card-body { padding: 1rem; }
.countdown { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; color: var(--accent); }
.venue { color: var(--muted); font-size: .9rem; }

/* Sections */
.section { padding: 1.25rem 0; }
.section h3 { margin: 0 0 .75rem; }

/* Schedule table - festive header stripe */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(180deg, #fff, #fffaf6);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(16,24,40,0.04);
}
.schedule-table thead { background: linear-gradient(90deg, rgba(10,122,63,0.06), rgba(201,24,35,0.06)); color: var(--muted); }
.schedule-table th, .schedule-table td { padding: .75rem; text-align: left; border-bottom: 1px solid #f0f0f0; }

/* Cards - team cards look like little gift cards */
.cards { display: flex; gap: 1rem; flex-wrap: wrap; }
.team-card {
  flex: 1 1 220px;
  background: linear-gradient(180deg, #fff, #fffaf6);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16,24,40,0.04);
  border-top: 3px solid rgba(201,24,35,0.05);
}

/* Form - subtle holiday styling */
.form {
  background: linear-gradient(180deg, #fff, #fffaf6);
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(16,24,40,0.04);
}
.form label { display: block; margin: .5rem 0 .25rem; font-weight: 600; }
.form input[type="text"], .form input[type="email"], .form select {
  width: 100%; padding: .6rem; border: 1px solid #e6e9ee; border-radius: 6px;
}
.form fieldset { border: 0; padding: 0; margin: 0 0 1rem; }
.form-actions { display: flex; gap: .5rem; margin-top: .5rem; }
.form-message { margin-top: .75rem; color: green; font-weight: 600; }
.muted { color: var(--muted); }

/* Venue */
.venue-grid { display: grid; grid-template-columns: 1fr 320px; gap: 1rem; align-items: start; }
.map iframe { width: 100%; height: 220px; border: 0; border-radius: 8px; }

/* Footer - festive but subtle */
.site-footer {
  padding: 1rem 0;
  background: linear-gradient(90deg, rgba(10,122,63,0.02), rgba(201,24,35,0.02));
  border-top: 1px solid #eee;
  margin-top: 2rem;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.social { list-style: none; margin: 0; padding: 0; display: flex; gap: .5rem; }
.social a {
  display: inline-block; padding: .35rem .6rem; border-radius: 6px;
  background: linear-gradient(90deg, #fff, #fffaf6); text-decoration: none; color: var(--muted); font-weight: 700;
}

/* Snowfall animation - decorative, lightweight */
@keyframes drift {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(110vh) translateX(30vw) rotate(360deg); opacity: 0.9; }
}

/* Decorative layered snow - non-intrusive, uses pseudo-elements */
body::before, body::after {
  content: "";
  pointer-events: none;
  position: fixed;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.6;
  background-image:
    radial-gradient(circle at 5% 10%, rgba(255,255,255,0.95) 0px, rgba(255,255,255,0) 6px),
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.95) 0px, rgba(255,255,255,0) 5px),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.9) 0px, rgba(255,255,255,0) 6px),
    radial-gradient(circle at 50% 80%, rgba(255,255,255,0.9) 0px, rgba(255,255,255,0) 4px);
  background-size: 120px 120px, 160px 160px, 120px 120px, 80px 80px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .venue-grid { grid-template-columns: 1fr; }
  .container { padding: 1rem; }
  .header-inner { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .nav ul { flex-wrap: wrap; }
}