/* ─── FitnessCoach — Main Stylesheet ─── Athletic / Performance Identity ───── */
:root {
  --navy:        #070B10;
  --navy-2:      #0C131A;
  --navy-3:      #131C25;
  --navy-4:      #1E2A35;
  --cyan:        #00D4FF;
  --cyan-light:  #5CE6FF;
  --volt:        #C6FF3D;
  --text:        #F2F6F8;
  --text-muted:  #8B9AA6;
  --radius:      4px;
  --transition:  0.25s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body.fc-site {
  background: var(--navy);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Typography ─── */
.fc-display {
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: 'Anton', sans-serif; letter-spacing: 0.01em; line-height: 0.98; text-transform: uppercase; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.2rem, 2.2rem, 1.8rem); }

p { color: var(--text-muted); line-height: 1.75; }
a { color: var(--cyan); text-decoration: none; }

.fc-cyan { color: var(--cyan); }
.fc-volt { color: var(--volt); }
.fc-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fc-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--volt);
  display: inline-block;
}

/* ── Layout ─── */
.fc-container { max-width: 1220px; margin: 0 auto; padding: 0 24px; }
.fc-section   { padding: 100px 0; position: relative; }
.fc-section--sm { padding: 60px 0; }

.fc-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.fc-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.fc-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

@media (max-width: 900px) {
  .fc-grid-2, .fc-grid-3 { grid-template-columns: 1fr; }
  .fc-grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .fc-grid-4 { grid-template-columns: 1fr; }
  .fc-section { padding: 60px 0; }
}

/* ── Diagonal section dividers (athletic motif) ─── */
.fc-diagonal-top {
  position: relative;
}
.fc-diagonal-top::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  transform: translateY(-100%);
  z-index: 1;
}

/* ── Navbar ─── */
.fc-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,11,16,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,212,255,0.12);
  transition: var(--transition);
}
.fc-nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; height: 76px; max-width: 1220px; margin: 0 auto;
}
.fc-nav__logo {
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}
.fc-nav__logo span { color: var(--cyan); }
.fc-nav__links { display: flex; gap: 34px; list-style: none; }
.fc-nav__links a {
  color: var(--text-muted); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  transition: color var(--transition); position: relative;
}
.fc-nav__links a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 2px;
  background: var(--volt); transition: width var(--transition);
}
.fc-nav__links a:hover, .fc-nav__links a.active { color: var(--text); }
.fc-nav__links a:hover::after, .fc-nav__links a.active::after { width: 100%; }
.fc-nav__cta { display: flex; gap: 12px; align-items: center; }
.fc-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.fc-hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: var(--transition); }

@media (max-width: 900px) {
  .fc-nav__links { display: none; position: fixed; top: 76px; left: 0; right: 0; height: calc(100vh - 76px); background: var(--navy-2); flex-direction: column; align-items: center; justify-content: center; gap: 36px; overflow-y: auto; }
  .fc-nav__links.open { display: flex; }
  .fc-nav__links a { font-size: 1.3rem; }
  .fc-hamburger { display: block; }
  .fc-nav__cta .fc-btn { display: none; }
}

/* ── Buttons ─── */
.fc-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 34px; border-radius: var(--radius);
  font-size: 13px; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; cursor: pointer; transition: var(--transition);
  border: none; text-decoration: none;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.fc-btn--volt { background: var(--volt); color: var(--navy); }
.fc-btn--volt:hover { background: #d4ff6b; transform: translateY(-2px); }
.fc-btn--cyan { background: var(--cyan); color: var(--navy); }
.fc-btn--cyan:hover { background: var(--cyan-light); transform: translateY(-2px); }
.fc-btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--navy-4); clip-path: none; }
.fc-btn--outline:hover { border-color: var(--cyan); color: var(--cyan); }
.fc-btn--dark { background: var(--navy-3); color: var(--text); border: 1px solid var(--navy-4); clip-path: none; }
.fc-btn--dark:hover { border-color: var(--cyan); color: var(--cyan); }
.fc-btn--lg { padding: 19px 46px; font-size: 14px; }
.fc-btn--sm { padding: 10px 22px; font-size: 11px; }

