/* =========================
   GENERAL PAGE STYLING
========================= */

body {
  background-color: #F2B8C6;
  margin: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

h1 {
  color: #FD5DA8;
  margin-top: 30px;
}

h2 {
  color: #C2185B;
}

h3 {
  color: #FD5DA8;
  margin-bottom: 10px;
}

/* =========================
   INTRO SECTION LAYOUT
========================= */

.intro-section {
  width: 90%;
  max-width: 1200px;
  margin: 40px auto;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Flex layout: paragraph left, image center, links right */
.intro-layout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  text-align: left;
}

/* LEFT SIDE: Intro paragraph */
.intro-text {
  flex: 1;
  min-width: 250px;
}

.intro-text p {
  line-height: 1.6;
}

/* CENTER: Image */
.intro-image {
  flex: 0 0 auto;
  text-align: center;
}

.intro-image img {
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

/* RIGHT SIDE: Links section */
.links-section {
  flex: 1;
  min-width: 250px;
}

.links-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.links-section a {
  color: #FD5DA8;
  text-decoration: none;
  font-weight: bold;
}

.links-section a:hover {
  text-decoration: underline;
}

/* =========================
   HEARTS CANVAS
========================= */

#hearts-canvas {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
}

/* =========================
   SCHEDULE GRID
========================= */

.schedule-grid {
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 60px auto;
  border-collapse: collapse;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.schedule-grid th,
.schedule-grid td {
  border: 2px solid #FD5DA8;
  padding: 12px;
  text-align: center;
}

.schedule-grid th {
  background-color: #FD5DA8;
  color: white;
}

.schedule-grid td:first-child {
  font-weight: bold;
  background-color: #ffe3ec;
}

.schedule-grid tr:hover td {
  background-color: #fff0f5;
  transition: 0.3s ease;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {
  .intro-layout {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .intro-text, .links-section {
    min-width: 80%;
  }
}