/*--------------------------------------------------------------
# RLFGC - Main Stylesheet
# Based on TheEvent by BootstrapMade.com
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# CSS Variables
--------------------------------------------------------------*/
:root {
  --font-heading:      "Raleway", sans-serif;
  --font-body:         "Open Sans", sans-serif;
  --color-brand:       #f82249;
  --color-brand-dark:  #c9102d;
  --color-dark:        #060c22;
  --color-navy:        #0d1b4b;
  --color-navy-mid:    #1a3580;
  --color-off-white:   #f4f6fc;
  --color-muted:       #6b7280;
  --space-section:     60px;
  --space-section-sm:  40px;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #2f3138;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
}

a {
  color: var(--color-brand);
  text-decoration: none;
  transition: 0.5s;
}
a:hover, a:active, a:focus {
  color: #f8234a;
  outline: none;
  text-decoration: none;
}
a:focus, button:focus, input:focus {
  outline: 2px solid var(--color-brand);
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color: var(--color-navy);
}

/*--------------------------------------------------------------
# Accessibility - Skip Link
--------------------------------------------------------------*/
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #fff;
  color: #000;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Back To Top Button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--color-brand);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i      { font-size: 28px; color: #fff; line-height: 0; }
.back-to-top:hover  { background: var(--color-brand-dark); color: #fff; }
.back-to-top.active { visibility: visible; opacity: 1; }

/*--------------------------------------------------------------
# Section Header
--------------------------------------------------------------*/
.section-header {
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
}
.section-header::before {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: var(--color-brand);
  bottom: 0;
  left: calc(50% - 25px);
}
.section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}
.section-with-bg { background-color: var(--color-off-white); }

/*--------------------------------------------------------------
# Section Spacing
--------------------------------------------------------------*/
.section-with-bg,
#food-pantry,
#venue, #gallery, #hotels,
#supporters, #faq, #subscribe,
#contact, #buy-tickets {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}
@media (max-width: 768px) {
  .section-with-bg,
  #food-pantry,
  #venue, #gallery, #hotels,
  #supporters, #faq, #subscribe,
  #contact, #buy-tickets {
    padding-top: var(--space-section-sm);
    padding-bottom: var(--space-section-sm);
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  height: 90px;
  position: fixed;
  left: 0; top: 0; right: 0;
  transition: all 0.5s;
  z-index: 997;
}
#header.header-scrolled,
#header.header-inner {
  background: rgba(6, 12, 34, 0.98);
  height: 70px;
}
#header #logo h1 {
  font-size: 36px;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}
#header #logo h1 span        { color: var(--color-brand); }
#header #logo h1 a,
#header #logo h1 a:hover     { color: #fff; }
#header #logo img            { padding: 0; margin: 0; max-height: 40px; }
@media (max-width: 992px) {
  #header #logo img          { max-height: 30px; }
}

