:root {
  --black: #000000;
  --lime: #D5EF34;
  --pink: #FF059C;
  --text: #f4f6f8;
  --muted: #b8c0cc;
  --card: #0e0e11;
  --card-2: #121217;
  --ring: rgba(213, 239, 52, .35);
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .35);

  /* Standardized breakpoints */
  --breakpoint-sm: 480px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #0a0a0d 0%, #0b0b10 40%, #0d0d12 100%);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  background: rgba(10, 10, 13, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.logo {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--pink), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--lime), transparent 60%),
    #111;
  outline: 2px solid rgba(255, 255, 255, .08);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  font-weight: 600;
  opacity: .9;
  padding: 8px 0;
  /* Increase touch target */
}

.cta {
  padding: 12px 18px;
  /* Increased for better touch targets */
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .3px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
}

.cta--primary {
  background: linear-gradient(135deg, var(--lime), #b7d80f);
  color: #111;
}

.cta--ghost {
  background: #15151b;
}

/* Mobile menu */
.hamburger {
  display: none;
  width: 48px;
  /* Increased for better touch target */
  height: 48px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .08);
  background: #141419;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.hamburger:hover {
  background-color: #1a1a21;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: #fff;
  position: relative;
  display: block;
  transition: background-color 0.3s ease;
}

.hamburger span::before,
.hamburger span::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  background: #fff;
  transition: transform 0.3s ease;
}

.hamburger span::before {
  top: -6px
}

.hamburger span::after {
  top: 6px
}

/* Hamburger animation */
.hamburger.active span {
  background-color: transparent;
}

.hamburger.active span::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger.active span::after {
  transform: rotate(-45deg);
  top: 0;
}

.mobile-panel {
  position: fixed;
  inset: 64px 16px auto 16px;
  background: #0e0e12;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 14px;
  display: none;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-panel.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-panel a {
  display: block;
  padding: 16px;
  /* Increased for better touch targets */
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 4px;
}

.mobile-panel a:hover {
  background: #14141b;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 120%;
  background: radial-gradient(60% 70% at 20% 20%, rgba(255, 5, 156, .22), transparent 60%),
    radial-gradient(60% 70% at 80% 20%, rgba(213, 239, 52, .16), transparent 60%);
  pointer-events: none;
}

.hero-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  align-items: center;
  padding: clamp(56px, 9vw, 110px) 0;
}

.headline {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 1.1;
  /* Improved from .95 for better readability */
  letter-spacing: -.5px;
  margin: 0 0 18px;
}

.sub {
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--muted);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  background: #14141b;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .08);
}

.badge svg {
  width: 18px;
  height: 18px;
}

.hero-card {
  background: url('images/hero_img.JPG') center 10%/cover no-repeat;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow);
}

.hero-card::after {
  content: "Inclusive community. Exclusive perks.";
  position: absolute;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, .4);
  padding: 14px 16px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-weight: 800;
}

/* Sections */
section {
  padding: clamp(56px, 9vw, 100px) 0;
  position: relative;
}

.section-title {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 4.2vw, 56px);
  margin: 0 0 18px;
  line-height: 1.2;
}

.section-lead {
  color: var(--muted);
  max-width: 70ch;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.step {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--pink), #c30379);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h4 {
  margin: 12px 0 8px;
}

/* Perks grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: var(--card-2);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: var(--radius);
  padding: 22px;
  height: 100%;
  /* Ensure equal height cards */
}

.card h4 {
  margin: 10px 0 8px;
}

.icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.plan {
  background: linear-gradient(180deg, #121217, #0f0f14);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 22px;
  padding: 26px;
  position: relative;
  overflow: hidden;
  height: 100%;
  /* Ensure equal height plans */
}

.plan--highlight {
  border-color: var(--ring);
  box-shadow: 0 0 0 4px var(--ring);
  /* Reduced from 8px for mobile */
}

.price {
  font-size: clamp(34px, 3.6vw, 46px);
  font-weight: 900;
  font-family: Archivo, Manrope, sans-serif;
}

.features {
  margin: 16px 0 18px;
  display: grid;
  gap: 10px;
  padding-left: 0;
  list-style: none;
}

.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #15151b;
  border: 1px solid rgba(255, 255, 255, .06);
  font-weight: 700;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}

