/* =============================================
   LA LUNA — STYLES
   =============================================
   EASY EDIT GUIDE:
   - Colors    → :root section below
   - Fonts     → :root section below
   - Spacing   → :root section below
   ============================================= */

:root {
  /* --- Brand Colors --- */
  --color-bg:         #d4d4d4;        /* page background */
  --color-surface:    #c8c8c8;        /* card / section backgrounds */
  --color-accent:     #8b6f9e;        /* primary accent (purple/mauve) */
  --color-accent-light: #c4a8d4;      /* lighter accent */
  --color-text:       #2c2c2c;        /* main text */
  --color-text-muted: #7a7068;        /* secondary text */
  --color-white:      #ffffff;

  /* --- Typography --- */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Montserrat', Arial, sans-serif;

  /* --- Spacing & Layout --- */
  --section-pad:   6rem 0;
  --container-max: 1100px;
  --radius:        6px;
  --radius-lg:     16px;

  /* --- Transitions --- */
  --transition: 0.25s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }

/* ===== UTILITIES ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: var(--section-pad); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.section-title.centered { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background-color: #2d6b68;
  color: var(--color-white);
}
.btn-primary:hover { background-color: #1a4a47; }

.btn-secondary {
  background-color: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}
.btn-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

/* ===== NAVIGATION ===== */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background-color: #2d6b68;
  transition: box-shadow var(--transition);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #ffffff;
  display: none; /* hidden — logo is in the hero */
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  width: 100%;
  justify-content: center;
  padding-left: 0;
  margin-left: 0;
}

.nav-links li a {
  display: block;
  padding: 0 1.1rem;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover { color: #ffffff; }

/* ===== DROPDOWN ===== */
.has-dropdown { position: relative; }

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #2d6b68;
  list-style: none;
  min-width: 220px;
  border-top: 2px solid #7abf3e;
  z-index: 200;
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  white-space: nowrap;
  transition: background-color var(--transition), color var(--transition);
}

.dropdown li a:hover {
  background-color: rgba(255,255,255,0.1);
  color: #ffffff;
}

.has-dropdown:hover .dropdown { display: block; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  color: #ffffff;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  padding-top: 64px; /* offset fixed nav */
}

.hero-title-band {
  background: linear-gradient(160deg, #f5eef8 0%, #ede8f0 40%, #e8ede8 100%);
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  width: 100%;
  margin: 0;
}

.hero-main-photo {
  width: 100%;
  height: 480px;
  display: block;
  object-fit: cover;
  border-radius: 0;
}

.hero-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.hero-logo-main {
  height: 160px;
  width: auto;
}

.hero-logo-usagym {
  height: 96px;
  width: auto;
}

.hero-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  max-width: 900px;
  margin: 2rem auto 0;
}

.hero-photo-slot {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.hero-main-photo {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.hero-main-photo.slide {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-main-photo.slide.active {
  opacity: 1;
}

.slide-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.75);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  color: #2d6b68;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.slide-arrow:hover { background: rgba(255,255,255,0.95); }
.slide-arrow--prev { left: 8px; }
.slide-arrow--next { right: 8px; }

.hero-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1rem;
}

.hero-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.hero-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #730505;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-social-link svg {
  width: 28px;
  height: 28px;
}

.hero-title {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.15;
  color: #89011D;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0;
}


/* ===== ABOUT ===== */
.about { background-color: var(--color-bg); padding: 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image .image-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

/* ===== CLASSES ===== */
.classes { background-color: var(--color-surface); }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.class-card {
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(139, 111, 158, 0.12);
}

.class-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.class-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.class-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  transition: letter-spacing var(--transition);
}
.card-link:hover { letter-spacing: 0.1em; }

/* ===== SCHEDULE ===== */
.schedule { background-color: var(--color-bg); }

.schedule-table-wrapper {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background-color: var(--color-white);
  font-size: 0.9rem;
}

.schedule-table th,
.schedule-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--color-surface);
}