/* ── Hero ─── */
.fc-hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; background: var(--navy);
  padding-top: 76px;
}
.fc-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.28) saturate(1.1); }
.fc-hero__bg--default { background: radial-gradient(ellipse at 30% 20%, #0a1a24 0%, #070B10 55%), linear-gradient(135deg, #070B10 0%, #0c1620 100%); }
.fc-hero__grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,212,255,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 40%, black 30%, transparent 100%);
}
.fc-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(7,11,16,0.96) 35%, rgba(7,11,16,0.4) 100%); }
.fc-hero__content { position: relative; z-index: 1; max-width: 760px; }
.fc-hero__badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.3);
  padding: 8px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 28px;
}
.fc-hero__badge::before { content: '●'; font-size: 8px; color: var(--volt); animation: fc-pulse 2s infinite; }
@keyframes fc-pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
.fc-hero__title { color: var(--text); margin-bottom: 24px; }
.fc-hero__title span { color: var(--volt); }
.fc-hero__sub { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 40px; max-width: 500px; line-height: 1.8; }
.fc-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.fc-hero__stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; }
.fc-hero__stat-num { font-family: 'Anton', sans-serif; font-size: 2.2rem; color: var(--cyan); line-height: 1; }
.fc-hero__stat-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 4px; }

/* ── Cards ─── */
.fc-card {
  background: var(--navy-3); border: 1px solid var(--navy-4);
  padding: 32px; transition: var(--transition); position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}
.fc-card:hover { border-color: rgba(0,212,255,0.4); transform: translateY(-4px); }
.fc-card__icon {
  width: 50px; height: 50px; margin-bottom: 20px;
  background: rgba(0,212,255,0.1); color: var(--cyan);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%);
}
.fc-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.fc-card p { font-size: 14px; }

/* ── Section title ─── */
.fc-section-title { margin-bottom: 16px; }
.fc-section-sub { font-size: 1.05rem; max-width: 560px; margin-bottom: 48px; }

/* ── Pricing ─── */
.fc-pricing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.fc-pricing-card {
  background: var(--navy-3); border: 1px solid var(--navy-4);
  padding: 34px; position: relative; transition: var(--transition);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
}
.fc-pricing-card:hover { border-color: var(--cyan); }
.fc-pricing-card--featured { border-color: var(--volt); background: linear-gradient(160deg, rgba(198,255,61,0.06) 0%, var(--navy-3) 100%); }
.fc-pricing-badge {
  position: absolute; top: 0; left: 0;
  background: var(--volt); color: var(--navy);
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 16px 6px 20px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}
.fc-pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; margin-top: 14px; }
.fc-pricing-card .desc { font-size: 13px; color: var(--text-muted); margin-bottom: 24px; line-height: 1.6; }
.fc-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 8px; }
.fc-price__currency { font-size: 1.2rem; color: var(--cyan); font-weight: 700; }
.fc-price__amount { font-family: 'Anton', sans-serif; font-size: 2.8rem; color: var(--text); }
.fc-price__period { font-size: 13px; color: var(--text-muted); }
.fc-pricing-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 28px; }
.fc-pricing-card .fc-btn { width: 100%; justify-content: center; }

/* ── Booking Form ─── */
.fc-booking-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; }
.fc-form { display: flex; flex-direction: column; gap: 20px; }
.fc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fc-field { display: flex; flex-direction: column; gap: 8px; }
.fc-field label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }
.fc-field input, .fc-field select, .fc-field textarea {
  background: var(--navy-3); border: 1px solid var(--navy-4);
  color: var(--text); padding: 14px 16px; border-radius: var(--radius);
  font-size: 14px; font-family: 'Inter', sans-serif; transition: border-color var(--transition); width: 100%;
}
.fc-field input:focus, .fc-field select:focus, .fc-field textarea:focus { outline: none; border-color: var(--cyan); }
.fc-field select option { background: var(--navy-3); }
.fc-field textarea { resize: vertical; min-height: 100px; }

.fc-slots-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.fc-slot { padding: 8px 16px; border: 1px solid var(--navy-4); border-radius: var(--radius); font-size: 13px; cursor: pointer; transition: var(--transition); background: var(--navy-3); color: var(--text); }
.fc-slot:hover, .fc-slot.selected { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }

