body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #222;
  scroll-behavior: smooth;
  text-align: justify;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  padding: 0.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
}

header h1 {
  font-size: 2.5rem;
  margin: 0;
  text-shadow: 2px 2px 6px black;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 0;
}

.header-logo {
  height: 100px;
  width: auto;
  margin-right: 1rem;
  border-radius: 12px;
  flex-shrink: 0;
}

.header-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  white-space: nowrap;
}

.header-text h1 {
  font-size: 2.2rem;
  margin: 0;
  text-shadow: 2px 2px 6px black;
}

.header-text nav {
  margin-top: 0.5rem;
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

nav a {
  color: #66e0ff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 1000px;
  margin: 160px auto 2rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

img.hero {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  object-fit: cover;
}

.hero-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.carousel-slide {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  flex-shrink: 0;
  border-radius: 12px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.carousel-btn.prev {
  left: 10px;
}
.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .active {
  background: #1a73e8;
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background: rgba(0,0,0,0.4);
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  border-radius: 50%;
  user-select: none;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  gap: 0.5rem;
}

.carousel-dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots .active {
  background: #1a73e8;
}

section {
  margin-bottom: 2rem;
}

section ul {
  list-style: none;
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

section ol,
section ul {
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

section ol li,
section ul li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
  line-height: 1.6;
  padding-left: 0.5rem;
  position: relative;
}

section ol li::marker {
  font-weight: bold;
  color: #1a73e8;
}

section ul li::before {
  content: "•";
  color: #1a73e8;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

section h3 {
  background: #eef3f7;
  padding: 0.5rem 1rem;
  border-left: 4px solid #1a73e8;
  margin-top: 2rem;
  border-radius: 4px;
}

.results-gallery {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.results-gallery .results {
  flex: 1 1 300px;
}

.results-gallery .gallery {
  flex: 1 1 300px;
}

.results ol,
.results ul {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.results li {
  margin: 0.4rem 0;
  font-size: 1.1rem;
}


h2 {
  color: #1a73e8;
  margin-bottom: 0.5rem;
}

.supporters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.supporter {
  background: #eef3f7;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
}

table.schedule {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

table.schedule th,
table.schedule td {
  border: 1px solid #ccc;
  padding: 0.75rem;
  text-align: left;
}

footer {
  text-align: center;
  padding: 1rem;
  color: #555;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  nav.active {
    display: flex;
  }

  nav a {
    font-size: 1rem;
    margin: 0.3rem 0;
  }

  .supporters {
    flex-direction: column;
  }

  .supporter {
    text-align: center;
  }

  table.schedule th,
  table.schedule td {
    font-size: 0.85rem;
    padding: 0.5rem;
  }

  .header-text {
    position: static;
    transform: none;
    text-align: left;
  }

  .header-text h1 {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }

  .header-text nav {
    justify-content: flex-start;
  }

  .results-gallery {
    flex-direction: column;
  }
}