/* ===== Roll Foundation — LIGHT THEME styles.css ===== */
/* Palette: bright, friendly blues */
:root{
  --bg:#F5F9FF;             /* page background */
  --card:#FFFFFF;           /* surfaces/cards */
  --text:#0B2340;           /* primary text (ink) */
  --muted:#4D6B86;          /* secondary text */
  --brand:#6EC1FF;          /* brand accent (sky blue) */
  --ink:#0B2340;            /* text on brand */
  --line:rgba(11,35,64,.12);/* light subtle lines */
  --radius:16px; 
  --radius-sm:12px; 
  --shadow:0 6px 20px rgba(11,35,64,.08);
  --container:1100px;
}

/* Reset / Base */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  background:var(--bg); 
  color:var(--text); 
  line-height:1.6;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  /* subtle page background wash */
  background-image: radial-gradient(50% 60% at 100% -10%, rgba(110,193,255,.25), transparent 60%),
                    radial-gradient(50% 60% at -10% 100%, rgba(110,193,255,.18), transparent 60%);
}
img{display:block;max-width:100%;height:auto}
a{color:#1560B8;text-decoration:none}
a:hover{text-decoration:underline}

.visually-hidden{
  position:absolute !important; width:1px; height:1px; overflow:hidden;
  clip:rect(1px,1px,1px,1px); clip-path:inset(50%); white-space:nowrap;
}
.container{max-width:var(--container);margin-inline:auto;padding:0 1rem}
.small{font-size:.9rem}
.muted{color:var(--muted)}
.lead{color:var(--muted)}
.mt-12{margin-top:.75rem}
.section{padding:2.5rem 0}
.band{
  padding:1.25rem 0;
  background:linear-gradient(180deg,#F0F7FF, #F5F9FF);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

/* Header / Nav (light, friendly) */
.site-header{
  position:sticky; top:0; z-index:50;
  backdrop-filter:saturate(180%) blur(10px);
  background:rgba(255,255,255,.85);
  border-bottom:1px solid var(--line);
  height:100px; /* increased from 90px to accommodate larger logo */
  box-shadow:0 2px 8px rgba(11,35,64,.06);
}

.header-inner{
  display:grid; 
  grid-template-columns:1fr auto 1fr; 
  align-items:center; 
  height:100%; 
  padding:0 2rem;
}

.brand img{
  height:85px; /* increased from 70px */
  width:auto; 
  padding:8px 0; /* increased breathing room */
  transition: transform 0.2s ease; /* smooth hover effect */
}

.brand img:hover {
  transform: scale(1.05); /* subtle hover effect */
}

.site-title{
  text-align:center; 
  font-size:1.4rem; 
  font-weight:700; 
  margin:0;
}

.site-nav{display:flex; gap:.6rem; align-items:center}
.site-nav a{
  color:var(--text); 
  padding:.55rem .85rem; 
  border-radius:8px;
  font-size:1.05rem;
}
.site-nav a[aria-current="page"]{background:rgba(21,96,184,.08)}
.site-nav a:hover{background:rgba(21,96,184,.10)}
.nav-toggle{display:none;background:none;border:0;color:var(--text);font-size:1.25rem}

/* Navigation Event Link Styling */
.nav-event {
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(28,107,77,0.05)) !important;
  color: var(--forest-green) !important;
  font-weight: 600;
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: 8px;
  padding: 0.6rem 1rem !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

/* Remove the emoji ::before pseudo-element */
.nav-event::before {
  display: none;
}

.nav-event:hover {
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(28,107,77,0.1)) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255,215,0,0.2);
  border-color: rgba(255,215,0,0.5);
}

/* Mobile navigation adjustments */
@media (max-width: 760px) {
  .nav-event {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }
}

/* Update nav-sponsor to work better with the new event link */
.nav-sponsor {
  background: linear-gradient(135deg, #DAA520, #B8860B) !important;
  color: #154a36 !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.6rem 1rem !important;
  border: 1px solid #B8860B;
  text-decoration: none;
}

/* Remove the emoji ::before pseudo-element */
.nav-sponsor::before {
  display: none;
}

.nav-sponsor:hover {
  background: linear-gradient(135deg, #B8860B, #DAA520) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 165, 32, 0.3);
  text-decoration: none;
}

/* Mobile nav */
@media (max-width:760px){
  .site-header{
    height:90px; /* slightly smaller on mobile */
  }
  
  .brand img{
    height:75px; /* proportionally sized for mobile */
    padding:7px 0;
  }
  
  .nav-toggle{display:inline-block}
  .site-nav{
    display:none; position:absolute; right:1rem; top:90px; /* adjusted for new header height */
    background:var(--card); border:1px solid var(--line); border-radius:12px;
    padding:.5rem; flex-direction:column; min-width:240px; 
    box-shadow:0 12px 26px rgba(11,35,64,.12)
  }
  .site-nav a{width:100%}
  .nav-sponsor {
    width: 100%;
    text-align: center;
    margin: 0.25rem 0;
  }
}

/* Extra small mobile devices */
@media (max-width:480px){
  .site-header{
    height:80px;
  }
  
  .brand img{
    height:65px;
    padding:6px 0;
  }
  
  .site-nav{
    top:80px; /* adjusted for smaller header */
  }
}

/* Hero — lighter wash, joyful */
.hero{
  min-height:56vh; 
  display:flex; align-items:center; justify-content:center;
  text-align:center; padding:2.75rem 1rem;
  background:linear-gradient(180deg, rgba(21,96,184,.06), transparent);
}
.hero-inner{max-width:760px}

/* Hard hero (background image applied inline on section) */
.hard-hero{
  position:relative; isolation:isolate;
  background-size:cover; background-position:center 28%;
  background-repeat: no-repeat;
}
.hard-hero::before{
  content:""; position:absolute; inset:0; z-index:-1;
  /* LIGHT overlay for readability but cheerful photo */
  background:linear-gradient(rgba(255,255,255,.35), rgba(255,255,255,.20));
}

/* Hero Section Improvements */
.hero.hard-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 70vh;
  position: relative;
  padding: 0; /* Remove any padding that creates white space */
  margin: 0; /* Remove any margin */
}

/* Ensure no white space around hero image */
.hero.hard-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1); /* Very light overlay for text readability */
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Remove any container margins that might create white space */
.hero .container {
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
  max-width: 1200px;
}

/* Text styling for better readability over the image */
.hero h1 {
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero .lead {
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Button styling for the hero section */
.hero .cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero .btn {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .btn.primary {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  color: #1a1a1a;
  border: none;
}

.hero .btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.hero .btn:not(.primary) {
  background: rgba(255, 255, 255, 0.9);
  color: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.hero .btn:not(.primary):hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero.hard-hero {
    min-height: 60vh;
  }
  
  .hero-inner {
    padding: 2rem 1rem;
    min-height: 60vh;
  }
  
  .hero .cta-row {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .hero .btn {
    width: 100%;
    max-width: 280px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero.hard-hero {
    min-height: 50vh;
  }
  
  .hero-inner {
    padding: 1.5rem 1rem;
    min-height: 50vh;
  }
}

/* Event Hero Page Layout */
.event-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.event-hero .container {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

/* Event Poster Styling */
.event-poster {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.2),
    0 8px 16px rgba(255, 215, 0, 0.1);
  transition: transform 0.3s ease;
}

.event-poster:hover {
  transform: scale(1.02);
}

.poster-image {
  width: 100%;
  height: auto;
  display: block;
}

/* Event Details */
.event-details {
  text-align: center;
  color: #ffffff;
}

.event-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.event-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.event-date-time,
.event-venue {
  text-align: center;
}

.event-date-time strong,
.event-venue strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFD700;
  margin-bottom: 0.5rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.event-date-time span,
.event-venue span {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Event CTA Buttons */
.event-cta {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 1.25rem 2.5rem;
  font-size: 1.2rem;
  border-radius: 12px;
}

/* Royal Countdown Timer - Updated for event page */
.royal-countdown {
  order: -1; /* This ensures the countdown appears first */
  position: relative;
  margin: 0 auto 2rem;
  max-width: 800px;
  background: linear-gradient(135deg, rgba(255,215,0,0.25), rgba(255,193,7,0.15));
  border: 2px solid rgba(255,215,0,0.5);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  backdrop-filter: blur(15px);
  box-shadow: 
    0 20px 40px rgba(255,215,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* Background overlay for event hero */
.event-hero.goldgreen-theme::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    var(--poster) center/cover no-repeat;
  z-index: -1;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .event-hero .container {
    gap: 2rem;
  }
  
  .event-poster {
    max-width: 300px;
  }
  
  .event-info {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .event-cta {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-large {
    width: 100%;
    max-width: 280px;
  }
  
  .royal-countdown {
    margin: 0 auto 1.5rem;
    padding: 2rem 1rem;
  }
}

/* Events Page Text Readability Improvements */
.events-page .hero h1,
.events-page .hero .lead {
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
  font-weight: 700;
}

/* Event Cards Styling */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.event-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 215, 0, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.4);
}

.event-card h3 {
  color: var(--forest-green);
  font-weight: 700;
  margin-bottom: 1rem;
}

.event-meta {
  margin-bottom: 1rem;
  color: #666;
}

.event-meta strong {
  color: var(--forest-green);
}

.featured-event {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.featured-event .event-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

.events-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 12px;
}

@media (max-width: 768px) {
  .featured-event {
    grid-template-columns: 1fr;
  }
  
  .featured-event .event-image img {
    height: 200px;
  }
}

/* Cards */
.cards{display:grid; gap:1rem; grid-template-columns:1fr}
.card{
  background:var(--card); border:1px solid var(--line);
  border-radius:var(--radius); padding:18px; box-shadow:var(--shadow);
}
.card h3{margin:.2rem 0 .4rem}
@media (min-width:720px){ .cards{grid-template-columns:repeat(3,1fr)} }

/* Buttons */
.btn{
  display:inline-block; padding:.65rem 1rem; border-radius:var(--radius-sm);
  border:1px solid var(--line); color:var(--text); background:#F8FBFF;
  font-weight:600; text-decoration:none; line-height:1;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
  box-shadow:0 6px 16px rgba(11,35,64,.06);
}
.btn:hover{transform:translateY(-1px); background:#EEF6FF}
.btn:focus{outline:2px solid var(--brand); outline-offset:2px}
.btn.primary{
  background:linear-gradient(180deg, #7FD0FF, #4AA3E8);
  color:var(--ink); border-color:#7CC9FF; 
  box-shadow:0 8px 22px rgba(74,163,232,.25);
}

/* Stats band */
.stats{display:grid; gap:.75rem; grid-template-columns:1fr; text-align:center}
.stat strong{display:block;font-size:1.35rem;color:#0B2F55}
.stat span{color:var(--muted)}
@media (min-width:720px){ .stats{grid-template-columns:repeat(3,1fr)} }

/* Gallery */
.gallery{display:grid; gap:.75rem; grid-template-columns:1fr 1fr}
@media (min-width:720px){ .gallery{grid-template-columns:repeat(3,1fr)} }
.gallery-item{
  display:block; border-radius:12px; overflow:hidden; 
  border:1px solid var(--line); background:var(--card); 
  box-shadow:var(--shadow)
}
.gallery-item img{width:100%; height:auto; object-fit:cover; aspect-ratio:4/3}
.caption{text-align:center; font-size:.9rem; color:var(--muted); padding:.5rem .25rem .25rem}

/* Footer */
.footer-inner{
  padding:1rem 0; 
  border-top:1px solid var(--line);
  margin-top:1rem; 
  text-align:center;
  color:var(--muted);
  background:linear-gradient(180deg,#FFFFFF, #F5F9FF);
}
/* Narrow container helper */
.container.narrow{ max-width: 820px; }

/* Watermark hero using event logo */
.sponsor-hero {
  min-height: 52vh; /* slightly shorter than home hero */
  padding-top: 3rem; padding-bottom: 3rem;
}

/* Reusable watermark background (semi-transparent logo) */
.watermark{
  position: relative;
  isolation: isolate;
}
.watermark::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    radial-gradient(65% 50% at 50% 35%, rgba(21,96,184,.09), transparent 65%),
    var(--watermark) center/420px auto no-repeat;
  opacity:.35;                   /* controls logo transparency */
  mix-blend-mode:multiply;       /* blends into light theme softly */
}
@media (max-width:760px){
  .watermark::after{
    background:
      radial-gradient(65% 50% at 50% 35%, rgba(21,96,184,.10), transparent 65%),
      var(--watermark) center/260px auto no-repeat;
  }
}

/* Checklist / Steps */
.checklist{padding-left:1.1rem}
.checklist li{margin:.25rem 0}
.steps{margin:.25rem 0 0 1.1rem}
.steps li{margin:.25rem 0}
.mission {
  background: rgba(255,255,255,0.85);
  color: #0B2340;
  padding: 4rem 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  margin-top: 2rem;
}
.mission h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.mission p {
  line-height: 1.6;
  margin-bottom: 1rem;
}
.mission .tagline {
  font-style: italic;
  text-align: center;
  font-weight: 600;
  margin-top: 1.5rem;
  color: #145ca3;
}
.container.narrow{ max-width: 820px; }
.site-header{ height:90px; /* etc. */ }
.header-inner{ display:grid; grid-template-columns:1fr auto 1fr; align-items:center; }
.brand img{ height:70px; width:auto; }
.site-title{ text-align:center; font-size:1.4rem; font-weight:700; margin:0; }
.site-nav{ display:flex; justify-content:flex-end; gap:.75rem; align-items:center; }
@media (max-width:760px){ /* your mobile rules */ }
/* Event Hero for She's On A Roll */
.hero--image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: 
    linear-gradient(rgba(255,255,255,0.75), rgba(255,255,255,0.9)),
    var(--hero);
  background-size: cover;
  background-position: center;
  filter: brightness(1.05) saturate(1.1);
}

.hero h1 {
  color: #0B2340;
  text-shadow: 0 1px 2px rgba(255,255,255,0.4);
}

.hero .lead {
  color: #334;
  font-size: 1.1rem;
}

/* CTA Row Styling */
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.5rem;
}
/* Portrait hero helpers */
.hero--portrait {
  background-size: auto 100%;
  background-position: center 25%;
}
@media (max-width:760px){
  .hero--portrait {
    background-size: cover;
    background-position: center;
  }
}
@media (min-width:600px){
  .hero h1{ font-size:2.5rem; }
  .hero .lead{ font-size:1.25rem; }
}
.hero-poster {
  min-height: 54vh; 
  position: relative;
  isolation: isolate;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.hero-poster::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255,255,255,.30), rgba(255,255,255,.15)),
    var(--poster) center/320px auto no-repeat;
  background-size: 320px auto;
  background-position: center 32%;
  opacity: .25;                   /* controls logo transparency */
  mix-blend-mode: multiply;       /* blends into light theme softly */
}
.hero-poster .poster {
  display: block;
  width: min(92%, 560px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(11,35,64,.22);
  margin-left: auto;
  margin-right: auto;
}
@media (max-width:600px){
  .hero-poster{min-height: 52vh;} 
  .hero-poster .poster{ width:min(92%, 420px)}    
  }
/* ---------- SHE’S ON A ROLL hero theme ---------- */
.goldgreen-theme{
  min-height: 60vh;                    /* larger hero */
  position: relative;
  isolation: isolate;
  padding: 3rem 1rem 4rem;
}

.goldgreen-theme::before{
  content:"";
  position:absolute; inset:0; z-index:-2;
  background: linear-gradient(160deg, #e6d36b 0%, #1c6b4d 100%); /* gold→green */
}

.goldgreen-theme::after{
  content:"";
  position:absolute; inset:0; z-index:-1;
  background:
    linear-gradient(rgba(255,255,255,.20), rgba(255,255,255,.10)),
    var(--poster) center/cover no-repeat;
  filter: blur(6px) saturate(1.1);
  opacity: .9;                         /* reduce washout */
  transform: scale(1.05);
}

.goldgreen-theme .poster{
  display:block;
  width:min(96%, 700px);               /* was 560px → bigger */
  height:auto;
  border-radius: 14px;
  box-shadow: 0 20px 50px rgba(11,35,64,.25);
  border: 2px solid rgba(255,255,255,.4);
  background:#fff;
  margin-left:auto; margin-right:auto;
}

.goldgreen-theme h1{
  margin-top:1.5rem;
  font-size:clamp(2rem,4vw,2.8rem);
  color:#fffce8;
  text-shadow:0 2px 4px rgba(0,0,0,.3);
}

.goldgreen-theme .lead{
  color:#fefefc;
  max-width:640px;
  margin:0.75rem auto 0;
  line-height:1.5;
}

@media (max-width:600px){
  .goldgreen-theme .poster{ width:min(94%, 480px); }
  .goldgreen-theme{ min-height: 58vh; padding:2.5rem 1rem; }
}

/* Royal Countdown Timer Styles */
.countdown-hero {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.royal-countdown {
  position: relative;
  margin: 3rem auto 2rem;
  max-width: 800px;
  background: linear-gradient(135deg, rgba(255,215,0,0.15), rgba(255,193,7,0.1));
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 20px 40px rgba(255,215,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.countdown-crown {
  color: #FFD700;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3));
  animation: crownGlow 3s ease-in-out infinite alternate;
}

@keyframes crownGlow {
  0% { filter: drop-shadow(0 4px 8px rgba(255,215,0,0.3)); }
  100% { filter: drop-shadow(0 6px 12px rgba(255,215,0,0.5)); }
}

.countdown-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  letter-spacing: 0.5px;
}

.countdown-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.countdown-unit {
  background: linear-gradient(145deg, #FFD700, #FFA000);
  border-radius: 16px;
  padding: 1.25rem 1rem;
  min-width: 100px;
  box-shadow: 
    0 8px 16px rgba(255,215,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.3),
    inset 0 -1px 0 rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.countdown-unit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255,255,255,0.3), 
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.countdown-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2c2c2c;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

.countdown-separator {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #FFD700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
  animation: pulse 2s infinite;
}

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

/* Magical Sparkles */
.countdown-sparkles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #FFD700;
  border-radius: 50%;
  animation: sparkle 4s infinite;
  box-shadow: 0 0 6px #FFD700;
}

.sparkle-1 { top: 20%; left: 15%; animation-delay: 0s; }
.sparkle-2 { top: 30%; right: 20%; animation-delay: 1s; }
.sparkle-3 { bottom: 25%; left: 25%; animation-delay: 2s; }
.sparkle-4 { top: 60%; right: 15%; animation-delay: 0.5s; }
.sparkle-5 { bottom: 40%; right: 30%; animation-delay: 1.5s; }
.sparkle-6 { top: 45%; left: 10%; animation-delay: 2.5s; }

@keyframes sparkle {
  0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Royal Buttons */
.royal-btn {
  background: linear-gradient(135deg, #FFD700, #FFA000);
  border: 2px solid rgba(255,215,0,0.6);
  color: #1a1a1a;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
  box-shadow: 0 4px 12px rgba(255,215,0,0.3);
  transition: all 0.3s ease;
}

.royal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,215,0,0.4);
  background: linear-gradient(135deg, #FFA000, #FFD700);
}

.royal-btn.secondary {
  background: transparent;
  color: #FFD700;
  border-color: #FFD700;
}

.royal-btn.secondary:hover {
  background: rgba(255,215,0,0.1);
  color: #FFD700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .royal-countdown {
    margin: 2rem auto 1.5rem;
    padding: 2rem 1rem;
  }
  
  .countdown-display {
    gap: 0.5rem;
  }
  
  .countdown-unit {
    min-width: 80px;
    padding: 1rem 0.75rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .countdown-display {
    flex-direction: column;
    gap: 1rem;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .countdown-unit {
    min-width: 120px;
  }
}

/* Additional Royal Theme Enhancements */
.goldgreen-theme .royal-countdown {
  background: linear-gradient(135deg, 
    rgba(255,215,0,0.2), 
    rgba(255,193,7,0.15),
    rgba(28,107,77,0.1)
  );
}

/* Magical floating animation for the whole countdown */
.royal-countdown {
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
/* END She’s On A Roll theme */

/* Sponsorship Section on Event Page */
.sponsor-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255,215,0,0.1), rgba(28,107,77,0.05));
  border: 2px solid rgba(255,215,0,0.3);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.sponsor-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #FFD700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.sponsor-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.sponsor-btn {
  display: inline-block;
  background: linear-gradient(135deg, #F0E68C, #DAA520);
  border: 2px solid #B8860B;
  color: #154a36;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(218, 165, 32, 0.3);
}

.sponsor-btn:hover {
  background: linear-gradient(135deg, #DAA520, #B8860B);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(218, 165, 32, 0.4);
  text-decoration: none;
}

.sponsor-cta {
  text-align: center;
  margin: 2rem 0;
}

/* Mobile adjustments for sponsor section */
@media (max-width: 768px) {
  .sponsor-section {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .sponsor-title {
    font-size: 1.5rem;
  }
  
  .sponsor-btn {
    width: 100%;
    max-width: 280px;
  }
}