.fc-booking-summary { background: var(--navy-3); border: 1px solid var(--navy-4); padding: 32px; position: sticky; top: 100px; }
.fc-booking-summary h3 { margin-bottom: 24px; font-size: 1.2rem; }
.fc-summary-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--navy-4); font-size: 14px; }
.fc-summary-row:last-child { border: none; }
.fc-summary-total { font-size: 1.1rem; font-weight: 800; color: var(--volt); }
.fc-success-box { text-align: center; padding: 48px 24px; }
.fc-success-box h2 { color: var(--volt); margin-bottom: 16px; }

@media (max-width: 900px) {
  .fc-booking-wrap { grid-template-columns: 1fr; }
  .fc-form-row { grid-template-columns: 1fr; }
}

/* ── Stats bar ─── */
.fc-stats { background: var(--navy-2); border-top: 1px solid var(--navy-4); border-bottom: 1px solid var(--navy-4); padding: 48px 0; }
.fc-stats__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; text-align: center; }
.fc-stats__num { font-family: 'Anton', sans-serif; font-size: 3rem; color: var(--cyan); line-height: 1; }
.fc-stats__label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-top: 6px; }
@media (max-width: 700px) { .fc-stats__grid { grid-template-columns: 1fr 1fr; } }

/* ── Testimonials ─── */
.fc-testimonial { background: var(--navy-3); border: 1px solid var(--navy-4); padding: 30px; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%); }
.fc-testimonial__quote { font-size: 1rem; color: var(--text); line-height: 1.7; margin-bottom: 22px; font-style: italic; }
.fc-testimonial__author { display: flex; align-items: center; gap: 12px; }
.fc-testimonial__avatar { width: 40px; height: 40px; background: var(--cyan); display: flex; align-items: center; justify-content: center; font-family: 'Anton',sans-serif; font-size: 1.1rem; color: var(--navy); clip-path: polygon(6px 0,100% 0,100% 100%,0 100%,0 6px); }
.fc-testimonial__name { font-size: 14px; font-weight: 700; }
.fc-testimonial__role { font-size: 12px; color: var(--text-muted); }
.fc-stars { color: var(--volt); font-size: 13px; margin-bottom: 16px; }

/* ── CTA Band ─── */
.fc-cta-band {
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(198,255,61,0.03) 100%);
  border-top: 1px solid rgba(0,212,255,0.15); border-bottom: 1px solid rgba(0,212,255,0.15);
  text-align: center; padding: 100px 24px;
}
.fc-cta-band h2 { margin-bottom: 16px; }
.fc-cta-band p { margin-bottom: 40px; }
.fc-cta-band .fc-btn { margin: 0 8px; }

/* ── Footer ─── */
.fc-footer { background: var(--navy-2); border-top: 1px solid var(--navy-4); padding: 60px 0 32px; }
.fc-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.fc-footer__logo { font-family: 'Anton', sans-serif; font-size: 1.7rem; text-transform: uppercase; margin-bottom: 16px; }
.fc-footer__logo span { color: var(--cyan); }
.fc-footer p { font-size: 13px; }
.fc-footer h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text); margin-bottom: 20px; }
.fc-footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.fc-footer ul a { color: var(--text-muted); font-size: 13px; transition: color var(--transition); }
.fc-footer ul a:hover { color: var(--cyan); }
.fc-footer__bottom { border-top: 1px solid var(--navy-4); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: var(--text-muted); }
.fc-social { display: flex; gap: 16px; }
.fc-social a { color: var(--text-muted); transition: color var(--transition); }
.fc-social a:hover { color: var(--cyan); }
@media (max-width: 900px) { .fc-footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .fc-footer__grid { grid-template-columns: 1fr; } .fc-footer__bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ── WhatsApp Float ─── */
.fc-whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 56px; height: 56px; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
  clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
}
.fc-whatsapp-float:hover { transform: scale(1.08); color: #fff; }

/* ── Page hero (inner pages) ─── */
.fc-page-hero { background: var(--navy-2); border-bottom: 1px solid var(--navy-4); padding: 140px 0 80px; text-align: center; }
.fc-page-hero h1 { margin-bottom: 12px; }
.fc-page-hero p { max-width: 560px; margin: 0 auto; }

/* ── Notice ─── */
.fc-notice { padding: 16px 24px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14px; }
.fc-notice--success { background: rgba(198,255,61,0.1); border: 1px solid rgba(198,255,61,0.3); color: var(--volt); }
.fc-notice--error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #ff7a7a; }
.fc-notice--info { background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2); color: var(--cyan); }

