/* Responsive enhancements for mobile */
body {
  font-size: 17px;
  line-height: 1.6;
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }
}

.about-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.about-text {
  flex: 2 1 260px;
  min-width: 0;
}
.about-image {
  flex: 1 1 180px;
  min-width: 120px;
  min-height: 120px;
  background: url("./mnt/data/disclaimer-banner.jpg") center/cover no-repeat;
  border-radius: 10px;
  height: 180px;
  margin: 0 0 0 16px;
}

@media (max-width: 700px) {
  .about-section {
    flex-direction: column;
    gap: 18px;
  }
  .about-image {
    width: 100%;
    margin: 0;
    height: 120px;
  }
}

.hero-title {
  font-size: 108px;
  font-weight: bold;
  color: white;
}

@media (max-width: 900px) {
  .hero-title {
    font-size: 60px;
  }
  .hero {
    height: 350px;
    padding: 16px 10px 24px;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 36px;
  }
  .hero {
    height: 220px;
    padding: 10px 4vw 16px;
    gap: 6px;
  }
  .hero h1 {
    font-size: 18px;
    margin: 0 0 4px;
  }
  .hero h3 {
    font-size: 14px;
    margin: 0 0 6px;
  }
  .register-btn {
    font-size: 14px;
    padding: 8px 14px;
  }
}

.event-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.event-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  flex: 1;
  min-width: 0;
}

@media (max-width: 700px) {
  .event-cards {
    flex-direction: column;
    gap: 14px;
  }
  .event-card {
    padding: 14px 8px;
    font-size: 15px;
  }
}

.section {
  padding: 40px 20px;
}

@media (max-width: 600px) {
  .section {
    padding: 18px 4vw;
  }
}
body {
  font-family: "Lato", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff5f5;
  color: #333;
}
header {
  text-align: center;
  padding: 140px 0;
  background: #b22222;
  color: white;
}
nav {
  text-align: center;
  margin-bottom: 30px;
}
nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #b22222;
  font-weight: bold;
}
.hero {
  /* Position text at the bottom over the background image */
  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* push content to bottom */
  align-items: center; /* keep right alignment similar to previous text-align:end */
  text-align: center;
  padding: 20px 30px 30px; /* bottom padding for breathing space */
  gap: 10px;
  background-image: url("./mnt/data/disclaimer-banner.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  height: 600px;
  box-sizing: border-box;
}

.hero-logo {
  position: absolute;
  top: 14px;
  left: 18px;
  width: 90px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
  transition: width 0.25s ease, top 0.25s ease, left 0.25s ease;
}
/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-logo {
    width: 64px;
    top: 8px;
    left: 8px;
  }
}
@media (max-width: 380px) {
  .hero-logo {
    width: 54px;
    top: 6px;
    left: 6px;
  }
}

.hero-title {
  font-size: 108px;
  font-weight: bold;
  color: white;
}

.section {
  padding: 40px 20px;
}
footer {
  text-align: center;
  padding: 20px;
  background: #b22222;
  color: white;
}

.event-cards {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.event-card {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  text-align: center;
  flex: 1;
}
.event-card .event-link {
  color: inherit;
  text-decoration: none;
}
.event-card .event-link:hover {
  text-decoration: underline;
}
.register-btn {
  display: inline-block;
  background: #b22222;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}
.register-btn:hover {
  background: #941c1c;
  transform: translateY(-2px);
  text-decoration: none;
}
@media (max-width: 768px) {
  nav a {
    display: block;
    margin: 10px 0;
  }
  .section {
    padding: 20px 10px;
  }
}
