/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header Styles */
.header {
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #facc15 0%, #eab308 50%, #3b82f6 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #1f2937;
}

.logo-circle span {
  color: white;
  font-weight: bold;
  font-size: 0.75rem;
  text-align: center;
}

.team-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-desktop {
  display: none;
  gap: 3rem;
}

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

.nav-desktop a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-desktop a:hover {
  color: #3b82f6;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s;
}

.nav-mobile a:hover {
  color: #3b82f6;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb {
  margin-bottom: 2rem;
}

.breadcrumb span {
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb-link {
  color: #9ca3af;
  margin-left: 0.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-title div {
  margin-bottom: 0.5rem;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-text p {
  color: #4b5563;
  line-height: 1.7;
}

.hero-image-container {
  position: relative;
}

.hero-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.25rem;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image .hero-banner-image {
  object-fit: contain;
  object-position: center;
}

/* Carousel */
.carousel-container {
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.carousel-item {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  pointer-events: none;
}

.carousel-item.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
  border-radius: 4px;
}

.carousel-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-prev {
  left: 1rem;
}

.carousel-next {
  right: 1rem;
}

.hero-card {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 300px;
}

.hero-card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.hero-card p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Gallery Section */
.gallery {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 768px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.gallery-item {
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: opacity 0.3s;
}

.gallery-item:hover {
  opacity: 0.9;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

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

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

.gallery-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.gallery-item p {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Sponsors logo cards: keep logos fully visible */
.sponsors-gallery .gallery-image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
}

.sponsors-gallery .gallery-image img {
  object-fit: contain;
}

.sponsors-gallery .gallery-item:hover .gallery-image img {
  transform: none;
}

/* Team Section */
.team {
  padding: 4rem 0;
  background-color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.team-image {
  width: 180px;         /* Adjust size as needed */
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem auto;
  background: #f0f0f0;  /* Optional: fallback background */
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top; /* Adjusts focus, can use 'center' or 'top' */
  border-radius: 50%;
  display: block;
}

.team-member:hover .team-image img {
  transform: scale(1.05);
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.875rem;
  color: #3b82f6;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.team-bio {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.7;
}

/* Footer */
.footer {
  background-color: #f3f4f6;
  border-top: 1px solid #e5e5e5;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #3b82f6;
}

.footer-column span {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-bottom {
  border-top: 1px solid #e5e5e5;
  padding-top: 2rem;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: #6b7280;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .hero-title {
    font-size: 4rem;
  }

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

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

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

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

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

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

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

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

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