* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fdfbf7; color: #3d3329; line-height: 1.6; }

/* NAV */
nav { position: sticky; top: 0; z-index: 40; background: rgba(253,251,247,0.9); backdrop-filter: blur(8px); border-bottom: 1px solid #e5e0d9; }
.nav-inner { max-width: 72rem; margin: 0 auto; padding: 0.75rem 1rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-family: 'Lora', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: #3d3329; text-decoration: none; }
.nav-links { display: flex; gap: 1.5rem; font-size: 0.875rem; font-weight: 500; }
.nav-links a { color: #93806c; text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: #7a6647; }

/* PAGE */
.container { max-width: 72rem; margin: 0 auto; padding: 4rem 1rem; }
h1 { font-family: 'Lora', Georgia, serif; font-size: 2.5rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.subtitle { text-align: center; color: #93806c; font-size: 1.125rem; margin-bottom: 3rem; }

/* FLYER SECTION */
.flyers-section { margin-bottom: 4rem; }
.flyers-section h2 { font-family: 'Lora', Georgia, serif; font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.flyers-section .section-sub { text-align: center; color: #93806c; font-size: 1rem; margin-bottom: 2rem; }

.flyer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.flyer-card {
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  aspect-ratio: 9 / 16;
}
.flyer-card:hover {
  transform: scale(1.04);
  box-shadow: 0 10px 32px rgba(0,0,0,0.15);
}
.flyer-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.88);
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 8px 48px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.lightbox-close:hover { opacity: 1; }

/* DIVIDER */
.section-divider { border: none; border-top: 2px solid #e5e0d9; margin: 3rem 0; }

/* CALENDAR */
.calendar-section h2 { font-family: 'Lora', Georgia, serif; font-size: 1.75rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.calendar-section .section-sub { text-align: center; color: #93806c; font-size: 1rem; margin-bottom: 2rem; }
.calendar-wrapper { border-radius: 1rem; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.08); background: #fff; }
iframe { width: 100%; min-height: 600px; border: 0; }

/* RESPONSIVE */
.flyer-card.solo { grid-column: 2 / 3; }

@media (max-width: 768px) {
  .flyer-grid { grid-template-columns: repeat(2, 1fr); }
  .flyer-card.solo { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
}
@media (max-width: 480px) {
  .flyer-grid { grid-template-columns: 1fr; }
  .flyer-card.solo { grid-column: auto; max-width: 100%; margin: 0 auto; }
}
