/* ==========================================================================
   Naughty Hog Enterprise - Home & Toy Drive Stylesheet
   ========================================================================== */

/* Navbar Component Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #d1d5db;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

.nav-link.active::after,
.nav-link:hover::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-red);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navbar Dropdown Menu */
.nav-item.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-arrow {
  font-size: 0.65rem;
  transition: transform 0.25s ease;
}

.nav-item.dropdown:hover .nav-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: rgba(18, 18, 18, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  min-width: 180px;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 1100;
}

.nav-item.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 0.65rem 1.25rem;
  color: #d1d5db;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.dropdown-item:hover {
  color: #ffffff;
  background-color: rgba(229, 35, 41, 0.15);
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  background-image: url('/images/hero_bikers.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.8) 50%, rgba(10, 10, 10, 0.6) 100%);
}

.hero-container {
  position: relative;
  z-index: 10;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 580px;
  margin-bottom: 2.25rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-card-container {
  display: flex;
  justify-content: flex-end;
}

.hero-card {
  background: rgba(18, 18, 18, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 35, 41, 0.3);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(229, 35, 41, 0.15);
  text-align: center;
  transition: var(--transition);
}

.hero-card-header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-card-logo {
  height: 240px;
  margin: 0 auto;
  object-fit: contain;
}

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-align: left;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background-color: rgba(229, 35, 41, 0.15);
  border: 1px solid rgba(229, 35, 41, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

/* Services Section Styles */
.services-section {
  background-color: #0c0c0c;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: var(--bg-card-dark);
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 3rem 2rem 2.5rem;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-red);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  border-color: rgba(229, 35, 41, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-badge {
  width: 70px;
  height: 70px;
  background-color: var(--primary-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.75rem;
  color: #ffffff;
  font-size: 1.75rem;
  box-shadow: 0 10px 20px rgba(229, 35, 41, 0.3);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

.service-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.service-link {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}

.service-link:hover {
  color: var(--primary-red-hover);
  gap: 0.75rem;
}

/* About Us Styles */
.about-section {
  background-color: #111111;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.about-experience-badge {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background-color: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid var(--primary-red);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  text-align: center;
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--primary-red);
  line-height: 1;
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-motto,
.about-mission {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.about-motto strong,
.about-mission strong {
  color: #ffffff;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.75rem 0 2.25rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e5e7eb;
}

/* Upcoming Events & Pillars Styles */
.events-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.events-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.event-card {
  background-color: #141414;
  color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.event-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.event-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-card:hover .event-img {
  transform: scale(1.08);
}

.event-date-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(10, 10, 10, 0.9);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  text-align: center;
  line-height: 1.1;
  border-left: 3px solid var(--primary-red);
}

.event-date-badge .month {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary-red);
  text-transform: uppercase;
}

.event-date-badge .day {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
}

.event-date-badge .year {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
}

.event-details {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.event-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  letter-spacing: 0.5px;
}

.event-location {
  color: var(--primary-red);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.event-desc {
  color: #9ca3af;
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.event-card-actions {
  display: flex;
  gap: 0.5rem;
}

.event-card-actions .btn {
  flex: 1;
  padding: 0.6rem 0.5rem;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.pillar-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.pillar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(229, 35, 41, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-red);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.pillar-desc {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  line-height: 1.4;
}

/* Sponsors Section Styles */
.sponsors-section {
  background-color: #0a0a0a;
  background-image: linear-gradient(180deg, rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)), url('/images/hero_bikers.png');
  background-size: cover;
  background-position: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.sponsors-subtitle {
  color: var(--text-muted);
  margin-bottom: 3.5rem;
  font-size: 1.05rem;
}

.sponsors-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3.5rem;
}

.sponsor-logo-card {
  background-color: #ffffff;
  border: 2px solid rgba(229, 35, 41, 0.4);
  border-radius: 12px;
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  max-width: 440px;
  width: 100%;
  transition: var(--transition);
  filter: none;
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.sponsor-logo-card:hover {
  filter: none;
  opacity: 1;
  border-color: var(--primary-red);
  background-color: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(229, 35, 41, 0.25);
}

.sponsor-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: #ffffff;
  text-align: center;
}

.sponsor-tagline {
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.sponsor-img-logo {
  max-height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.sponsor-highlight {
  border-color: rgba(229, 35, 41, 0.4);
  filter: none;
  opacity: 1;
}

.sponsors-cta {
  margin-top: 2rem;
}

/* Newsletter Banner Styles */
.newsletter-banner {
  background: linear-gradient(135deg, #b91c1c 0%, #e52329 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(0, 0, 0, 0.08) 0, rgba(0, 0, 0, 0.08) 15px, transparent 0, transparent 30px);
  pointer-events: none;
}

.newsletter-flex {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.newsletter-icon-wrapper {
  flex-shrink: 0;
}

.newsletter-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.75rem;
}

.newsletter-info {
  flex: 1;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.newsletter-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border-radius: 4px;
  border: none;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-btn {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 0 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background-color: #1f1f1f;
  transform: translateY(-2px);
}

/* Get Involved Section Styles */
.get-involved-section {
  background-color: #ffffff;
  color: var(--text-dark);
}

.get-involved-section .section-header {
  margin-bottom: 3.5rem;
}

.involved-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.involved-card {
  padding: 2rem 1.5rem;
  border-radius: 10px;
  background-color: var(--bg-light);
  transition: var(--transition);
}

.involved-card:hover {
  background-color: #ffffff;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.involved-icon {
  color: var(--primary-red);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.involved-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.involved-desc {
  font-size: 0.9rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.involved-link {
  color: var(--primary-red);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.involved-link:hover {
  color: var(--dark-red);
  gap: 0.75rem;
}

/* Gallery Section Styles */
.gallery-section {
  background-color: #0d0d0d;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: 10px;
  overflow: hidden;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-overlay span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* Footer Styles */
.footer {
  background-color: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr 1.8fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-logo {
  height: 65px;
  margin-bottom: 1.5rem;
  object-fit: contain;
}

.footer-about {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.9rem;
}

.footer-socials a:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-red);
  padding-left: 4px;
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Modals Styles */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background-color: #141414;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  width: 100%;
  max-width: 520px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-box.modal-lg {
  max-width: 720px;
}

.modal-backdrop.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.75rem;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close:hover {
  color: var(--primary-red);
}

.modal-header {
  margin-bottom: 1.75rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
}

.modal-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #d1d5db;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-red);
  background-color: rgba(229, 35, 41, 0.05);
}

.donation-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.btn-donate-amount {
  padding: 0.65rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.btn-donate-amount.active,
.btn-donate-amount:hover {
  background-color: var(--primary-red);
  border-color: var(--primary-red);
}

.details-modal-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: center;
}

.details-modal-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
}

.detail-badge {
  color: var(--primary-red);
  font-weight: 700;
  margin: 0.5rem 0 1rem;
}

.detail-text {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
}

/* Toy Drive Page Styles */
.toy-drive-hero {
  position: relative;
  padding: 8rem 0 4rem;
  background-image: url('/images/toy_drop.png');
  background-size: cover;
  background-position: center;
}

.toy-drive-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.85) 100%);
}

.relative-z {
  position: relative;
  z-index: 10;
}

.toy-drive-hero-subtitle {
  font-size: 1.15rem;
  color: #d1d5db;
  max-width: 600px;
  margin: 1rem auto 0;
}

.toy-drive-about {
  background-color: #111111;
}

.toy-drive-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.toy-drive-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.toy-drive-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 12px;
}

.toy-drive-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border: 1.5px solid var(--primary-red);
  padding: 0.85rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.toy-drive-text {
  color: #d1d5db;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight-box {
  background-color: rgba(229, 35, 41, 0.08);
  border-left: 4px solid var(--primary-red);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  position: relative;
  font-style: italic;
}

.quote-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.toy-drive-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Store Locator Section Styles */
.store-locator-section {
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.locator-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 2rem;
  margin-top: 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.locator-sidebar {
  display: flex;
  flex-direction: column;
  height: 550px;
  background-color: #ffffff;
  border-right: 1px solid #e5e7eb;
}

.sidebar-header {
  padding: 1.25rem 1.5rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.sidebar-header h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-dark);
}

.location-list {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.location-card {
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

.location-card:hover,
.location-card.active {
  background-color: #ffffff;
  border-color: var(--primary-red);
  box-shadow: 0 4px 12px rgba(229, 35, 41, 0.15);
}

.location-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.location-number {
  width: 24px;
  height: 24px;
  background-color: var(--primary-red);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.location-name {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.location-address {
  font-size: 0.85rem;
  color: #4b5563;
  line-height: 1.4;
  margin-bottom: 0.85rem;
}

.location-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--primary-red);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-btn:hover {
  color: var(--dark-red);
}

.locator-map-wrapper {
  height: 550px;
  position: relative;
}

.toy-drive-map {
  width: 100%;
  height: 100%;
  border-radius: 0 12px 12px 0;
}

/* Breakpoint Adjustments */
@media (max-width: 1100px) {
  .hero-title {
    font-size: 3.25rem;
  }

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

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

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

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

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

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

@media (max-width: 900px) {
  .locator-container {
    grid-template-columns: 1fr;
  }

  .locator-sidebar {
    height: 350px;
  }

  .locator-map-wrapper {
    height: 400px;
  }

  .toy-drive-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: rgba(10, 10, 10, 0.98);
    flex-direction: column;
    padding: 3rem 2rem;
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    margin: 0 auto 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-card-container {
    justify-content: center;
  }

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

  .events-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

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

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

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

  .newsletter-flex {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-btn {
    padding: 0.9rem;
  }

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

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

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

  .details-modal-content {
    grid-template-columns: 1fr;
  }

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