/*--------------------------------------------------------------
# Giving / Buy Tickets Nav Button
--------------------------------------------------------------*/
.buy-tickets {
  color: #fff;
  background: var(--color-brand);
  padding: 7px 22px;
  margin: 0 0 0 15px;
  border-radius: 50px;
  border: 2px solid var(--color-brand);
  transition: all ease-in-out 0.3s;
  font-weight: 500;
  line-height: 1;
  font-size: 13px;
  white-space: nowrap;
}
.buy-tickets:hover { background: none; color: #fff; }
.buy-tickets:focus { color: #fff; }
@media (max-width: 992px) {
  .buy-tickets { margin: 0 15px 0 0; }
}

/*--------------------------------------------------------------
# Navigation - Desktop
--------------------------------------------------------------*/
.navbar       { padding: 0; }
.navbar ul    { margin: 0; padding: 0; display: flex; list-style: none; align-items: center; }
.navbar li    { position: relative; }
.navbar > ul > li { white-space: nowrap; padding: 10px 0 10px 12px; }

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(202, 206, 221, 0.8);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  padding: 6px 4px;
}
.navbar a i,
.navbar a:focus i { font-size: 12px; line-height: 0; margin-left: 5px; }

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 0; height: 2px;
  bottom: -6px; left: 0;
  background-color: var(--color-brand);
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.navbar a:hover:before,
.navbar li:hover > a:before,
.navbar .active:before          { visibility: visible; width: 100%; }
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a            { color: #fff; }

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 12px;
  top: calc(100% + 30px);
  margin: 0; padding: 10px 0;
  z-index: 99;
  opacity: 0; visibility: hidden;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}
.navbar .dropdown ul li            { min-width: 200px; }
.navbar .dropdown ul a             { padding: 10px 20px; font-size: 14px; text-transform: none; color: #060c22; }
.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a  { color: var(--color-brand); }
.navbar .dropdown:hover > ul       { opacity: 1; top: 100%; visibility: visible; }
.navbar .dropdown .dropdown ul     { top: 0; left: calc(100% - 30px); visibility: hidden; }
.navbar .dropdown .dropdown:hover > ul { opacity: 1; top: 0; left: 100%; visibility: visible; }

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul        { left: -90%; }
  .navbar .dropdown .dropdown:hover > ul { left: -100%; }
}

/*--------------------------------------------------------------
# Navigation - Mobile
--------------------------------------------------------------*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
@media (max-width: 991px) {
  .mobile-nav-toggle { display: block; }
  .navbar ul         { display: none; }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle { position: absolute; top: 15px; right: 15px; }
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px; right: 15px; bottom: 15px; left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile > ul > li               { padding: 0; }
.navbar-mobile a:hover:before,
.navbar-mobile li:hover > a:before,
.navbar-mobile .active:before          { visibility: hidden; }
.navbar-mobile a,
.navbar-mobile a:focus                 { padding: 10px 20px; font-size: 15px; color: #060c22; }
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a            { color: var(--color-brand); }
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus       { margin: 15px; }
.navbar-mobile .dropdown ul {
  position: static; display: none;
  margin: 10px 20px; padding: 10px 0;
  z-index: 99; opacity: 1; visibility: visible;
  background: #fff;
  box-shadow: 0 0 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li         { min-width: 200px; }
.navbar-mobile .dropdown ul a          { padding: 10px 20px; }
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a { color: var(--color-brand); }
.navbar-mobile .dropdown > .dropdown-active { display: block; }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  min-height: 100vh;
  overflow: visible;
  position: relative;
  background: url(../img/hero-bg.jpeg) top center / cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 40px;
}
@media (min-width: 1024px) {
  #hero { background-attachment: fixed; }
}
#hero:before {
  content: "";
  background: rgba(6, 12, 34, 0.8);
  position: absolute;
  inset: 0;
}
#hero .hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}
#hero h1 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 3.2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
#hero h1 span         { color: var(--color-brand); }
#hero p               { color: #ebebeb; font-weight: 700; font-size: 1.05rem; }
#current_event        { margin-bottom: 10px !important; }
#countdown            { margin-top: 10px !important; }
#hero-container       { position: relative; overflow: visible; }
.hero-content-wrapper { position: relative; z-index: 1; }

@media (max-width: 991px) {
  #hero h1 { font-size: 2.4rem; }
  #hero p  { font-size: 16px; }
}

/*--------------------------------------------------------------
# Holiday Banner
--------------------------------------------------------------*/
.holiday-banner {
  position: relative;
  display: none;
  margin: 18px auto 20px;
  padding: 16px 28px;
  max-width: 760px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--color-brand), #ffd600);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  color: #fff;
}
.holiday-banner__content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.holiday-banner__icon { font-size: 2.4rem; line-height: 1; }
.holiday-banner h3 {
  margin: 0;
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.holiday-banner p {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: #fff;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.holiday-banner--easter       { background: linear-gradient(135deg, #7c3aed, #db2777) !important; }
.holiday-banner--christmas    { background: linear-gradient(135deg, #c0392b, #27ae60) !important; }
.holiday-banner--thanksgiving { background: linear-gradient(135deg, #e67e22, #8b4513) !important; }
.holiday-banner--fireworks    { background: linear-gradient(135deg, #1a1a2e, #e94560) !important; }

@media (max-width: 600px) {
  .holiday-banner       { padding: 12px 16px; margin-top: 14px; max-width: 90%; }
  .holiday-banner__icon { font-size: 2.1rem; }
  .holiday-banner h3    { font-size: 1.4rem; }
  .holiday-banner p     { font-size: 0.98rem; }
}

/*--------------------------------------------------------------
# Status Badges
--------------------------------------------------------------*/
.status-badge {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: 2.1rem;
  padding: 10px 32px;
  border-radius: 999px;
  margin: 0 7px 12px 0;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.24);
  border: 3px solid #fff;
  color: #fff;
  background: #ffd600;
  min-width: 170px;
  justify-content: center;
  transition: background 0.18s, color 0.18s;
}
.status-upcoming  { background: #ffd600 !important; }
.status-today     { background: #1976d2 !important; }
.status-tomorrow  { background: var(--color-brand) !important; }
.status-happening { background: #16c700 !important; }
.status-canceled  { background: #888 !important; }

@keyframes badge-blink {
  0%   { background: #d90429; }
  50%  { background: #b30023; }
  100% { background: #d90429; }
}
.status-happening { animation: badge-blink 1s infinite; }

@media (max-width: 600px) {
  .status-badge {
    font-size: 1rem !important;
    padding: 5px 17px !important;
    border-radius: 18px !important;
    min-width: 92px !important;
    border: 2px solid #fff !important;
  }
}

/*--------------------------------------------------------------
# Countdown Timer
--------------------------------------------------------------*/
.timeContainer {
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mob-only { display: none !important; }
@media (max-width: 700px) {
  .mob-only {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    min-height: 56px;
  }
}

/*--------------------------------------------------------------
# Livestream Player
--------------------------------------------------------------*/
.stream-player-shell {
  width: 100vw;
  max-width: 1200px;
  margin: 30px auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-live-player {
  width: min(80vw, 960px);
  aspect-ratio: 16 / 9;
  background: #111;
  border-radius: 18px;
  box-shadow: 0 8px 42px #0005;
  overflow: hidden;
  position: relative;
  min-width: 340px;
  max-width: 100vw;
}
.hero-live-player iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 325px;
  background: #000;
  border: 0;
  border-radius: 18px;
  display: block;
}
.hero-live-placeholder {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-weight: 600;
  font-size: 1.18rem;
  width: 90%;
  pointer-events: none;
  text-align: center;
}
@media (max-width: 900px) {
  .hero-live-player        { min-width: 0; max-width: 99vw; }
  .hero-live-player iframe { min-height: 170px; }
  .stream-player-shell     { margin-top: 16px; margin-bottom: 16px; }
}

/*--------------------------------------------------------------
# Event Schedule
--------------------------------------------------------------*/
#schedule { padding: 60px 0; }

@media (max-width: 600px) {
  .schedule-tab { display: block; width: 100%; margin-bottom: 10px !important; }
}
#schedule .nav-tabs {
  text-align: center;
  margin: auto auto 30px;
  display: block;
  border-bottom: 0;
}
#schedule .nav-tabs li { display: inline-block; margin-bottom: 0; }
#schedule .nav-tabs a {
  border: none;
  border-radius: 50px;
  font-weight: 600;
  background-color: var(--color-navy);
  color: #fff;
  padding: 10px 100px;
}
@media (max-width: 991px) { #schedule .nav-tabs a { padding: 8px 60px; } }
@media (max-width: 767px) { #schedule .nav-tabs a { padding: 8px 50px; } }
@media (max-width: 480px) { #schedule .nav-tabs a { padding: 8px 30px; } }
#schedule .nav-tabs a.active   { background-color: var(--color-brand); }
#schedule .tab-pane            { transition: ease-in-out 0.2s; }
#schedule .schedule-item {
  border-bottom: 1px solid #cad4f6;
  padding: 15px 0;
  transition: background-color ease-in-out 0.3s;
}
#schedule .schedule-item:hover { background-color: #fff; }
#schedule .schedule-item .speaker {
  width: 60px; height: 60px;
  overflow: hidden; border-radius: 50%;
  float: left; margin: 0 10px 10px 0;
}
#schedule .schedule-item .speaker img {
  height: 100%;
  transform: translateX(-50%);
  margin-left: 50%;
  transition: all ease-in-out 0.3s;
}
#schedule .schedule-item h4      { font-size: 18px; font-weight: 600; margin-bottom: 5px; }
#schedule .schedule-item h4 span { font-style: italic; color: #19328e; font-weight: normal; font-size: 16px; }
#schedule .schedule-item p       { font-style: italic; color: #152b79; margin-bottom: 0; }
.schedule-item .event-day  { display: block; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; margin-bottom: 2px; color: #555; }
.schedule-item .event-date { display: block; font-size: 0.85rem; margin-bottom: 4px; color: #777; }
.schedule-item time        { display: block; font-size: 1.02rem; }

/*--------------------------------------------------------------
# Venue / Location
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Venue / Location
# ★ CHANGED: full section now navy #0d1b4b to match App,
#             Forms and Footer. venue-info panel differentiated
#             with subtle glass treatment instead of solid navy.
--------------------------------------------------------------*/
#venue {
  background-color: #0d1b4b;  /* ★ matches app / forms / footer */
}

/* Section header — white text on navy */
#venue .section-header h2      { color: #ffffff; }
#venue .section-header p       { color: rgba(255,255,255,0.72); }
#venue .section-header::before { background: rgba(255,255,255,0.4); }

#venue .container-fluid  { margin-bottom: 3px; }
#venue .venue-map iframe { width: 100%; height: 100%; min-height: 300px; }

/* ★ venue-info: glass panel so it reads distinct from the
   navy section background — same treatment as the form cards */
#venue .venue-info {
  background-color:        rgba(255,255,255,0.07);
  background-image:        none;          /* ★ remove old jpg texture */
  border-left:             1px solid rgba(255,255,255,0.15);
  position:                relative;
  padding:                 60px;
  display:                 flex;
  align-items:             center;
  min-height:              450px;
}

/* ★ No overlay needed — glass bg is already subtle */
#venue .venue-info::before { display: none; }

#venue .venue-info > .row {
  position: relative;
  z-index:  1;
  width:    100%;
}
#venue .venue-info h3 {
  font-size:   1.8rem;
  font-weight: 700;
  color:       #ffffff;
}
#venue .venue-info p {
  color:       rgba(255,255,255,0.85);
  margin-bottom: 0;
  line-height: 1.78;
}
#venue .venue-gallery {
  overflow:     hidden;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
}
#venue .venue-gallery img { transition: all ease-in-out 0.4s; }
#venue .venue-gallery:hover img { transform: scale(1.1); }
@media (max-width: 574px) { #venue .venue-info h3 { font-size: 24px; } }

/*--------------------------------------------------------------
# Welcome / Hotels
--------------------------------------------------------------*/
#hotels .hotel {
  border:        none;
  background:    transparent;
  margin-bottom: 30px;
}
#hotels .hotel-img { overflow: hidden; margin-bottom: 20px; }
#hotels .hotel-img img {
  transition:    0.3s ease-in-out;
  border-radius: 20px;
  box-shadow:    0 12px 40px rgba(0,0,0,0.14);
}
#hotels .hotel:hover .hotel-img img { transform: scale(1.04); }
#hotels h3 {
  font-weight:   700;
  font-size:     1.5rem;
  margin-bottom: 8px;
  padding:       0;
}
#hotels a       { color: var(--color-navy); }
#hotels a:hover { color: var(--color-brand); }
#hotels p {
  padding:       0;
  margin-top:    12px;
  margin-bottom: 20px;
  color:         var(--color-muted);
  font-style:    normal;
  font-size:     1rem;
  line-height:   1.75;
}

/*--------------------------------------------------------------
# Social Media / Gallery
--------------------------------------------------------------*/
#gallery { padding: 60px 0; overflow: hidden; }

.social-btns {
  display:         flex;
  flex-direction:  row;
  align-items:     center;
  justify-content: center;
  flex-wrap:       wrap;
  gap:             20px;
  margin:          0 auto;
  text-align:      center;
}
.social-btns .btn,
.social-btns .btn .fa {
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}
.social-btns .btn {
  display:          inline-flex;
  align-items:      center;
  justify-content:  center;
  gap:              10px;
  width:            auto;
  height:           auto;
  line-height:      normal;
  min-width:        164px;
  padding:          14px 32px;
  font-family:      var(--font-heading);
  font-size:        1rem;
  font-weight:      700;
  letter-spacing:   0.02em;
  color:            #fff;
  text-indent:      0;
  text-decoration:  none;
  border-radius:    50px;
  border:           none;
  overflow:         visible;
  background-image: none;
  background-color: transparent;
  box-shadow:       0 4px 18px rgba(0,0,0,0.2);
  opacity:          1;
  cursor:           pointer;
}
.social-btns .btn::before { display: none; content: none; }
.social-btns .btn.facebook  { background-color: #1877f2; }
.social-btns .btn.instagram {
  background-color: #e1306c;
  background-image: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.social-btns .btn.youtube { background-color: #ff0000; }
.social-btns .btn:hover {
  transform:  translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  color:      #fff;
}
.social-btns .btn .fa {
  font-size:      1.2rem;
  line-height:    1;
  color:          #fff;
  text-indent:    0;
  overflow:       visible;
  width:          auto;
  height:         auto;
  background:     transparent;
  display:        inline-block;
  transform:      none;
  vertical-align: middle;
}
.social-btns .btn:hover .fa,
.social-btns .btn:focus .fa { color: #fff; transform: none; }

@media (max-width: 576px) {
  .social-btns {
    flex-direction: column;
    align-items:    stretch;
    padding:        0 24px;
  }
  .social-btns .btn { width: 100%; justify-content: center; }
}

/*--------------------------------------------------------------
# Forms / Subscribe Section
# ★ FIX: backdrop-filter REMOVED from form cards.
#
#   Root cause of the red glow artifact on hover:
#   backdrop-filter: blur(6px) samples the ENTIRE painted area
#   behind each card. The red submit button from the card above
#   was within that sampled region. On hover, a background-color
#   repaint made the blur artifact suddenly visible as a large
#   red circular glow bleeding through the card below.
#
#   Fix: remove backdrop-filter, compensate with slightly higher
#   background opacity so the cards still read as distinct panels.
--------------------------------------------------------------*/
#subscribe {
  display:         flex;
  flex-direction:  column;
  justify-content: center;
  align-items:     center;
  padding:         60px 0;
  background: #0d1b4b;
  overflow:        hidden;
  position:        relative;
}
#subscribe::before { display: none; }
#subscribe > *     { position: relative; z-index: 2; }
#subscribe .row    { display: flex; justify-content: center; }

/* Section header text */
#subscribe .section-header h2       { color: #fff; }
#subscribe p                        { color: rgba(255,255,255,0.78); }
#subscribe .section-header::before  { background: rgba(255,255,255,0.4); }

/* ── Form cards ── */
#subscribe .row.border.rounded {
  border-color:            rgba(255,255,255,0.22) !important;
  background-color:        rgba(255,255,255,0.10) !important;
  /* ★ backdrop-filter intentionally set to none.
     blur() was causing red glow bleed-through on hover. */
  backdrop-filter:         none !important;
  -webkit-backdrop-filter: none !important;
  border-radius:           20px !important;
  transition:              background-color 0.25s ease,
                           border-color    0.25s ease;
}

/* ── Hover: background and border only — NO transform, NO blur ── */
#subscribe .row.border.rounded:hover {
  background-color: rgba(255,255,255,0.17) !important;
  border-color:     rgba(255,255,255,0.38) !important;
}

/* ── Force white text at all times including hover ── */
#subscribe .row.border.rounded h2 {
  color:     #fff !important;
  font-size: 1.55rem !important;
}
#subscribe .row.border.rounded p {
  color: rgba(255,255,255,0.78) !important;
}

/* Mobile: full-width cards */
@media (max-width: 576px) {
  #subscribe .container {
    padding-left:  0 !important;
    padding-right: 0 !important;
  }
  #subscribe .row.border.rounded {
    border-radius: 0 !important;
    border-left:   none !important;
    border-right:  none !important;
    border-top:    none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    margin-left:   0 !important;
    margin-right:  0 !important;
    margin-top:    0 !important;
    padding:       28px 20px !important;
  }
  #subscribe .col-md-10,
  #subscribe .col-lg-8 {
    width:         100% !important;
    max-width:     100% !important;
    padding-left:  16px !important;
    padding-right: 16px !important;
  }
  #subscribe .rlfgc-submit-btn {
    width:       100% !important;
    display:     block !important;
    text-align:  center !important;
    padding:     16px 20px !important;
    font-size:   1.1rem !important;
  }
  #subscribe .section-header        { margin-bottom: 20px !important; }
  #subscribe .section-header h2     { font-size: 1.8rem !important; }
  #subscribe .section-header p      { font-size: 0.97rem !important; }
}

/*--------------------------------------------------------------
# Giving / Buy Tickets
--------------------------------------------------------------*/
#buy-tickets .card {
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
}
#buy-tickets .card:hover { box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2); }
#buy-tickets .card .btn {
  font-size: 15px;
  border-radius: 50px;
  padding: 10px 40px;
  background-color: var(--color-brand);
  border: 0;
  color: #fff;
  transition: all 0.2s;
}
#buy-tickets .card .btn:hover { background-color: var(--color-brand-dark); }

