/* Main page styling */
body {
  background-color: #E6E6FA; /* Lilac background */
  color: #333333; /* Softer than pure black for text */
  font-family: Verdana, sans-serif;
  margin: 0;
  padding-bottom: 20px; /* Adds padding at the bottom of the page */
}

/* Main headline */
.site-title {
  color: #6A0DAD; /* Purple (not black) */
  text-align: center;
  font-size: 2.5em;  /* Larger font size */
  margin: 20px 0;
}

/* Center the image and adjust size */
.hero {
  text-align: center;  /* Ensures the image is centered */
  margin: 20px 0;  /* Adds space above and below */
}

.hero-img {
  width: 80%;  /* Resizes image to 80% of the container */
  max-width: 400px;  /* Keeps image from getting too large */
  height: auto;  /* Maintains aspect ratio */
  border-radius: 12px;  /* Optional: rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);  /* Optional: subtle shadow */
}

/* Intro paragraph */
.intro {
  width: 70%;
  margin: 20px auto;
  text-align: center;
  line-height: 1.6;
}

/* Divider line */
.divider {
  height: 4px;
  width: 60%;
  background-color: #6A0DAD;
  margin: 30px auto;
}

/* Sections */
.section {
  width: 80%;
  margin: 40px auto;
}

/* Section headings */
h2 {
  text-align: center;
  color: #4B0082;
  font-size: 1.8em;  /* Make headings a bit larger */
  margin-bottom: 20px;  /* Adds space below the heading */
}

/* Table styling */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
}

th, td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: center;
}

th {
  background-color: #D8B4F8;
  color: white; /* Ensures headers are white text */
}

/* Links section */
.links-list {
  list-style: none;
  padding: 0;
  text-align: center;
}

.links-list li {
  margin: 10px 0;
}

.links-list a {
  color: #6A0DAD;
  text-decoration: none;
  font-weight: bold;
}

.links-list a:hover {
  text-decoration: underline;
}

/* Videos grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Makes the layout responsive */
  gap: 20px;
  padding: 20px;
}

iframe {
  width: 100%;
  height: 250px;
  border-radius: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background-color: #D8B4F8;
  color: white;
  margin-top: 40px;
}