@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&display=swap');

/* ---------------------------------------------------------------------------
   CSS Custom Properties
--------------------------------------------------------------------------- */
:root {
  --pink:         #FF6B9D;
  --pink-dark:    #e85585;
  --pink-light:   #FFE4EF;
  --mint:         #7DD4A0;
  --mint-dark:    #5cb880;
  --mint-light:   #E8F8EE;
  --yellow:       #FFD166;
  --yellow-light: #FFFBEC;
  --blue:         #5BC8F5;
  --blue-light:   #E3F6FE;
  --white:        #FFFFFF;
  --bg:           #FAFAFA;
  --text-dark:    #2D2D2D;
  --text-mid:     #555555;
  --text-light:   #999999;
  --border:       #EEEEEE;
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --font:         'Nunito', system-ui, sans-serif;
  --max-w:        1200px;
  --nav-h:        72px;
}

/* ---------------------------------------------------------------------------
   Reset & Base
--------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); line-height: 1.65; background: var(--bg); }
img { max-width: 100%; display: block; }
a { color: var(--pink); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--pink-dark); }
h1, h2, h3, h4 { font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.75rem, 4vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.2rem; }
p { color: var(--text-mid); }

/* ---------------------------------------------------------------------------
   Utility
--------------------------------------------------------------------------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 24px; max-width: var(--max-w); margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-tag.mint  { background: var(--mint-light); color: var(--mint-dark); }
.section-tag.yellow { background: var(--yellow-light); color: #b8860b; }

/* ---------------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }
.btn-primary { background: var(--pink); color: white; }
.btn-primary:hover { background: var(--pink-dark); box-shadow: 0 4px 16px rgba(255,107,157,0.4); color: white; }
.btn-secondary { background: transparent; color: var(--mint-dark); border: 2px solid var(--mint); }
.btn-secondary:hover { background: var(--mint-light); color: var(--mint-dark); }
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink-light); color: var(--pink); }
.btn-sm { padding: 8px 18px; font-size: 0.875rem; }
.btn-ghost { background: transparent; color: var(--text-mid); border: 2px solid var(--border); }
.btn-ghost:hover { background: #f5f5f5; color: var(--text-dark); }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------------------------------------------------------------------------
   Forms
--------------------------------------------------------------------------- */
.form-group { margin-bottom: 18px; }
label { display: block; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; color: var(--text-dark); }
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
input[type="time"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px var(--pink-light);
}
textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }

.form-error {
  background: #fff0f3;
  color: #c0392b;
  border: 1px solid #f5c6cb;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  margin-top: 12px;
}
.form-success {
  background: var(--mint-light);
  color: #2e7d52;
  border: 1px solid #a8d5b9;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  margin-top: 12px;
  font-weight: 600;
}