.schedule-table thead th {
  background-color: var(--color-accent);
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.schedule-table tbody tr:last-child td { border-bottom: none; }
.schedule-table tbody tr:hover { background-color: var(--color-surface); }

/* ===== GALLERY ===== */
.gallery { background-color: var(--color-surface); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.video-grid video {
  width: 100%;
  border-radius: var(--radius);
  background: #000;
}

/* ===== IMAGE PLACEHOLDER (remove when adding real photos) ===== */
.image-placeholder {
  background-color: var(--color-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
  border-radius: var(--radius);
}

/* ===== FEATURED VIDEO ===== */
.featured-video {
  background-color: var(--color-bg);
  padding: 64px 0;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.video-embed-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* ===== CONTACT ===== */
.contact {
  background-color: #d4d4d4;
  padding: 96px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #d4e8e7;
  box-shadow: 0 4px 20px rgba(45, 107, 104, 0.08);
  padding: 2.5rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-details li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eaf3f2;
}

.contact-details li:last-child { border-bottom: none; }

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2d6b68;
}

.contact-detail-value {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

.contact-detail-link {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color var(--transition);
}
.contact-detail-link:hover { color: #2d6b68; }

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2d6b68;
  border: 1.5px solid #2d6b68;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition);
}
.social-links a:hover {
  background-color: #2d6b68;
  color: #ffffff;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2d6b68;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: border-color var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #2d6b68;
}

.form-success {
  display: none;
  color: var(--color-accent);
  font-size: 0.9rem;
  font-style: italic;
  text-align: center;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox.open { display: flex; }

.lightbox-media {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: 8px;
  object-fit: contain;
  cursor: zoom-in !important;
  transition: transform 0.3s ease;
  transform-origin: center center;
  user-select: none;
}

.lightbox-media.zoomed {
  cursor: zoom-out !important;
}

.lightbox-close {
  position: absolute;
  top: 20px; right: 28px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 2.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.3); }
.lightbox-arrow--prev { left: 20px; }
.lightbox-arrow--next { right: 20px; }

.lightbox-clickable {
  cursor: pointer;
}

/* ===== FOOTER ===== */
.footer {
  background-color: #2d6b68;
  color: var(--color-white);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background-color: #2d6b68;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    gap: 1.25rem;
  }
  .nav-toggle { display: block; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .classes-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-photos { grid-template-columns: 1fr; }
}

/* ===== OUR PROGRAMS SECTION ===== */
.our-programs {
  background-color: #d4d4d4;
  padding: 96px 0;
}

.our-programs-header {
  text-align: center;
  margin-bottom: 3rem;
}

.our-programs-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #2d6b68;
  margin-bottom: 0.6rem;
}

.our-programs-title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.our-programs-title-accent {
  color: #2d6b68;
}

.our-programs-subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* Cards list */
.program-cards {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.program-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  background: #ffffff;
  border-radius: 20px;
  border: 2px solid #2d6b68;
  box-shadow: 0 4px 20px rgba(45, 107, 104, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(45, 107, 104, 0.14);
}

.program-card--featured {
  border: 2px solid #2d6b68;
}

/* Image column */
.program-card-image {
  width: 200px;
  background-color: #e6f2f1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  flex-shrink: 0;
}

.program-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.program-silhouette {
  width: 100px;
  max-width: 100%;
}

/* Info column */
.program-card-info {
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Badge */
.program-badge {
  display: inline-block;
  background-color: #e6f2f1;
  color: #2d6b68;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

.program-badge--gold {
  background-color: #fef3d0;
  color: #8a6010;
}

/* Card title */
.program-card-title {
  font-family: 'Playfair Display', var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  line-height: 1.3;
}

.program-full-badge {
  display: inline-block;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  vertical-align: middle;
}

/* Schedule */
.program-schedule {
  color: #2d6b68;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Sessions */
.program-sessions {
  border-top: 1px solid #d4e8e7;
  display: flex;
  flex-direction: column;
}

.program-session-row {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #eaf3f2;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.program-session-row:last-child {
  border-bottom: none;
}

.session-name {
  font-weight: 600;
  color: var(--color-text);
  min-width: 120px;
}

.session-detail {
  color: var(--color-text-muted);
  flex: 1;
}

.session-price {
  color: #1a4a47;
  font-weight: 700;
  margin-left: auto;
  white-space: nowrap;
}

.session-reg {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.program-session-text .session-detail-full {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

/* Buttons */
.program-card-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.25rem;
  flex-wrap: wrap;
}

.btn-sm {
  padding: 0.55rem 1.4rem;
  font-size: 0.8rem;
}

.btn-outline {
  display: inline-block;
  background-color: transparent;
  color: #2d6b68;
  border: 1.5px solid #2d6b68;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background-color: #2d6b68;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .our-programs { padding: 64px 0; }

  .program-card {
    grid-template-columns: 1fr;
  }

  .program-card-image {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 480px) {
  .our-programs { padding: 48px 0; }
  .program-session-row { flex-direction: column; gap: 0.25rem; }
  .session-price { margin-left: 0; }
}

/* ===== PREVIOUS EVENTS SECTION ===== */
.previous-events {
  background-color: var(--color-bg);
  padding: 96px 0;
}

.previous-events-header {
  text-align: center;
  margin-bottom: 3rem;
}

.events-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.events-grid-item {
  flex: 0 1 400px;
}

.events-grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(45, 107, 104, 0.1);
}

.events-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.event-photo-placeholder {
  background-color: #e6f2f1;
  border-radius: 12px;
  aspect-ratio: 4 / 3;
  border: 1px dashed #a8d0ce;
}

@media (max-width: 768px) {
  .previous-events { padding: 64px 0; }
  .events-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .previous-events { padding: 48px 0; }
  .events-grid { grid-template-columns: 1fr; }
}

/* ===== SUMMER CAMPS SECTION ===== */
.summer-camps {
  background-color: #d4d4d4;
  padding: 96px 0;
}

.summer-camps-header {
  text-align: center;
  margin-bottom: 3rem;
}

.hero-location {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #730505;
  opacity: 0.7;
  margin-top: 0.4rem;
}

.title-location {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  vertical-align: middle;
}

.camps-warning {
  display: inline-block;
  margin-top: 1rem;
  background-color: #fff8e1;
  border: 1px solid #f0c040;
  color: #7a5000;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
}

.camps-enroll-note {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.camps-enroll-note a {
  color: #2d6b68;
  font-weight: 600;
  text-decoration: underline;
}

.camp-image-placeholder {
  width: 100%;
  height: 100%;
  background-color: #e6f2f1;
  border-radius: 4px;
  min-height: 120px;
}

@media (max-width: 768px) {
  .summer-camps { padding: 64px 0; }
}

@media (max-width: 480px) {
  .summer-camps { padding: 48px 0; }
}

/* ===== CLASS SCHEDULE SECTION ===== */
.class-schedule {
  background-color: #f0f7f6;
  padding: 96px 0 0;
}

.class-schedule-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Class times cards */
.class-times-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.class-times-card {
  background: #ffffff;
  border-radius: 16px;
  border: 2px solid #d4e8e7;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(45, 107, 104, 0.08);
}

.class-times-day-header {
  padding: 0.85rem 1.5rem;
  font-family: 'Playfair Display', var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.class-times-thursday-header {
  background-color: #2d6b68;
  color: #ffffff;
}

.class-times-sunday-header {
  background-color: #8b6f9e;
  color: #ffffff;
}

.class-times-rows {
  padding: 0.5rem 0;
}

.class-times-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 1.5rem;
  border-bottom: 1px solid #eaf3f2;
  gap: 1rem;
}

.class-times-row:last-child {
  border-bottom: none;
}

.class-level {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.class-level em {
  font-weight: 400;
  color: var(--color-text-muted);
  font-style: normal;
  font-size: 0.8rem;
}

.class-time {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2d6b68;
  white-space: nowrap;
}

/* Monthly table */
.cal-table-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(45, 107, 104, 0.08);
  margin-bottom: 1.25rem;
}

.cal-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #ffffff;
  font-size: 0.9rem;
}

.cal-table thead th {
  background-color: #2d6b68;
  color: #ffffff;
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cal-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.cal-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.cal-table tbody td {
  padding: 0.8rem 1.25rem;
  border-bottom: 1px solid #eaf3f2;
  color: var(--color-text);
  vertical-align: top;
}

.cal-table tbody td:first-child {
  font-weight: 700;
  color: #2d6b68;
  white-space: nowrap;
  width: 100px;
}

.cal-table tbody tr:last-child td {
  border-bottom: none;
}

.cal-table tbody tr:nth-child(even) {
  background-color: #f8fffe;
}

.cal-table tbody tr:hover {
  background-color: #eaf3f2;
}

.cal-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
  padding-bottom: 3rem;
}

/* Full-bleed original calendar image */
.cal-image-wrapper {
  width: 100%;
  background-color: #1a4a47;
  padding-top: 2rem;
  text-align: center;
}

.cal-image-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}

.cal-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100vh;
  object-fit: contain;
  object-position: top;
}

@media (max-width: 768px) {
  .class-schedule { padding: 64px 0 0; }
  .class-times-grid { grid-template-columns: 1fr; }
  .cal-image { max-height: none; }
}

@media (max-width: 480px) {
  .class-schedule { padding: 48px 0 0; }
  .class-times-row { flex-direction: column; align-items: flex-start; gap: 0.15rem; }
  .cal-table tbody td { padding: 0.65rem 0.75rem; font-size: 0.82rem; }
  .cal-table thead th { padding: 0.7rem 0.75rem; }
}
