/* Reset and Base Styles */
body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

/* Hero Section */
.hero {
  min-height: auto; /* keep full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(
    135deg,
    #e40303 0%,
    #e40303 20%,
    #ff8c00 30%,
    #ffed00 40%,
    #008026 50%,
    #004dff 60%,
    #750787 70%
  );
  background-size: 200% 200%;
  animation: rainbowShift 20s ease infinite;
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  color: white;
}

@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Hero Heading */
.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-top: 1rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.9);
}

/* Hero Text Container */
.hero-text-container {
  max-width: 380px;
  width: 90vw;
  margin: 0;
  padding: .5rem;
  border-radius: 0rem;
  background-color: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Text Container Image */
.hero-text-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
}

/* Hero Primary Tagline */
.hero-tagline-primary {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1rem, 5vw, 2rem);
  color: #e40303;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.85);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  white-space: nowrap;
  overflow: visible; /* don’t hide overflow */
  text-align: center;
}

.hero-tagline-secondary {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(1rem, 6vw, 1.8rem);
  color: #fff;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: visible;
  text-align: center;
}





/* Accent Utility */
.accent {
  color: #6A0D1C;
}

/* Sections */
.section {
  margin-top: 0;
  padding: 2.5rem 1rem 1.5rem;
}

/* Section Headings */
.section-heading,
#other-saturday-events h2,
section.section h2.accent {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 6px #6A0D1C, 0 0 10px #9c2433;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: clamp(1.75rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

/* Social Icons */
.social-icons a {
  color: #6A0D1C;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.social-icons a i {
  font-size: 2rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover,
.social-icons a:hover i {
  color: #9c2433;
  transform: scale(1.2);
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem 1rem;
  font-size: 0.9rem;
  color: #aaa;
}

/* Bootstrap Overrides */
.modal-backdrop {
  z-index: 1040 !important;
}

.modal {
  z-index: 1050 !important;
}

.modal-content.bg-dark {
  background-color: #000000 !important;
  color: #ffffff !important;
}

.btn-close-white {
  filter: invert(1);
}

/* Card Styling */
.card.bg-dark {
  background-color: #000000 !important;
  color: #ffffff !important;
  border-color: #6A0D1C;
}

.card-body p {
  color: #ccc;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.text-muted {
  color: #bbb !important;
}

/* Day Pill */
.day-pill {
  display: inline-block;
  background-color: #6A0D1C;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  user-select: none;
}

/* Image Sizing */
.card-img-top {
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 0.25rem;
}

/* Maintain Square Aspect Ratio */
.square-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.square-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#other-saturday-container .card-img-top {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.ratio.ratio-1x1 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Circular logo */
.logo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  object-fit: cover;
}

/* Header tweaks */
header {
  margin-bottom: 0;
}

#top-info-bar {
  background-color: #000000 !important;
}
#other-saturday-events h2.accent {
  text-align: center;
}