#buy-tickets .row { justify-content: center; }
a.dbox-donation-button {
  display:             inline-block !important;
  width:               auto !important;
  background-color:    var(--color-brand) !important;
  background-image:    url(https://donorbox.org/images/red_logo.png) !important;
  background-repeat:   no-repeat !important;
  background-position: 22px center !important;
  background-size:     28px auto !important;
  padding:             15px 44px 15px 68px !important;
  border-radius:       50px !important;
  font-family:         var(--font-body) !important;
  font-size:           1rem !important;
  font-weight:         700 !important;
  color:               #fff !important;
  text-decoration:     none !important;
  letter-spacing:      0.02em !important;
  text-shadow:         0 1px 2px rgba(0,0,0,0.25) !important;
  box-shadow:          0 4px 22px rgba(248,34,73,0.38) !important;
  transition:          background-color 0.2s ease, transform 0.2s ease !important;
}
a.dbox-donation-button:hover {
  background-color: var(--color-brand-dark) !important;
  transform:        translateY(-2px) !important;
  color:            #fff !important;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
#contact .contact-info        { margin-bottom: 20px; text-align: center; }
#contact .contact-info i      { font-size: 48px; display: inline-block; margin-bottom: 10px; color: var(--color-brand); }
#contact .contact-info address,
#contact .contact-info p      { margin-bottom: 0; color: #112363; }
#contact .contact-info h3     { font-size: 18px; margin-bottom: 15px; font-weight: bold; text-transform: uppercase; color: #112363; }
#contact .contact-info a      { color: #4869df; }
#contact .contact-info a:hover { color: var(--color-brand); }
#contact .contact-address,
#contact .contact-phone,
#contact .contact-email       { margin-bottom: 20px; }
@media (min-width: 768px) {
  #contact .contact-address,
  #contact .contact-phone,
  #contact .contact-email     { padding: 20px 0; }
  #contact .contact-phone     { border-left: 1px solid #ddd; border-right: 1px solid #ddd; }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: var(--color-navy);
  padding: 0 0 25px 0;
  color: #eee;
  font-size: 14px;
}
#footer .footer-top {
  background: var(--color-navy);
  padding: 30px 0;
}
#footer .copyright {
  text-align: center;
  padding-top: 10px;
  color: rgba(255,255,255,0.5);
}
#footer .credits { text-align: center; font-size: 13px; color: #ddd; }