.about-text h3 {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 16px;
}

.about-text p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

/* Partners */
.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.logo-tile {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .06);
  height: 100px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  opacity: .85;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo-tile:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.logo-tile img {
  max-width: 100%;
  max-height: 70%;
  object-fit: contain;
  display: block;
}

/* Testimonials */
.testis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.quote {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 18px;
  padding: 22px;
  position: relative;
  height: 100%;
}

.quote::before {
  content: '\201C';
  position: absolute;
  top: -34px;
  left: 12px;
  font-size: 120px;
  color: rgba(255, 255, 255, .06);
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  opacity: .9;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lime), var(--pink));
}

/* Contact */
form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
textarea {
  background: #0f0f14;
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--text);
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 4px var(--ring);
}

button[type=submit] {
  background: linear-gradient(135deg, var(--pink), #d40688);
  border: none;
  border-radius: 999px;
  padding: 14px 20px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button[type=submit]:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ----------------------------- */
/* Calendar Section Styling      */
/* ----------------------------- */

#calendar {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  margin-top: 32px;
}


/* Filter Controls Styling */
.filter-controls {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  align-items: flex-end;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-controls label {
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}

.filter-controls select {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  border-radius: 10px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  min-width: 180px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-controls select:focus {
  outline: none;
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgba(213, 239, 52, 0.2);
}

.filter-controls button {
  background: linear-gradient(135deg, var(--pink), #d40688);
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.filter-controls button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Event Tooltip Styling */
.event-tooltip {
  position: fixed !important;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  z-index: 9999 !important;
  min-width: 250px;
  max-width: 300px;
  display: none;
  pointer-events: none;
}

.event-tooltip.show {
  display: block;
}

.event-tooltip h4 {
  margin: 0 0 10px 0;
  color: var(--lime);
  font-size: 16px;
  font-weight: 800;
}

.event-tooltip p {
  margin: 6px 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.event-tooltip strong {
  color: var(--text);
  font-weight: 700;
}

/* Calendar container */
#calendar-container {
  width: 100%;
  max-width: 100%;
}

.fc {
  background: var(--card-2);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 100%;
  font-family: Manrope, system-ui, sans-serif;
}

.fc .fc-toolbar-title {
  font-weight: 800;
  color: var(--text);
  font-size: 1.4rem;
}

.fc .fc-button {
  background: #141419;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  color: var(--text);
  font-weight: 600;
  padding: 8px 14px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.fc .fc-button:hover {
  background: #1a1a21;
  transform: translateY(-1px);
}

.fc .fc-button-primary:not(:disabled):active,
.fc .fc-button-primary:not(:disabled).fc-button-active {
  background: var(--pink);
  border-color: var(--pink);
}

/* Fix ALL calendar backgrounds and text colors */
.fc-theme-standard .fc-scrollgrid {
  background: var(--card-2) !important;
}

.fc .fc-col-header,
.fc .fc-col-header *,
.fc .fc-col-header-cell,
.fc-theme-standard th,
.fc .fc-scrollgrid-section-header,
.fc .fc-scrollgrid-section-header * {
  background: var(--card) !important;
  background-color: var(--card) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
}

.fc .fc-col-header-cell-cushion,
.fc-theme-standard th {
  color: var(--text) !important;
  font-weight: 700 !important;
  padding: 8px 4px !important;
  text-decoration: none !important;
}

.fc .fc-daygrid-day,
.fc .fc-daygrid-day-frame {
  background: var(--card-2) !important;
  background-color: var(--card-2) !important;
}

.fc .fc-daygrid-day.fc-day-today {
  background: rgba(213, 239, 52, 0.08) !important;
  background-color: rgba(213, 239, 52, 0.08) !important;
}

.fc-list,
.fc-list *,
.fc-list table,
.fc-list tbody,
.fc-list thead,
.fc .fc-list-table,
.fc .fc-list-table * {
  background: var(--card-2) !important;
  background-color: var(--card-2) !important;
}

.fc .fc-list-day,
.fc .fc-list-day *,
.fc .fc-list-day-cushion,
.fc-list-day>* {
  background: var(--card) !important;
  background-color: var(--card) !important;
  color: var(--text) !important;
  font-weight: 700 !important;
}

.fc .fc-list-table td,
.fc .fc-list-table th {
  background: var(--card-2) !important;
  background-color: var(--card-2) !important;
  border-color: rgba(255, 255, 255, 0.06) !important;
  color: var(--text) !important;
}

.fc .fc-list-event,
.fc .fc-list-event td,
.fc .fc-list-event:hover,
.fc .fc-list-event:hover td {
  background: #1a1a21 !important;
  background-color: #1a1a21 !important;
}

.fc-theme-standard td,
.fc-theme-standard th,
.fc .fc-scrollgrid,
.fc .fc-scrollgrid table {
  border-color: rgba(255, 255, 255, 0.06) !important;
}

/* Day grid (month view) */
.fc-daygrid-day {
  min-height: 70px;
}

.fc-daygrid-day-number {
  font-size: 0.9rem;
  font-weight: 600;
  padding: 4px;
  color: var(--text);
}

.fc .fc-daygrid-event {
  background: #121217;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 4px 8px;
  margin: 2px 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  max-width: 100% !important;
  display: block !important;
}

.fc .fc-daygrid-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.fc .fc-event-title {
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
}

.fc .fc-daygrid-event-harness {
  overflow: hidden !important;
}

.fc .fc-event-main {
  overflow: hidden !important;
}

.fc .fc-daygrid-day-frame {
  overflow: hidden !important;
}

.fc .fc-daygrid-day-events {
  overflow: hidden !important;
}

/* List view */
.fc-list-event {
  background: #121217 !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-radius: 10px !important;
  margin: 8px 0 !important;
  padding: 12px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}

.fc-list-event:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.fc-list-event-title {
  font-weight: 700;
  color: var(--text) !important;
  font-size: 1rem;
  padding: 4px 0 !important;
}

.fc-list-event-time {
  font-size: 0.9rem;
  color: var(--lime) !important;
  font-weight: 600;
}

.fc-list-event-dot {
  display: none;
}

/* Discount badge styling */
.fc .fc-event-title span,
.fc-list-event-title span {
  display: block;
  margin-top: 4px;
  font-size: 0.75rem;
  color: var(--pink);
  font-weight: 800;
}

/* Blog Section Styles */
.blog-section {
  padding: 4rem 2rem;
  background: transparent;
}

.blog-header {
  margin-bottom: 3rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-card {
  background: #121217;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(213, 239, 52, 0.2);
  border-color: rgba(213, 239, 52, 0.3);
}

.blog-card.featured {
  grid-column: span 2;
  border-color: rgba(255, 5, 156, 0.3);
}

.blog-card.featured:hover {
  box-shadow: 0 12px 24px rgba(255, 5, 156, 0.3);
}

.blog-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background: linear-gradient(135deg, #d5ef34 0%, #ff059c 100%);
}

.blog-card.featured .blog-card-image {
  height: 350px;
}

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: #b8c0cc;
  flex-wrap: wrap;
}

.blog-card-author {
  font-weight: 600;
  color: #ff059c;
}

.blog-card-date {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.featured-badge {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.blog-card-title {
  font-size: 1.5rem;
  color: #f4f6f8;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  font-weight: 700;
}

.blog-card.featured .blog-card-title {
  font-size: 2rem;
}

.blog-card-excerpt {
  color: #b8c0cc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d5ef34;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.blog-card-link:hover {
  gap: 0.75rem;
  color: #ff059c;
}

.no-posts {
  text-align: center;
  padding: 3rem;
  color: #b8c0cc;
  font-size: 1.1rem;
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-section {
    padding: 3rem 1rem;
  }

  .blog-header h2 {
    font-size: 2rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card.featured {
    grid-column: span 1;
  }

  .blog-card-image {
    height: 200px;
  }

  .blog-card.featured .blog-card-image {
    height: 250px;
  }

  .blog-card-title {
    font-size: 1.3rem;
  }

  .blog-card.featured .blog-card-title {
    font-size: 1.5rem;
  }
}

/* ----------------------------- */
/* Admin Panel Styling           */
/* ----------------------------- */
.admin-container {
  background: var(--card);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px auto;
  box-shadow: var(--shadow);
  max-width: 900px;
}

.admin-container h1,
.admin-container h2 {
  font-family: Archivo, Manrope, sans-serif;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 18px;
}

.admin-container a {
  color: var(--lime);
  text-decoration: none;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-block;
}

.admin-container a:hover {
  color: var(--pink);
}

.admin-container form {
  display: grid;
  gap: 12px;
  margin-bottom: 32px;
}

.admin-container input,
.admin-container textarea,
.admin-container select {
  background: #121217;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 12px 16px;
  border-radius: var(--radius);
  font: inherit;
  width: 100%;
}

.admin-container input[type=checkbox] {
  width: auto;
  margin-right: 8px;
}

.admin-container button {
  background: linear-gradient(135deg, var(--pink), #d40688);
  border: none;
  border-radius: var(--radius);
  padding: 12px 20px;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.admin-container button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Table style for listing posts/events */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
  color: var(--text);
}

.admin-table th {
  font-weight: 800;
}

.admin-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Footer */
footer {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 32px 0 70px;
  color: #a5adbb;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.socials a {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 10px;
  display: grid;
  place-items: center;
  opacity: .9;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: all .6s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ------------------------- */
/* Responsive Adjustments     */
/* ------------------------- */

/* Large screens (<992px) */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-image {
    order: -1;
  }

  .menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .container {
    width: 95%;
    padding: 0 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid>div:first-child {
    grid-column: 1 / -1;
  }
}

/* Medium screens (<768px) */
@media (max-width: 768px) {
  .hero-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-card {
    aspect-ratio: 16/9;
    max-height: 300px;
  }

  .section-title,
  .headline {
    text-align: center;
  }

  .section-lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  form .form-row {
    grid-template-columns: 1fr !important;
  }

  /* Calendar responsive adjustments */
  #calendar {
    padding: 16px;
  }

  .fc .fc-toolbar-title {
    font-size: 1.1rem;
  }

  .fc .fc-button {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .fc-daygrid-day {
    min-height: 60px;
  }

  .fc .fc-daygrid-event {
    font-size: 0.75rem;
    padding: 3px 6px;
  }

  .fc-header-toolbar {
    flex-direction: column;
    gap: 8px;
  }

  .fc-header-toolbar .fc-toolbar-chunk {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .filter-controls {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .filter-group {
    width: 100%;
  }

  .filter-controls select,
  .filter-controls button {
    width: 100%;
    min-width: 100%;
  }
}

/* Small screens (<480px) */
@media (max-width: 480px) {
  .hero-wrap {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .cta {
    width: 100%;
    justify-content: center;
  }

  .hero-card {
    aspect-ratio: auto;
    min-height: 200px;
  }

  .hero-card::after {
    font-size: 14px;
    padding: 10px 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .socials {
    justify-content: center;
  }

  .section-title {
    font-size: 28px;
  }

  .headline {
    font-size: 32px;
  }

  .sub {
    font-size: 16px;
  }

  section {
    padding: 40px 0;
  }

  /* Calendar mobile adjustments */
  #calendar {
    padding: 12px;
  }

  .fc .fc-toolbar-title {
    font-size: 0.95rem;
  }

  .fc .fc-button {
    padding: 5px 8px;
    font-size: 0.7rem;
  }

  .fc-daygrid-day {
    min-height: 50px;
  }

  .fc-daygrid-day-number {
    font-size: 0.75rem;
  }

  .fc .fc-daygrid-event {
    font-size: 0.7rem;
    line-height: 1.2;
  }

  .fc-list-event {
    padding: 10px !important;
  }

  .fc-list-event-title {
    font-size: 0.9rem;
  }

  .filter-controls {
    gap: 10px;
  }

  .filter-controls select {
    padding: 12px 14px;
    font-size: 15px;
  }

  .filter-controls button {
    padding: 12px 18px;
    font-size: 15px;
  }

  .day-event-count {
    background: linear-gradient(135deg, var(--lime), #b7d80f);
    color: #111;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    z-index: 10;
  }

  .day-event-count:active {
    transform: translate(-50%, -50%) scale(0.95);
  }

  @media (max-width: 768px) {
    .fc-daygrid-event-harness {
      display: none !important;
    }

    .fc-daygrid-day-events {
      display: none !important;
    }

    /* Hide event count badges on desktop */
    @media (min-width: 769px) {
      .day-event-count {
        display: none !important;
      }
    }
  }
}