/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Lora:wght@400;500&display=swap');

/* GLOBAL TYPOGRAPHY */
:root{
  --red:#a61e22;
  --red-dark:#7f1518;
  --gold:#d4af37;
  --cream:#faf7f2;
  --text:#222222;
  --muted:#666666;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
  --radius:18px;
  --max-width:1180px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:'Lora', serif;
  line-height:1.7;
  color:var(--text);
  background:var(--cream);
}

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

a{
  color:inherit;
  text-decoration:none;
}

p{
  margin-top:0;
  margin-bottom:1em;
}

ul,
ol{
  padding-left:22px;
}

li{
  margin-bottom:8px;
}

h1,
h2,
h3,
h4{
  font-family:'Montserrat', sans-serif;
  font-weight:700;
}

.site-name{
  font-family:'Montserrat', sans-serif;
  font-weight:700;
}

.site-tagline{
  font-family:'Montserrat', sans-serif;
  font-size:14px;
  opacity:0.9;
}

/* LAYOUT */
.container{
  width:90%;
  max-width:1180px;
  margin:0 auto;
  padding:0 20px;
}

.section{
  padding:72px 0;
  background:var(--cream);
}

.section:nth-of-type(even){
  background:var(--white);
}

.section h2{
  margin-bottom:18px;
}

.section p{
  margin-bottom:18px;
  max-width:65ch;
  margin-left:auto;
  margin-right:auto;
}

.section > *:last-child{
  margin-bottom:0;
}

.section-title{
  font-size:2rem;
  margin:0 0 16px;
  color:var(--red);
  text-align:center;
}

.section-subtitle{
  max-width:760px;
  margin:0 auto 40px;
  text-align:center;
  color:var(--muted);
  font-size:1.05rem;
}

.text-lead{
  font-size:1.1rem;
  color:var(--muted);
}

.two-column{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:start;
}

.content-section{
  padding:50px 0;
}

/* CONTACT PAGE SPACING TIGHTEN */
.content-section.compact {
  padding: 36px 0;
}

.content-section h2{
  color:var(--red);
  margin-top:0;
}
/* CONTACT PAGE — tighten spacing before form */
.content-section.compact + .content-section.compact {
  padding-top: 24px;
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
  gap:24px;
  align-items:stretch;
}

.card-grid .card{
  height:100%;
}

/* TOPBAR */
.topbar{
  background:var(--red);
  color:var(--white);
  font-size:0.95rem;
}

.topbar .container{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:10px 0;
  text-align:center;
}

/* HEADER */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(250,247,242,0.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,0.06);
  box-shadow:0 2px 12px rgba(0,0,0,0.06);
}

.nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:20px;
}

.logo{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.logo img{
  width:54px;
  height:54px;
  object-fit:contain;
  border-radius:50%;
  background:white;
}

.logo-text h1{
  margin:0;
  font-size:1.1rem;
  color:var(--red);
  line-height:1.2;
}

.logo-text p{
  margin:2px 0 0;
  font-size:0.88rem;
  color:var(--muted);
}

/* NAVIGATION */
nav ul{
  list-style:none;
  display:flex;
  gap:24px;
  margin:0;
  padding:0;
  align-items:center;
  flex-wrap:wrap;
}

nav a{
  font-family:'Montserrat', sans-serif;
  letter-spacing:0.4px;
  font-weight:600;
  color:var(--text);
  text-decoration:none;
  transition:color .2s ease;
}

nav a:hover{
  color:var(--red);
  border-bottom-color:var(--red);
}

nav a[aria-current="page"]{
  color:var(--red);
  font-weight:700;
  position:relative;
}

nav a[aria-current="page"]::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:100%;
  height:2px;
  background:currentColor;
  border-radius:999px;
}

.donate-btn{
  background:var(--gold);
  color:var(--red-dark);
  padding:8px 18px;
  border-radius:6px;
  font-weight:700;
  text-decoration:none;
  transition:all 0.25s ease;
}

