/* Youth Camps Page */
.youth-camps {
  background: var(--white);
  padding: 2rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  font-family: "Segoe UI", sans-serif;
}

/* Title + Subtitle */
.camps-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  text-align: center;
  margin-bottom: 0.25rem;
}

.camps-subtitle {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 1.5rem;
}

.camps-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
}

/* Camp Block Layout *//* Camp Block Layout */
.camp-block {
  display: flex;
  flex-direction: row; /* hero left, content right */
  flex-wrap: wrap;
  margin-bottom: 2rem;
  border: 1px solid var(--light-gray);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Hero Image */
.camp-hero {
  flex: 1 1 50%;       /* wider: half the block */
  min-width: 320px;    /* ensure decent width on smaller screens */
  background: var(--black);
}
.camp-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills the left column neatly */
  object-position: center top; /* anchor so bottom content is visible */
  display: block;
}

/* Content Area */
.camp-content {
  flex: 1 1 50%;       /* the other half */
  padding: 1.5rem;
  background: var(--white);
  text-align: left;
}

.camp-logo {
  max-width: 140px;
  height: auto;
  margin-bottom: 1rem;
  display: block;
}

.camp-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-green-dark);
  margin: 0.5rem 0;
}

.camp-grades {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.camp-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--black);
}

.camp-note {
  font-size: 0.95rem;
  color: var(--black);
  margin-bottom: 1rem;
  font-style: italic;
}

/* Link Button */
.camp-link {
  display: inline-block;
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--primary-green);
  border-radius: 6px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.camp-link:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}