/* ---------------------------------------------------------------------------
   Navigation
--------------------------------------------------------------------------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: var(--shadow-sm); }

.nav-logo { height: 44px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}
.nav-links a:hover { background: var(--pink-light); color: var(--pink); }
.nav-links .nav-cta { background: var(--pink); color: white; padding: 9px 20px; border-radius: 50px; }
.nav-links .nav-cta:hover { background: var(--pink-dark); color: white; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: white;
  box-shadow: var(--shadow-md);
  z-index: 999;
  padding: 16px 0;
}
.nav-mobile.open { display: block; }
.nav-mobile ul { list-style: none; }
.nav-mobile li a {
  display: block;
  padding: 14px 32px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}
.nav-mobile li:last-child a { border-bottom: none; color: var(--pink); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ---------------------------------------------------------------------------
   Hero
--------------------------------------------------------------------------- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--nav-h) + 40px) 24px 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #fff5f9 0%, #f0fbf4 50%, #fffbec 100%);
}

.hero-blobs { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  animation: drift 12s ease-in-out infinite;
}
.blob-1 { width: 380px; height: 380px; background: var(--pink);  top: -80px;  left: -100px; animation-delay: 0s; }
.blob-2 { width: 280px; height: 280px; background: var(--mint);  bottom: -60px; right: -60px; animation-delay: 4s; }
.blob-3 { width: 200px; height: 200px; background: var(--yellow); top: 40%;   right: 10%;  animation-delay: 2s; }
.blob-4 { width: 160px; height: 160px; background: var(--blue);  bottom: 20%; left: 8%;    animation-delay: 6s; }

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -20px) scale(1.05); }
  66%       { transform: translate(-10px, 15px) scale(0.97); }
}

.hero-inner { position: relative; z-index: 1; max-width: 700px; }
.hero-banner { max-width: 560px; width: 100%; margin: 0 auto 28px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.1)); }
.hero-tagline {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: var(--text-mid);
  margin-bottom: 32px;
}
.hero-tagline span { color: var(--pink); }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------------------
   About
--------------------------------------------------------------------------- */
#about { background: white; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.about-text h2 { color: var(--text-dark); }
.about-text p { font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.about-detail { display: flex; align-items: flex-start; gap: 10px; margin-top: 20px; color: var(--text-mid); font-weight: 600; }
.about-detail svg { flex-shrink: 0; margin-top: 3px; }

.session-cards { display: flex; flex-direction: column; gap: 20px; }
.session-card {
  border-radius: var(--radius-md);
  padding: 28px;
  color: white;
  box-shadow: var(--shadow-md);
}
.session-card.pink  { background: linear-gradient(135deg, #FF6B9D, #ff8fb8); }
.session-card.mint  { background: linear-gradient(135deg, #7DD4A0, #a0e3bb); }
.session-card h3 { font-size: 1.3rem; margin-bottom: 8px; color: white; }
.session-card .session-time { font-size: 1rem; font-weight: 700; opacity: 0.95; margin-bottom: 4px; }
.session-card .session-price { font-size: 1.4rem; font-weight: 900; margin: 8px 0; }
.session-card .session-note { font-size: 0.875rem; opacity: 0.85; margin-bottom: 16px; }
.session-card .btn { background: rgba(255,255,255,0.25); color: white; border: 2px solid rgba(255,255,255,0.6); }
.session-card .btn:hover { background: rgba(255,255,255,0.4); color: white; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------------------------------------------------------------
   Activities
--------------------------------------------------------------------------- */
#activities { background: var(--bg); }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  margin-top: 12px;
}
.activity-card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
  border-top: 4px solid transparent;
}
.activity-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.activity-card:nth-child(4n+1) { border-top-color: var(--pink); }
.activity-card:nth-child(4n+2) { border-top-color: var(--mint); }
.activity-card:nth-child(4n+3) { border-top-color: var(--yellow); }
.activity-card:nth-child(4n+4) { border-top-color: var(--blue); }
.activity-img { width: 100%; height: 190px; object-fit: cover; }
.activity-body { padding: 18px 20px 20px; }
.activity-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.activity-body p { font-size: 0.875rem; color: var(--text-mid); }

/* ---------------------------------------------------------------------------
   Calendar
--------------------------------------------------------------------------- */
#calendar { background: var(--yellow-light); }
.calendar-wrap { max-width: 860px; margin: 0 auto; }
.cal-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}
.cal-nav-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid var(--yellow);
  background: white;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  color: var(--text-dark);
  font-weight: 700;
}
.cal-nav-btn:hover { background: var(--yellow); }
.cal-month-label { font-size: 1.3rem; font-weight: 800; min-width: 180px; text-align: center; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  background: white;
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
}
.cal-day-header {
  text-align: center;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--text-light);
  padding: 8px 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cal-day {
  min-height: 68px;
  padding: 5px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: background 0.15s;
}
.cal-day:hover { background: #fafafa; }
.cal-day.other-month { color: var(--text-light); }
.cal-day.today { background: var(--pink-light); }
.cal-day.today .cal-day-num { color: var(--pink); font-weight: 900; }
.cal-day-num { font-weight: 700; margin-bottom: 2px; display: block; }
.cal-event-chip {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  color: white;
  margin-top: 2px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.15s;
}
.cal-event-chip:hover { opacity: 0.85; }

.cal-events-list { margin-top: 8px; }
.cal-events-list h3 { font-size: 1.1rem; margin-bottom: 16px; color: var(--text-dark); }
.event-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 20px;
}
.event-card-date {
  text-align: center;
  min-width: 56px;
  background: var(--pink-light);
  border-radius: var(--radius-sm);
  padding: 10px 8px;
  flex-shrink: 0;
}
.event-card-date .ecd-day { font-size: 1.6rem; font-weight: 900; color: var(--pink); line-height: 1; }
.event-card-date .ecd-month { font-size: 0.7rem; font-weight: 700; color: var(--pink); text-transform: uppercase; }
.event-card-body { flex: 1; }
.event-card-body h4 { font-size: 1rem; margin-bottom: 2px; }
.event-card-body .event-time { font-size: 0.85rem; color: var(--text-mid); margin-bottom: 4px; }
.event-card-body .event-desc { font-size: 0.875rem; color: var(--text-mid); }
.event-card-spots { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; }

.cal-empty { text-align: center; padding: 40px; color: var(--text-light); font-style: italic; }
.cal-loading { text-align: center; padding: 32px; color: var(--text-mid); }
.loading-dots::after {
  content: '';
  animation: dots 1.4s steps(3, end) infinite;
}
@keyframes dots { 0%{content:''} 33%{content:'.'} 66%{content:'..'} 100%{content:'...'} }

/* ---------------------------------------------------------------------------
   Book CTA Banner
--------------------------------------------------------------------------- */
#book {
  background: linear-gradient(135deg, var(--pink) 0%, #ff8fb8 100%);
  text-align: center;
  padding: 80px 24px;
}
.book-inner { max-width: 600px; margin: 0 auto; }
#book h2 { color: white; }
#book p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin: 12px 0 32px; }
.book-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
#book .btn-white { background: white; color: var(--pink); }
#book .btn-white:hover { background: #fff0f6; color: var(--pink-dark); }
#book .btn-outline-white { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.7); }
#book .btn-outline-white:hover { background: rgba(255,255,255,0.15); color: white; }

/* ---------------------------------------------------------------------------
   Booking Modal
--------------------------------------------------------------------------- */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1999;
}
.modal-backdrop.open { display: block; }
#booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#booking-modal.open { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none;
  font-size: 1.6rem; cursor: pointer;
  color: var(--text-light); line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--text-dark); }