/* ── Spinner ─── */
.fc-spinner { width: 20px; height: 20px; border: 2px solid var(--navy-4); border-top-color: var(--cyan); border-radius: 50%; animation: fc-spin 0.7s linear infinite; display: inline-block; }
@keyframes fc-spin { to { transform: rotate(360deg); } }

/* ── Divider ─── */
.fc-divider { height: 1px; background: var(--navy-4); margin: 0; }
.fc-divider--cyan { background: linear-gradient(to right, transparent, var(--cyan), transparent); opacity: 0.3; }

/* ── Gallery ─── */
.fc-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.fc-gallery-item { aspect-ratio: 4/3; overflow: hidden; position: relative; cursor: pointer; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%); }
.fc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.fc-gallery-item:hover img { transform: scale(1.05); }

/* ── Events Calendar ─── */
.fc-cal-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 32px; align-items: start; }
.fc-cal-card { background: var(--navy-3); border: 1px solid var(--navy-4); padding: 28px; }
.fc-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.fc-cal-nav-btn { background: var(--navy-4); border: 1px solid var(--navy-4); color: var(--text); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 16px; transition: var(--transition); }
.fc-cal-nav-btn:hover { background: var(--cyan); color: var(--navy); border-color: var(--cyan); }
.fc-cal-label { font-family: 'Anton', sans-serif; font-size: 1.3rem; letter-spacing: 0.02em; text-transform: uppercase; color: var(--text); }
.fc-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.fc-cal-dow { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); padding: 8px 0; }
.fc-cal-day { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: var(--navy-2); border: 1px solid transparent; cursor: pointer; font-size: 13px; color: var(--text); transition: var(--transition); }
.fc-cal-day:hover { border-color: var(--cyan); }
.fc-cal-day.fc-cal-empty { background: transparent; cursor: default; }
.fc-cal-day.is-today { border-color: var(--volt); font-weight: 700; }
.fc-cal-day.is-selected { background: var(--cyan); color: var(--navy); font-weight: 800; }
.fc-cal-day.has-events:not(.is-selected) { color: var(--cyan); font-weight: 700; }
.fc-cal-dot { position: absolute; bottom: 5px; width: 5px; height: 5px; border-radius: 50%; background: var(--volt); }
.fc-cal-day.is-selected .fc-cal-dot { background: var(--navy); }

.fc-event-details-wrap { margin-top: 24px; }
.fc-event-card { display: flex; gap: 16px; background: var(--navy-2); border: 1px solid var(--navy-4); padding: 18px; margin-bottom: 12px; }
.fc-event-img { width: 88px; height: 88px; object-fit: cover; flex-shrink: 0; clip-path: polygon(0 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%); }
.fc-event-body h3 { font-size: 1.05rem; margin-bottom: 6px; }
.fc-event-meta { font-size: 12px; color: var(--cyan); margin-bottom: 8px; }
.fc-event-body p { font-size: 13px; margin: 0; }
.fc-event-empty { padding: 20px; text-align: center; }
.fc-event-empty p { font-size: 13px; margin: 0; }

.fc-upcoming-list { display: flex; flex-direction: column; gap: 10px; }
.fc-upcoming-item { display: flex; gap: 14px; align-items: center; background: var(--navy-2); border: 1px solid var(--navy-4); padding: 12px 14px; cursor: pointer; transition: var(--transition); }
.fc-upcoming-item:hover { border-color: var(--cyan); }
.fc-upcoming-date { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 46px; flex-shrink: 0; background: var(--navy-4); padding: 6px 0; }
.fc-upcoming-day { font-family: 'Anton', sans-serif; font-size: 1.2rem; color: var(--volt); line-height: 1; }
.fc-upcoming-mon { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.fc-upcoming-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.fc-upcoming-info strong { font-size: 13px; color: var(--text); }
.fc-upcoming-info span { font-size: 11px; color: var(--text-muted); }

@media (max-width: 860px) {
  .fc-cal-wrap { grid-template-columns: 1fr; }
  .fc-cal-day { font-size: 11px; }
}
