:root {
  color-scheme: dark;
  color: #1a1a1a;
  background: #fafafa;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(rgba(248, 250, 252, 0.3), rgba(248, 250, 252, 0.3));
}

body::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:url('website-body2.jpg');
   /* linear-gradient(rgba(248, 250, 252, 0.55), rgba(248, 250, 252, 0.55)),*/
    /*url('website-header.jpg'); center center / cover no-repeat;*/
  background-size: cover;
  /*transform: rotate(90deg) scale(1);*/
  transform-origin: center center;

}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.78), rgba(41, 93, 155, 0.72)),
    url('website-header.jpg') center / cover no-repeat;
  color: white;
  padding: 4rem 0 5rem;
}

.hero-content {
  display: grid;
  gap: 0.25rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  opacity: 0.88;
  padding-bottom:0.5rem;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.02;
}

.subtitle {
  font-size: 2rem;
  
  margin: 0;
  opacity: 0.95;
}

.hero-copy {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
  padding-top: 2rem;
}

.button {
  display: inline-block;
  padding: 0.95rem 1.5rem;
  background: #ffd166;
  color: #1a1a1a;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
}

.button-secondary {
  background: white;
  color: #1a1a1a;
  border: 1px solid #d0d0d0;
}

.section {
  padding: 4rem 0;
}

.section-heading h2 {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 2.5vw, 2.5rem);
}

.section-heading p {
  margin: 0;
}

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

.cards {
  display: grid;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  background: white;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.organizer-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1rem;
  align-items: start;
}

.organizer-photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 18px;
  border: 2px solid #d8e4ef;
  background: linear-gradient(135deg, #eef5fb 0%, #f7f7f7 100%);
  display: block;
}

.organizer-content h3 {
  margin-top: 0;
}

.card h3 {
  margin-top: 0;
}

.activity-list {
  display: grid;
  gap: 1rem;
}

.activity-list article {
  padding: 1.25rem;
  background: white;
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

thead {
  background: #0f4c81;
  color: white;
}

th, td {
  text-align: left;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #eee;
}

tbody tr:last-child td {
  border-bottom: none;
}

.contact-section p {
  max-width: 760px;
}

.footer {
  padding: 2rem 0 3rem;
  text-align: center;
  color: #595959;
}

@media (min-width: 900px) {
  .split {
    grid-template-columns: 1fr 1.2fr;
  }

  .hero {
    padding: 5rem 0 6rem;
  }
}

@media (max-width: 660px) {
  .hero {
    padding: 3rem 0 3.5rem;
  }

  .organizer-card {
    grid-template-columns: 1fr;
  }

  th, td {
    padding: 0.9rem 0.85rem;
  }
}
