/* Enhanced Landing Page Styles */

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding-top: 80px; /* Account for fixed navbar */
}

.navbar-spacer {
  height: 80px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(255, 255, 255, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(circle at 40% 40%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
}

.hero-gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(255, 255, 255, 0.05) 50%,
    rgba(0, 0, 0, 0.1) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 20px;
}

.hero-logo-container {
  margin-top: 50px;
  margin-bottom: 10px;
  display: inline-block;
}

.hero-logo {
  width: 55%;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
}

.highlight {
  color: #fca822;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.round-white {
  color: white;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.roundtable-wrapper {
  white-space: nowrap;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-divider {
  width: 100px;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  margin: 20px auto;
  border-radius: 2px;
}

.hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  color: white;
}

.stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #fca822;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.stat-label {
  font-size: clamp(0.9rem, 2vw, 1rem);
  opacity: 0.95;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-hero {
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-hero.primary {
  background: linear-gradient(45deg, #fca822, #f39c12);
  color: white;
  box-shadow: 0 8px 25px rgba(252, 168, 34, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-hero.secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-hero:hover {
  transform: translateY(-3px);
}

.btn-hero.primary:hover {
  box-shadow: 0 12px 35px rgba(252, 168, 34, 0.6);
}

.btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  animation: bounce 2s infinite;
  z-index: 10;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border: solid rgba(255, 255, 255, 0.9);
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(45deg);
  margin-bottom: 10px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Enhanced About Section */
.about-enhanced {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 800;
}

.section-underline {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), #ffb347);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.welcome-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}

.welcome-text-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.welcome-text-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), #ffb347);
}

.card-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.card-content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}

.join-prompt {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.join-prompt i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.btn-inline {
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-inline:hover {
  background: #e89710;
  transform: scale(1.05);
}

.welcome-images-enhanced {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.welcome-images-enhanced .welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.welcome-images-enhanced:hover .welcome-image img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  color: white;
  padding: 30px 20px 20px;
  font-size: 1.2rem;
  font-weight: 600;
}

.social-buttons-enhanced {
  text-align: center;
}

.social-buttons-enhanced h3 {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 30px;
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: white;
  padding: 25px;
  border-radius: 15px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.social-card:hover::before {
  transform: translateX(100%);
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.social-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.social-card.facebook .social-icon {
  background: linear-gradient(45deg, #3b5998, #4c70ba);
}

.social-card.instagram .social-icon {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-icon i {
  color: white;
  font-size: 1.5rem;
}

.social-content h4 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.social-content p {
  color: #666;
  margin-bottom: 5px;
}

.follow-count {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Enhanced Events Section */
.events-enhanced {
  background: white;
}

.charity-event-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.charity-event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.event-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.event-badge.seasonal {
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.event-badge.community {
  background: linear-gradient(45deg, #f093fb, #f5576c);
}

.charity-event-card h3 {
  color: var(--text-color);
  margin: 30px 30px 20px;
  font-weight: 800;
}

.event-highlights {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(252, 168, 34, 0.1);
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 600;
}

.highlight-item i {
  color: var(--primary-color);
}

.btn-event {
  background: linear-gradient(45deg, var(--primary-color), #ffb347);
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 20px;
  margin-bottom: 30px;
}

.charity-event-card .event-info {
  padding-bottom: 20px;
}

@media (max-width: 767px) {
  .btn-event {
    margin-bottom: 60px;
  }

  .charity-event-card .event-info {
    padding-bottom: 40px;
  }
}

.btn-event:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(252, 168, 34, 0.4);
}

/* Enhanced Donations Section */
.donations-enhanced {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.donations-enhanced .section-header h2 {
  color: white;
}

.donations-enhanced .section-underline {
  background: linear-gradient(90deg, var(--primary-color), #ffb347);
}

.donations-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.donations-cta {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.cta-content p {
  margin-bottom: 25px;
  opacity: 0.9;
  line-height: 1.6;
}

.btn-cta {
  background: var(--primary-color);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e89710;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Enhanced Social Feed Section */
.social-enhanced {
  background: #f8fafc;
}

.social-feed-enhanced {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}

.social-feed-main {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.feed-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.platform-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.platform-info i {
  background: rgba(255, 255, 255, 0.2);
  padding: 12px;
  border-radius: 50%;
  font-size: 1.2rem;
}

.platform-info h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
}

.platform-info p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.follow-btn {
  background: var(--primary-color);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.follow-btn:hover {
  background: #e89710;
  transform: scale(1.05);
}

.facebook-container {
  padding: 0;
  min-height: 600px;
}

.facebook-container .fb-page {
  width: 100% !important;
}

.facebook-container .fb-page > span {
  width: 100% !important;
}

.facebook-container .fb-page iframe {
  width: 100% !important;
}

.social-cta-panel {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.social-cta-panel h3 {
  color: var(--text-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.social-cta-panel > p {
  color: #666;
  margin-bottom: 30px;
  line-height: 1.6;
}

.social-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f8fafc;
  padding: 20px;
  border-radius: 15px;
  min-width: 150px;
}

.stat-card i {
  font-size: 2rem;
  color: var(--primary-color);
}

.stat-card .number {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-color);
}

.stat-card .label {
  font-size: 0.9rem;
  color: #666;
}

.social-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.social-action-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-action-btn.facebook {
  background: linear-gradient(45deg, #3b5998, #4c70ba);
}

.social-action-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-action-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Carousel Styles for Donations */
.donations-carousel-container {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
}

.carousel-container {
  width: 100%;
  position: relative;
}

.carousel-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}

.carousel-content {
  flex: 1;
  overflow: hidden;
  border-radius: 15px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  width: 100%;
}

.carousel-item {
  flex: 0 0 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.donation-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.donation-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.donation-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.donation-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.donation-year {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.carousel-btn:hover {
  background: white;
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.carousel-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.carousel-prev {
  margin-right: 20px;
}

.carousel-next {
  margin-left: 20px;
}

/* Mobile carousel adjustments */
@media (max-width: 767px) {
  .carousel-btn {
    display: none;
  }

  .carousel-content {
    border-radius: 10px;
  }

  .donation-card {
    padding: 25px 20px;
  }

  .donation-amount {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .carousel-item {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-item {
    flex: 0 0 33.333%;
  }
}
@media (min-width: 768px) {
  .hero-stats {
    gap: 60px;
  }

  .welcome-content-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .charity-event-card .event-content {
    flex-direction: row;
    align-items: stretch;
  }

  .charity-event-card .event-images {
    flex: 1;
    height: 350px;
  }

  .charity-event-card .event-info {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .donations-showcase {
    grid-template-columns: 2fr 1fr;
  }

  .social-feed-enhanced {
    grid-template-columns: 2fr 1fr;
    gap: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    padding: 0 40px;
  }

  .social-stats {
    gap: 40px;
  }

  .facebook-container {
    min-height: 600px;
  }
}

.roundtable-wrapper {
  font-style: italic;
}

/* Remove Purple Gradients - Replace with Brand Colors */
.hero-section {
  /* Replace purple gradient with brand-appropriate background */
  background: linear-gradient(135deg, #1d1d1a 0%, #2a2a27 100%);
}

/* Update hero background particles to use brand colors */
.hero-particles {
  background: radial-gradient(
      circle at 20% 80%,
      rgba(251, 175, 51, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(251, 175, 51, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.03) 0%,
      transparent 50%
    );
}

/* Update hero gradient to brand colors */
.hero-gradient {
  background: linear-gradient(
    45deg,
    rgba(29, 29, 26, 0.1) 0%,
    rgba(251, 175, 51, 0.05) 50%,
    rgba(29, 29, 26, 0.1) 100%
  );
}

/* Hero title with brand fonts */
.hero-title {
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero subtitle with brand styling */
.hero-subtitle {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero description with brand font */
.hero-description {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-weight: 400;
}

/* Hero divider with brand color */
.hero-divider {
  background: #fbaf33; /* Golden Yellow */
}

/* Stats with brand styling */
.stat-number {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #fbaf33; /* Golden Yellow */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.stat-label {
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Hero buttons with brand colors */
.btn-hero.primary {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #fbaf33;
}

.btn-hero.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-hero.primary:hover {
  background: #e89d1a; /* Slightly darker golden */
  border-color: #e89d1a;
  box-shadow: 0 12px 35px rgba(251, 175, 51, 0.6);
}

.btn-hero.secondary:hover {
  background: #ffffff;
  color: #1d1d1a; /* Table Grey */
  border-color: #fbaf33; /* Golden Yellow border */
}

/* Remove purple from about section */
.about-enhanced {
  background: #f8f9fa; /* Light neutral background instead of purple gradient */
}

/* Section headers with brand styling */
.section-header h2 {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #1d1d1a; /* Table Grey */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Section underline with brand color */
.section-underline {
  background: #fbaf33; /* Golden Yellow */
}

/* Welcome text card styling */
.card-content h3 {
  color: #1d1d1a; /* Table Grey */
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.card-content p {
  font-family: "Open Sans", sans-serif;
  color: #1d1d1a; /* Table Grey */
}

/* Welcome text card top border */
.welcome-text-card::before {
  background: #fbaf33; /* Golden Yellow */
}

/* Join prompt with brand colors */
.join-prompt {
  background: #1d1d1a; /* Table Grey background */
  color: #ffffff;
  border: 2px solid #fbaf33; /* Golden Yellow border */
}

.join-prompt i {
  color: #fbaf33; /* Golden Yellow icon */
}

.btn-inline {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-inline:hover {
  background: #e89d1a; /* Slightly darker golden */
}

/* Social buttons with brand styling */
.social-buttons-enhanced h3 {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #1d1d1a; /* Table Grey */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Social card icons with brand styling */
.social-icon {
  background: #1d1d1a; /* Table Grey background */
  border: 2px solid #fbaf33; /* Golden Yellow border */
}

.social-card.facebook .social-icon i,
.social-card.instagram .social-icon i {
  color: #fbaf33; /* Golden Yellow icons */
}

.social-content h4 {
  color: #1d1d1a; /* Table Grey */
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.follow-count {
  color: #fbaf33; /* Golden Yellow */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Social card hover effects with brand colors */
.social-card:hover {
  border-color: #fbaf33; /* Golden Yellow border on hover */
}

/* Event card styling */
.charity-event-card h3 {
  color: #1d1d1a; /* Table Grey */
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.charity-event-card:hover {
  border-color: #fbaf33; /* Golden Yellow border on hover */
}

/* Event highlights with brand colors */
.highlight-item {
  background: rgba(251, 175, 51, 0.1); /* Light golden background */
  border: 1px solid rgba(251, 175, 51, 0.3); /* Golden border */
  font-family: "Open Sans", sans-serif;
  color: #1d1d1a; /* Table Grey text */
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.highlight-item i {
  color: #fbaf33; /* Golden Yellow icons */
}

/* Event buttons */
.btn-event {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #fbaf33;
}

.btn-event:hover {
  background: #e89d1a; /* Slightly darker golden */
  border-color: #e89d1a;
  box-shadow: 0 5px 15px rgba(251, 175, 51, 0.4);
}

/* Remove purple from donations section and other gradients */
.donations-enhanced {
  background: #1d1d1a; /* Table Grey background */
  color: #ffffff;
}

.donations-enhanced .section-header h2 {
  color: #ffffff;
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.donations-enhanced .section-underline {
  background: #fbaf33; /* Golden Yellow */
}

/* CTA button */
.btn-cta {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.btn-cta:hover {
  background: #e89d1a; /* Slightly darker golden */
}

/* Social feed section styling */
.social-enhanced {
  background: #f8f9fa; /* Light neutral background */
}

/* Feed header with brand colors */
.feed-header {
  background: #1d1d1a; /* Table Grey */
  border-bottom: 3px solid #fbaf33; /* Golden Yellow border */
}

.platform-info i {
  background: rgba(251, 175, 51, 0.2); /* Light golden background */
  color: #fbaf33; /* Golden Yellow icon */
}

.platform-info h3 {
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.platform-info p {
  font-family: "Open Sans", sans-serif;
  font-weight: 500;
}

/* Follow button */
.follow-btn {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.follow-btn:hover {
  background: #e89d1a; /* Slightly darker golden */
}

/* Social CTA panel */
.social-cta-panel h3 {
  color: #1d1d1a; /* Table Grey */
  font-family: "Orbitron", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.social-cta-panel > p {
  font-family: "Open Sans", sans-serif;
}

/* Social stats */
.stat-card i {
  color: #fbaf33; /* Golden Yellow icons */
}

.stat-card .number {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #1d1d1a; /* Table Grey */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.stat-card .label {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Social action buttons */
.social-action-btn {
  background: #1d1d1a; /* Table Grey */
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.social-action-btn:hover {
  color: #1d1d1a; /* Table Grey text */
}

/* Carousel donation styling */
.donation-amount {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #fbaf33; /* Golden Yellow */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.donation-title {
  font-family: "Orbitron", Arial Black, sans-serif;
  color: #1d1d1a; /* Table Grey */
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.donation-year {
  color: #fbaf33; /* Golden Yellow */
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Carousel buttons with brand colors */
.carousel-btn {
  background: #fbaf33; /* Golden Yellow */
  color: #1d1d1a; /* Table Grey text */
  border: 2px solid #fbaf33;
  box-shadow: 0 8px 25px rgba(251, 175, 51, 0.4);
}

.carousel-btn:hover:not(:disabled) {
  background: #e89d1a; /* Slightly darker golden */
  border-color: #e89d1a;
  box-shadow: 0 12px 35px rgba(251, 175, 51, 0.6);
}

.carousel-btn:disabled {
  background: #ccc;
  border-color: #ccc;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* --- Overrides: cap Facebook column at 500px, center it; let CTA grow --- */

/* Desktop/tablet: make the left grid track max 500px and let the right expand */
@media (min-width: 768px) {
  .social-feed-enhanced {
    /* Was: 2fr 1fr —> now: left auto-sized up to 500px, right fills remainder */
    grid-template-columns: minmax(0, 500px) 1fr !important;
  }
}

/* Cap the Facebook card itself and center it in its track */
.social-feed-main {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto; /* centers within its grid column */
}

/* Center the FB widget inside the card, and respect the 500px cap */
.facebook-container {
  display: flex;
  justify-content: center;
}

/* Force the plugin and its wrappers to stay within 500px while still fluid */
.facebook-container .fb-page {
  width: 100% !important;
  max-width: 500px !important;
}
.facebook-container .fb-page > span {
  width: 100% !important;
  max-width: 500px !important;
}
.facebook-container .fb-page iframe {
  width: 100% !important;
  max-width: 500px !important;
}

/* Optional: make the CTA stretch nicely */
.social-cta-panel {
  height: 100%;
  align-self: stretch;
}
