﻿.hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 60px 20px;
  text-align: center;
}
.hero-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-section .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 1;
}
.hero-section .hero-container {
  position: relative;
  z-index: 2;
  background-color: rgba(72, 126, 140, 0.55);
  padding: 40px 60px;
  border-radius: 8px;
  max-width: 900px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.hero-section .hero-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.4;
}
.hero-section .hero-dates {
  color: #a7e089;
  font-size: 1.2rem;
  font-weight: 500;
}
.hero-section .hero-dates p {
  margin: 8px 0;
  letter-spacing: 1px;
}

.homelogo {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.homelogo img {
  width: 100%;
  max-width: 150px;
}

.intro-section {
  padding: 40px 0;
}
.intro-section .intro-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.intro-section .intro-layout .mascot-left img, .intro-section .intro-layout .mascot-right img {
  width: 150px;
  height: auto;
}
.intro-section .intro-layout .mascot-right img {
  transform: scaleX(-1);
}
.intro-section .intro-layout .intro-text {
  text-align: center;
  flex: 1;
}
.intro-section .intro-layout .intro-text .text-teal,
.intro-section .intro-layout .intro-text .text-green-light,
.intro-section .intro-layout .intro-text .text-green-dark {
  background: linear-gradient(to right, #85bc21, #00a2e3, #85bc21);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.4s ease-in-out;
}
.intro-section .intro-layout .intro-text .text-teal:hover,
.intro-section .intro-layout .intro-text .text-green-light:hover,
.intro-section .intro-layout .intro-text .text-green-dark:hover {
  background-position: right center;
}
.intro-section .intro-layout .intro-text .text-teal {
  font-size: 1.4rem;
  margin-bottom: 25px;
}
.intro-section .intro-layout .intro-text .text-green-light {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.intro-section .intro-layout .intro-text .text-green-dark {
  font-size: 1.1rem;
  font-weight: 600;
}

.info-section {
  padding: 50px 0;
}
.info-section .info-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 10px 10px #ddd;
  padding: 40px;
  margin-bottom: 30px;
}
.info-section .info-card .card-block {
  margin-bottom: 40px;
  text-align: center;
}
.info-section .info-card .card-block:last-child {
  margin-bottom: 0;
}
.info-section .info-card .card-block p {
  color: #444444;
  text-align: justify;
}
.info-section .info-card.flex-card {
  display: flex;
  padding: 20px;
  gap: 30px;
  align-items: stretch;
}
.info-section .info-card.flex-card .card-image {
  flex: 0 0 40%;
}
.info-section .info-card.flex-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}
.info-section .info-card.flex-card .card-content {
  flex: 1;
  padding: 20px 0;
}
.info-section .info-card.flex-card .card-content p {
  color: #444444;
  text-align: justify;
}
.info-section .gradient-badge {
  display: inline-block;
  background: linear-gradient(to right, #81C14B, #0096A6, #81C14B);
  background-size: 200% auto;
  color: #ffffff;
  padding: 10px 30px;
  font-weight: bold;
  margin-bottom: 20px;
  border-radius: 0 25px 0 25px;
  transition: background-position 0.4s ease-in-out, border-radius 0.4s ease-in-out;
}
.info-section .gradient-badge:hover {
  background-position: right center;
  border-radius: 25px 0 25px 0;
}
.info-section .gradient-badge.badge-left {
  display: block;
  width: fit-content;
  margin-left: 0;
  text-align: left;
}

.supporters-section {
  padding: 40px 0 60px;
  background-color: #ffffff;
}
.supporters-section .supporters-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 15px;
}
.supporters-section .supporters-grid .supporter-box {
  border: 1px solid #dddddd;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  height: 120px;
}
.supporters-section .supporters-grid .supporter-box .box-header {
  background-color: #00AEEF;
  color: #ffffff;
  text-align: center;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 8px 5px;
}
.supporters-section .supporters-grid .supporter-box .box-body {
  flex: 1;
}

@media (max-width: 1024px) {
  .supporters-section .supporters-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .intro-section .intro-layout {
    flex-direction: column;
  }
  .info-section .info-card.flex-card {
    flex-direction: column;
  }
  .info-section .info-card.flex-card .card-image {
    flex: 0 0 auto;
    height: 250px;
  }
  .supporters-section .supporters-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
