@import url('style.css');

/* BASE (page background/colour — the rest is inherited from style.css) */
body {
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* HERO */
.activities-hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 80px;
  text-align: center;
  background: linear-gradient(180deg, #fff, #fef7f5);
}
.activities-hero h1 {
  font-size: 2.8rem;
  color: #6fbb79;
  margin-bottom: 18px;
}
.activities-hero h1 span {
  color: var(--accent2);
}
.activities-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* LINKS SECTION */
.activity-links {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}
.activity-links h2 {
  font-size: 2rem;
  color: var(--accent4);
  margin-bottom: 40px;
}
.link-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.link-card {
  display: flex;
  flex-direction: column;
  text-align: left;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 340px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.link-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.link-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.card-text {
  padding: 20px;
}
.card-text h3 {
  margin-top: 0;
  color: var(--accent1);
}
.card-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* SHEETS SECTION */
.activity-sheets {
  background: linear-gradient(180deg, #fffdf9, #fff);
  padding: 100px 20px;
  text-align: center;
}
.activity-sheets h2 {
  font-size: 2rem;
  color: var(--accent3);
  margin-bottom: 16px;
}
.activity-sheets p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1rem;
}
.sheet-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.sheet-item {
  background: turquoise;
  color: navy;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, background 0.3s ease;
}
.sheet-item:hover {
  background: var(--accent1);
  color: white;
  transform: translateY(-3px);
}

/* CLOSING SECTION */
.activities-closing {
  text-align: center;
  background: var(--accent3);
  color: #fff;
  padding: 100px 20px;
}
.activities-closing h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.activities-closing p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 800px) {
  .link-cards {
    flex-direction: column;
    align-items: center;
  }
  .link-card {
    width: 90%;
  }
}