/*--------------------------------------------------------------
# Mouse Cursor Trail
--------------------------------------------------------------*/
#cursor {
  position: fixed;
  top: 0; left: 0;
  background-color: transparent;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  border-radius: 100%;
  pointer-events: none;
  user-select: none;
  backdrop-filter: invert(100%);
}

/*--------------------------------------------------------------
# Decorative Circle (disabled)
--------------------------------------------------------------*/
.circleDiv { display: none !important; }

/*--------------------------------------------------------------
# App Download Section
--------------------------------------------------------------*/
#download-app {
  padding:          64px 20px;
  background-color: #0d1b4b;
  text-align:       center;
  width:            100%;
}
#download-app h2 {
  color:         #ffffff;        /* ★ was var(--color-navy) */
  font-family:   var(--font-heading);
  font-weight:   800;
  font-size:     2rem;
  margin-bottom: 10px;
}
#download-app > p {
  color:         rgba(255,255,255,0.72);  /* ★ was var(--color-muted) */
  font-size:     1.05rem;
  margin-bottom: 0;
}
#download-app .app-download-btn {
  display:        flex;
  flex-direction: column;
  align-items:    center;
  gap:            4px;
  margin-top:     20px;
  text-align:     center;
}
#download-app .app-download-label {
  display:        block;
  margin-bottom:  4px;
  font-family:    var(--font-heading);
  font-weight:    700;
  font-size:      0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color:          #f82249;       /* brand red still pops on navy */
}
#download-app .app-download-helper {
  color:     rgba(255,255,255,0.60);  /* ★ was var(--color-muted) */
  font-size: 0.88rem;
}
#download-app .app-download-link { display: inline-block; cursor: pointer; }
#download-app .app-download-link img {
  display:    block;
  height:     52px;
  width:      auto;
  margin-top: 10px;
  filter:     drop-shadow(0 4px 10px rgba(0,0,0,0.35));
  transition: transform 0.2s ease, filter 0.2s ease;
}
#download-app .app-download-link:hover img,
#download-app .app-download-link:focus img {
  transform: translateY(-2px) scale(1.03);
  filter:    drop-shadow(0 6px 16px rgba(0,0,0,0.55));
}

/*--------------------------------------------------------------
# Special Event Feature
--------------------------------------------------------------*/
#special-event-feature .btn,
#special-event-feature .btn-primary {
  background: var(--color-brand) !important;
  color: #fff !important;
  border: none;
  font-weight: 700;
  font-size: 1.22rem;
  border-radius: 36px;
  box-shadow: 0 2px 12px -3px rgba(248,34,73,0.56);
  transition: background 0.2s, color 0.2s;
}
#special-event-feature .btn:hover,
#special-event-feature .btn:focus {
  background: #fff !important;
  color: var(--color-brand) !important;
  border: 2px solid var(--color-brand);
}
#special-event-feature .btn:active {
  background: var(--color-brand-dark) !important;
  color: #fff !important;
}

/*--------------------------------------------------------------
# Animations
--------------------------------------------------------------*/
@keyframes animate-loading {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}