.modal-box h2 { margin-bottom: 4px; }
.modal-event-chip {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.modal-success {
  text-align: center;
  padding: 20px 0;
}
.modal-success .success-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-success h3 { margin-bottom: 8px; color: var(--text-dark); }
.modal-success p { color: var(--text-mid); }

/* ---------------------------------------------------------------------------
   Contact
--------------------------------------------------------------------------- */
#contact { background: white; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 8px; }
.contact-info > p { margin-bottom: 24px; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.contact-list .ci-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-list .ci-text { padding-top: 7px; }
.contact-list .ci-label { font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); display: block; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------------------------------------------------------------------------
   Map
--------------------------------------------------------------------------- */
#map { background: var(--bg); }
.map-header { text-align: center; margin-bottom: 32px; }
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.map-container iframe { display: block; }

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 48px 24px;
}
.footer-logo { height: 40px; margin: 0 auto 20px; filter: brightness(0) invert(1); opacity: 0.85; }
footer p { font-size: 0.9rem; margin-bottom: 8px; }
footer a { color: rgba(255,255,255,0.8); }
footer a:hover { color: white; }
.footer-social { display: flex; gap: 16px; justify-content: center; margin: 16px 0; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--pink); color: white; background: var(--pink); }
.footer-copy { font-size: 0.8rem; margin-top: 16px; opacity: 0.5; }

/* ---------------------------------------------------------------------------
   Admin body overrides
--------------------------------------------------------------------------- */
body.admin-body { background: #f5f6fa; }

#login-screen {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(160deg, #fff5f9 0%, #f0fbf4 100%);
}
.login-box {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  max-width: 400px;
  width: 100%;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.login-logo { height: 48px; margin: 0 auto 12px; }
.login-box h1 { font-size: 1.5rem; margin-bottom: 8px; }
.login-box > p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 28px; }
.login-box form { text-align: left; }
.login-box .btn { width: 100%; justify-content: center; margin-top: 8px; }

.admin-header {
  position: sticky; top: 0; z-index: 100;
  background: white;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 32px;
  height: 68px;
}
.admin-nav-logo { height: 40px; }
.admin-tabs { display: flex; gap: 4px; flex: 1; }
.tab-btn {
  padding: 8px 20px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-sm);
  color: var(--text-mid);
  transition: background 0.2s, color 0.2s;
}
.tab-btn:hover { background: var(--pink-light); color: var(--pink); }
.tab-btn.active { background: var(--pink); color: white; }

.admin-main { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.admin-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.admin-panel-header h2 { margin-bottom: 0; }

.admin-card {
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  margin-bottom: 24px;
}
.admin-card h3 { margin-bottom: 20px; font-size: 1.1rem; }
.form-actions { display: flex; gap: 12px; margin-top: 24px; }

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.admin-table th {
  text-align: left;
  padding: 10px 14px;
  background: #f8f9fa;
  border-bottom: 2px solid var(--border);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  white-space: nowrap;
}
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  vertical-align: top;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fafbfc; }
.table-actions { display: flex; gap: 8px; }
.btn-edit  { background: var(--mint-light);  color: var(--mint-dark); }
.btn-edit:hover  { background: var(--mint); color: white; }
.btn-delete { background: #fff0f0; color: #c0392b; }
.btn-delete:hover { background: #e74c3c; color: white; }

.filter-row { display: flex; align-items: center; gap: 12px; }
.filter-row label { font-size: 0.9rem; margin-bottom: 0; }
.filter-row select { width: auto; padding: 8px 12px; }

.empty-state { text-align: center; padding: 48px 24px; color: var(--text-light); font-style: italic; }

/* ---------------------------------------------------------------------------
   Responsive overrides
--------------------------------------------------------------------------- */
@media (max-width: 600px) {
  .section-pad { padding: 56px 16px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .modal-box { padding: 28px 20px; }
  .event-card { flex-direction: column; align-items: flex-start; gap: 12px; }
  .admin-header { padding: 0 16px; gap: 12px; }
  .admin-main { padding: 20px 16px; }
  .admin-table { font-size: 0.8rem; }
  .admin-table th, .admin-table td { padding: 8px 10px; }
}
