/* Global styles */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
  }
  
  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fff;
  }
  
  #root {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
  }
  
  /* Tailwind-like Utility Classes in Regular CSS */
  
  /* Section Title */
  .section-title {
    font-size: 2.25rem; /* equivalent to text-4xl */
    font-weight: 700;   /* equivalent to font-bold */
    margin-bottom: 1rem; /* equivalent to mb-4 */
    color: #e74c3c;
    text-align: center;
  }
  
  /* Section Wrapper */
  .section-wrapper {
    background-color: white;
    padding: 5rem 0; /* equivalent to py-20 */
    text-align: center;
  }
  .glass-card {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px); /* For Safari support */
      background-color: rgba(64 ,64 ,64,0.5); /* Semi-transparent background */
      border: 1px solid rgba(255, 255, 255, 0.1); /* Subtle white border */
  }
  
  /* Card Stat */
  .card-stat {
    text-align: center;
    padding: 1.5rem;  /* equivalent to p-6 */
    background-color: #f1f1f1; /* equivalent to bg-neutral-50 */
    border-radius: 0.375rem; /* equivalent to rounded-lg */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1); /* equivalent to shadow-sm */
    transition: transform 0.3s ease-in-out; /* equivalent to transition-transform duration-300 */
  }
  
  .card-stat:hover {
    transform: scale(1.05); /* equivalent to hover:scale-105 */
  }
  
  /* Stat Value */
  .stat-value {
    font-size: 2.25rem;  /* equivalent to text-4xl */
    font-weight: 700;     /* equivalent to font-bold */
  }
  
  /* Stat Label */
  .stat-label {
    color: #4a4a4a; /* equivalent to text-neutral-700 */
    margin-top: 0.5rem; /* equivalent to mt-2 */
  }
  
  /* Particles Styles */
  .particle {
    position: absolute;
    width: 1px;
    height: 1px;
    background-color: white;
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.8);
    animation: particleFloat 10s linear infinite;
  }
  
  @keyframes particleFloat {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(10px, -10px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  
  /* Navigation Menu */
  .nav-link {
    padding: 0.75rem 1rem; /* equivalent to px-3 py-2 */
    border-radius: 0.375rem; /* equivalent to rounded-md */
    font-size: 1rem; /* equivalent to text-sm */
    font-weight: 500; /* equivalent to font-medium */
    display: block;
    transition: color 0.3s ease, background-color 0.3s ease;
  }
  
  .nav-link:hover {
    background-color: #4a4a4a; /* equivalent to hover:bg-neutral-700 */
    color: #e74c3c; /* equivalent to hover:text-[#e74c3c] */
  }
  
  /* Mobile Menu Visibility */
  .mobile-menu-hidden {
    display: none;
  }
  
  .mobile-menu-visible {
    display: block;
  }

  /* Slideshow Styles */
.slideshow-container {
  position: relative;
}

.slideshow-category {
  display: none;
  height: 100%;
}

.slideshow-category.active {
  display: block;
}

.slide {
  display: none;
  height: 100%;
}

.slide.active {
  display: block;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from { opacity: .4 }
  to { opacity: 1 }
}

.dot {
  height: 10px;
  width: 10px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active {
  background-color: #8e44ad;
}

.slideshow-tab.active {
  background-color: #8e44ad;
  color: white;
}


.gallery-section {
    padding-top: 5rem;
  }
  
  .section-title {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
  }
  
  .highlight {
    color: #8e44ad;
  }
  
  .separator {
    width: 80px;
    height: 4px;
    background: #e74c3c;
    margin: 1rem auto;
  }
  
  .section-subtitle {
    max-width: 720px;
    margin: auto;
    color: #666;
    font-size: 1.125rem;
  }
  
  .tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .tab {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    background: #e5e5e5;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .tab.active {
    background: #8e44ad;
    color: white;
  }
  
  .slideshow-wrapper {
    position: relative;
    max-width: 800px;
    margin: auto;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    height: 400px;
  }
  
  .slideshow-container {
    height: 100%;
  }

  .slide-category {
    display: none;
    height: 100%;
  }
  
  .slide-category.active {
    display: block;
  }
  
  .slide {
    display: none;
    height: 100%;
  }
  
  .slide.active {
    display: block;
  }
  
  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: white;
  }
  
  .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    background: rgba(0,0,0,0.5);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    text-align: center;
    line-height: 2.5rem;
    cursor: pointer;
  }
  
  .nav.prev {
    left: 1rem;
  }
  
  .nav.next {
    right: 1rem;
  }
  
  .dots-container {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    text-align: center;
  }
  
  .dot {
    height: 10px;
    width: 10px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
  }
  
  .dot.active {
    background-color: #8e44ad;
  }
  
  /* Section Header */
.section-header {
  font-size: 3rem;
  font-weight: bold;
  color: #2d2d2d;
}

.highlight-text {
  color: #8e44ad;
}

.separator {
  width: 5rem;
  height: 4px;
  background-color: #e74c3c;
  margin: 1.5rem auto;
}

.section-subtext {
  font-size: 1.125rem;
  color: #6c6c6c;
  margin: 0 auto;
  max-width: 48rem;
}

/* Timeline */
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 2px;
  background: linear-gradient(to bottom, #8e44ad, #3498db);
  border-radius: 50%;
  display: none;
}

.timeline-items {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* Timeline Item */
.timeline-item {
  display: flex;
  align-items: center;
  position: relative;
}

.item-text {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.timeline-box {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 1.5rem;
  transform: scale(1);
  transition: transform 0.3s ease;
  border-top: 4px solid;
}

.timeline-box:hover {
  transform: scale(1.05);
}

.red-box {
  border-top-color: #e74c3c;
}

.blue-box {
  border-top-color: #3498db;
}

.purple-box {
  border-top-color: #8e44ad;
}

.gradient-box {
  background: linear-gradient(to right, #8e44ad, #3498db);
  color: white;
}

.date {
  font-size: 1.25rem;
  color: #8e44ad;
}

.event-title {
  font-size: 1.125rem;
  color: #333;
}

.event-description {
  color: #666;
}

.circle-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: none;
}

.red-marker {
  background-color: #e74c3c;
}

.blue-marker {
  background-color: #3498db;
}

.purple-marker {
  background-color: #8e44ad;
}

.gradient-marker {
  background: linear-gradient(to right, #8e44ad, #3498db);
}

.event-location {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  display: inline-block;
}

.location {
  font-weight: 600;
  color: white;
}

/* CTA Button */
.cta-button {
  margin-top: 4rem;
  text-align: center;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  background-color: #8e44ad;
  padding: 0.75rem 1.5rem;
  color: white;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s;
}

.cta-link:hover {
  background-color: #7d3b98;
  transform: scale(1.05);
}

.cta-icon {
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.25rem;
}

.text-outline-black {
    text-shadow:
      -1px -1px 0 black,
      1px -1px 0 black,
      -1px 1px 0 black,
      1px 1px 0 black;
  }