.donate-btn:hover{
  background:#e6c75a;
  transform:translateY(-1px);
}

nav a.donate-btn[aria-current="page"]{
  background:var(--gold);
  color:#111;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

nav a.donate-btn[aria-current="page"]::after{
  display:none;
}

.nav-donate{
  padding:10px 16px;
  background:var(--red);
  color:var(--white);
  border-radius:999px;
}

.nav-donate:hover{
  background:var(--red-dark);
  color:var(--white);
}

/* SHARED PAGE HEADER */
.page-header{
  padding:42px 0 30px;
  text-align:center;
}

.page-header .container{
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
}

.page-header h1{
  margin:0 0 10px;
  line-height:1.08;
  color:var(--red);
  font-size:2.4rem;
}

.page-header p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
}

/* HERO */
.hero{
  position:relative;
  color:var(--white);
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.22) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  min-height:86vh;
  display:flex;
  align-items:center;
}

.hero-content{
  max-width:760px;
  padding:90px 0;
}

.eyebrow{
  display:inline-block;
  margin-bottom:14px;
  padding:8px 14px;
  border:1px solid rgba(255,255,255,0.45);
  border-radius:999px;
  font-size:0.9rem;
  letter-spacing:0.4px;
  background:rgba(255,255,255,0.08);
  font-family:'Montserrat', sans-serif;
}

.hero h2{
  margin:0 0 18px;
  font-size:clamp(2.5rem, 6vw, 4.8rem);
  line-height:1.08;
  color:#fff;
  letter-spacing:-0.02em;
  max-width:12ch;
}

.hero p{
  font-size:1.14rem;
  max-width:660px;
  margin:0 0 28px;
  color:rgba(255,255,255,0.94);
}

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-bottom:26px;
}

.hero-note{
  font-size:0.98rem;
  color:rgba(255,255,255,0.85);
}

/* BUTTONS */
.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:999px;
  font-weight:700;
  transition:0.2s ease;
  font-family:'Montserrat', sans-serif;
}

.btn-primary{
  background:var(--red);
  color:var(--white);
}

.btn-primary:hover{
  background:var(--red-dark);
  transform:translateY(-1px);
}

.btn-secondary{
  border:2px solid rgba(255,255,255,0.8);
  color:var(--white);
  background:transparent;
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.12);
  transform:translateY(-1px);
}

button:disabled,
.btn:disabled{
  opacity:0.7;
  cursor:not-allowed;
}

.social-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn-facebook{
  display:inline-block;
  background:#1877f2;
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 10px 25px rgba(24,119,242,0.25);
  transition:all 0.25s ease;
}

.btn-facebook:hover{
  transform:translateY(-2px);
  opacity:0.92;
}

