/* cards.css — Card components (camp, alumni, facility, coach, credential) */

/* ========================================
   CAMP CARDS
   ======================================== */
.camp-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  background: var(--dme-navy);
}

.camp-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.75) contrast(1.1);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.camp-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) contrast(1.05);
}

.camp-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 50%, transparent 100%);
}

.camp-card__sport {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dme-gold);
  margin-bottom: 8px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.camp-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  text-transform: uppercase;
  color: var(--dme-offwhite);
  line-height: 1.0;
  margin-bottom: 12px;
}

.camp-card__meta {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  color: rgba(244, 244, 244, 0.9);
  line-height: 1.6;
}

.camp-card__price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  color: var(--dme-offwhite);
  margin-top: 12px;
}

.camp-card__price span {
  font-weight: 400;
  font-size: 14px;
  color: rgba(244, 244, 244, 0.8);
}

.camp-card__link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dme-gold);
  transition: color 0.25s ease;
}

.camp-card__link:hover {
  color: var(--dme-offwhite);
}

/* ========================================
   ALUMNI CARDS
   ======================================== */
.alumni-card {
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid rgba(244, 244, 244, 0.08);
  border-radius: var(--border-radius);
  padding: 24px;
}

.alumni-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  color: var(--dme-offwhite);
  margin-bottom: 8px;
}

.alumni-card__achievement {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(244, 244, 244, 0.72);
  line-height: 1.5;
}

/* ========================================
   FACILITY CARDS
   ======================================== */
.facility-card {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}

.facility-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.05);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.facility-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.9) contrast(1.0);
}

.facility-card__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dme-offwhite);
}

/* ========================================
   COACH CARDS
   ======================================== */
.coach-card {
  text-align: center;
}

.coach-card__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 2.5px solid rgba(208, 173, 92, 0.35);
  box-shadow: 0 0 0 4px rgba(10, 26, 62, 0.9), 0 4px 16px rgba(0, 0, 0, 0.4);
  background: var(--dme-navy);
}

.coach-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: grayscale(20%) brightness(0.85) contrast(1.08);
}

.coach-card__name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--dme-offwhite);
  margin-bottom: 4px;
}

.coach-card__role {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 12px;
  color: rgba(244, 244, 244, 0.7);
}

/* Coach initials fallback */
.coach-initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: rgba(244, 244, 244, 0.5);
  background: var(--dme-navy);
}

/* ========================================
   CREDENTIAL ITEMS
   ======================================== */
.credential-item {
  background: rgba(244, 244, 244, 0.04);
  border: 1px solid rgba(244, 244, 244, 0.08);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
}

.credential-item__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  color: var(--dme-gold);
  line-height: 1.1;
}

.credential-item__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244, 244, 244, 0.72);
  margin-top: 8px;
}