.btn-youtube{
  display:inline-block;
  background:#ff0000;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  padding:13px 22px;
  border-radius:999px;
  box-shadow:0 14px 30px rgba(255,0,0,0.18);
  transition:transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn-youtube:hover{
  transform:translateY(-2px);
  opacity:0.92;
}

.btn-outline{
  display:inline-block;
  text-decoration:none;
  font-weight:700;
  padding:13px 22px;
  border-radius:999px;
  border:2px solid var(--red);
  color:var(--red);
  background:#fff;
  transition:transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-outline:hover{
  transform:translateY(-2px);
  background:var(--red);
  color:#fff;
}

/* CONTENT GRIDS */
.feature-performances,
.impact-grid,
.gallery-grid,
.support-grid,
.footer-grid{
  display:grid;
  gap:28px;
}

.feature-performances{
  grid-template-columns:1fr 1fr;
  margin-top:30px;
}

.impact-grid{
  grid-template-columns:repeat(3,1fr);
}

.gallery-grid{
  grid-template-columns:repeat(4,1fr);
}

.support-grid{
  grid-template-columns:1fr 1fr;
  align-items:center;
}

/* CARDS */
.performance-card{
  background:var(--white);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}

.performance-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.performance-card,
.impact-card,
.gallery-grid img{
  transition:transform .25s ease, box-shadow .25s ease;
}

.performance-card:hover,
.impact-card:hover,
.gallery-grid img:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 36px rgba(0,0,0,0.12);
}

.performance-card-content{
  padding:20px;
}

.performance-card h4{
  margin:0 0 10px;
  color:var(--red);
  font-size:1.2rem;
}

.performance-card p{
  margin:0;
  color:var(--muted);
}

.impact-card{
  text-align:center;
  background:var(--white);
  border-radius:var(--radius);
  padding:30px 24px;
  box-shadow:var(--shadow);
}

.impact-card .icon{
  width:64px;
  height:64px;
  margin:0 auto 16px;
  border-radius:50%;
  background:rgba(166,30,34,0.08);
  color:var(--red);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.7rem;
  font-weight:700;
  font-family:'Montserrat', sans-serif;
}

.impact-card h3{
  margin:0 0 10px;
  color:var(--red);
}

.gallery-grid img{
  width:100%;
  aspect-ratio:1 / 1;
  object-fit:cover;
  border-radius:16px;
  box-shadow:var(--shadow);
}

.gallery-cta{
  text-align:center;
  margin-top:28px;
}

.support-points{
  padding-left:20px;
  color:var(--muted);
}

.support-points li{
  margin-bottom:10px;
}

.support-image img{
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  height:100%;
  object-fit:cover;
}

.join-banner{
  background:linear-gradient(135deg, var(--red), var(--red-dark));
  color:var(--white);
  border-radius:24px;
  padding:44px 34px;
  text-align:center;
  box-shadow:var(--shadow);
}

.join-banner h2{
  margin-top:0;
  color:var(--white);
  font-size:2rem;
}

.join-banner p{
  max-width:760px;
  margin:0 auto 22px;
  color:rgba(255,255,255,0.92);
}

/* PERFORMANCE TIMELINE */
.timeline{
  position:relative;
  max-width:900px;
  margin:0 auto;
  padding-left:34px;
}

.timeline::before{
  content:"";
  position:absolute;
  left:10px;
  top:4px;
  bottom:4px;
  width:2px;
  background:#e4d7c7;
}

.timeline-item{
  position:relative;
  margin-bottom:34px;
}

.timeline-item:last-child{
  margin-bottom:0;
}

.timeline-item::before{
  content:"";
  position:absolute;
  left:-24px;
  top:8px;
  width:14px;
  height:14px;
  border-radius:50%;
  background:var(--red);
  box-shadow:0 0 0 5px rgba(166,30,34,0.08);
}

.timeline-year{
  margin:0 0 10px;
  color:var(--red);
  font-size:1.1rem;
}

.timeline-card{
  background:#fff;
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:24px 24px;
}

.timeline-card h3{
  margin-top:0;
  margin-bottom:10px;
}

.timeline-card p:last-child{
  margin-bottom:0;
}

/* DONATE PAGE */
.donate-eyebrow{
  display:inline-block;
  letter-spacing:1px;
  text-transform:uppercase;
  font-size:12px;
  font-weight:700;
  color:var(--red);
  background:#fff3ef;
  border:1px solid rgba(166,30,34,0.10);
  padding:7px 10px;
  border-radius:999px;
  margin-bottom:12px;
  font-family:'Montserrat', sans-serif;
}

.donate-card-premium{
  margin-top:-184px;
}

.donate-card-premium .donate-eyebrow{
  margin-top:-4px;
}

.donate-hero-row{
  display:grid;
  grid-template-columns:minmax(0,1.02fr) minmax(0,0.98fr);
  gap:36px;
  align-items:start;
}

.donate-panel{
  padding:34px 38px;
  margin-top:-8px;
}

.donate-photo-panel{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.donate-photo{
  display:block;
  width:100%;
  height:440px;
  object-fit:cover;
  object-position:center 32%;
  border-radius:24px 24px 0 0;
  box-shadow:var(--shadow);
}

.donate-photo-caption{
  margin-top:0;
  text-align:center;
  background:#fff;
  padding:22px 26px 24px;
  border-radius:0 0 24px 24px;
  box-shadow:var(--shadow);
}

.donate-photo-caption .caption-title{
  display:block;
  color:var(--red);
  font-size:1.05rem;
  font-weight:700;
  margin-bottom:10px;
  font-family:'Montserrat', sans-serif;
}

.donate-photo-caption p{
  margin:0;
}

.donate-sticky{
  position:sticky;
  top:88px;
}

.donate-progress-shell{
  margin:18px 0 16px;
}

.donate-progress-bar{
  height:16px;
  border-radius:999px;
  background:linear-gradient(90deg,#b82025 0%, #c85c2e 55%, #d4af37 100%);
}

.donate-trust-row{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}

.donate-trust-item{
  text-align:center;
  padding:16px 14px;
  border:1px solid rgba(166,30,34,0.12);
  border-radius:16px;
  background:#fffaf8;
  font-weight:600;
}

.impact-box,
.amount-btn{
  appearance:none;
  border:2px solid var(--red);
  background:#ffffff;
  color:var(--red);
  border-radius:14px;
  padding:14px 16px;
  font:inherit;
  font-weight:600;
  cursor:pointer;
  transition:0.2s ease;
  text-align:center;
  min-width:84px;
}

.impact-box{
  background:var(--cream);
  border-color:rgba(166,30,34,0.14);
  color:var(--text);
  width:100%;
}

.impact-box:hover,
.amount-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.08);
}

.amount-btn-custom{
  border-style:dashed;
  background:#fff7f7;
}

.impact-box.is-selected,
.amount-btn.is-selected{
  border-color:var(--red);
  background:#ffeaea;
  box-shadow:0 10px 24px rgba(166,30,34,0.14);
}

.amount-btn.popular{
  background:linear-gradient(135deg, rgba(166,30,34,0.08), rgba(212,175,55,0.16));
  border-color:rgba(166,30,34,0.28);
}

.donation-note{
  margin-top:18px;
  padding:16px 18px;
  border-radius:16px;
  background:#fff8f6;
  border:1px solid rgba(166,30,34,0.16);
  color:#8a1c20;
  font-weight:600;
  display:none;
}

.paypal-shell{
  display:grid;
  gap:18px;
}

.paypal-button-wrap{
  min-height:48px;
}

.paypal-mini-note{
  font-size:0.95rem;
  color:var(--muted);
  margin:0;
}

.giving-box{
  padding:18px 20px;
  border:1px solid rgba(166,30,34,0.12);
  border-radius:16px;
  background:#fffaf8;
}

.giving-box h3{
  margin:0 0 8px;
}

.giving-box p{
  margin:0;
}

/* VIDEO SECTION */
.video-section{
  padding:90px 0;
  background:linear-gradient(180deg,#fffaf6 0%,#ffffff 100%);
}

.video-shell{
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:48px;
  align-items:center;
}

.video-copy h2{
  font-size:2.4rem;
  line-height:1.2;
  color:var(--red);
  margin:0 0 18px;
  max-width:640px;
}

.video-intro{
  font-size:1.05rem;
  line-height:1.85;
  color:#4d4d4d;
  margin-bottom:28px;
  max-width:620px;
}

.video-highlights{
  display:grid;
  gap:14px;
  margin-bottom:30px;
}

.highlight-item{
  background:#ffffff;
  border:1px solid rgba(166,30,34,0.08);
  border-radius:18px;
  padding:16px 18px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.highlight-item strong{
  display:block;
  color:var(--red);
  margin-bottom:6px;
  font-size:1rem;
}

.highlight-item span{
  color:#555;
  line-height:1.65;
  font-size:0.96rem;
}

.video-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.video-feature{
  background:#ffffff;
  border-radius:26px;
  padding:16px;
  box-shadow:0 24px 60px rgba(0,0,0,0.10);
  border:1px solid rgba(212,175,55,0.18);
}

.video-frame{
  position:relative;
  padding-bottom:56.25%;
  height:0;
  overflow:hidden;
  border-radius:18px;
  background:#000;
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

.video-caption{
  padding:14px 6px 2px;
  color:#666;
  font-size:0.95rem;
}

/* PERFORMANCES PAGE */
.performances-hero{
  background:
    linear-gradient(90deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.38) 45%, rgba(0,0,0,0.22) 100%),
    url('../images/performances-hero.jpg') center 38%/cover no-repeat;
  min-height:72vh;
}

.performance-highlight-card{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:32px;
  max-width:900px;
  margin:0 auto;
}

.performance-highlight-card h3{
  margin-top:0;
  margin-bottom:14px;
  color:var(--red);
  font-size:1.5rem;
}

.performance-story{
  display:grid;
  grid-template-columns:1.05fr 0.95fr;
  gap:32px;
  align-items:center;
}

.performance-story img{
  width:100%;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  object-fit:cover;
  min-height:320px;
}

.booking-card{
  background:linear-gradient(135deg, rgba(166,30,34,0.06), rgba(212,175,55,0.10));
  border:1px solid rgba(166,30,34,0.08);
  border-radius:24px;
  padding:36px 30px;
  text-align:center;
  box-shadow:var(--shadow);
  max-width:900px;
  margin:0 auto;
}

.booking-card h2{
  margin-top:0;
  color:var(--red);
}

.booking-card p{
  max-width:760px;
  margin-left:auto;
  margin-right:auto;
}

/* FOOTER */
footer{
  background:#1d1d1d;
  color:rgba(255,255,255,0.88);
  margin-top:72px;
}

.footer-grid{
  grid-template-columns:1.2fr 0.8fr 0.8fr;
  padding:52px 0 24px;
}

.footer-title{
  margin:0 0 14px;
  color:var(--white);
  font-size:1.2rem;
}

.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-links li{
  margin-bottom:10px;
}

.footer-links a:hover{
  color:var(--gold);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);
  padding:18px 0 28px;
  font-size:0.95rem;
  color:rgba(255,255,255,0.68);
  text-align:center;
}

/* RESPONSIVE */
@media (max-width:980px){
  .feature-performances,
  .support-grid,
  .footer-grid,
  .impact-grid,
  .two-column,
  .performance-story{
    grid-template-columns:1fr;
  }

  .gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .nav-wrap{
    flex-direction:column;
    align-items:flex-start;
  }

  nav ul{
    justify-content:flex-start;
  }

  .donate-hero-row{
    grid-template-columns:1fr;
    gap:28px;
    align-items:start;
  }

  .donate-panel{
    margin-top:0;
    padding:30px;
  }

  .donate-photo{
    height:380px;
    border-radius:22px 22px 0 0;
  }

  .donate-sticky{
    position:static;
  }

  .donate-trust-row{
    grid-template-columns:1fr;
  }
}

@media (max-width:960px){
  .video-shell{
    grid-template-columns:1fr;
  }

  .video-copy h2{
    font-size:2rem;
  }
}

@media (max-width:768px){
  .timeline{
    padding-left:28px;
  }

  .timeline-item::before{
    left:-20px;
  }
}

@media (max-width:700px){
  .donor-name-grid{
    grid-template-columns:1fr !important;
  }
}

@media (max-width:640px){
  .section{
    padding:56px 0;
  }

  .hero{
    min-height:auto;
  }

  .hero-content{
    padding:70px 0;
  }

  .hero h2{
    font-size:2.35rem;
  }

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

  .btn{
    width:100%;
    text-align:center;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .logo-text h1{
    font-size:1rem;
  }

  nav ul{
    gap:14px;
  }

  .donate-panel{
    padding:24px 22px;
  }

  .donate-photo{
    height:300px;
  }

  .donate-photo-caption{
    padding:18px 18px 20px;
  }
}
