/* Legacy stylesheet for the hand-made March 2026 archive pages only (old markup). New pages use style.css + tokens.css. */
:root {
  --color-bg: #faf6ec;
  --color-card-bg: #fffaf0;
  --color-text: #1f3a3d;
  --color-text-muted: #5c7a89;
  --color-border: #e3d9c6;
  --color-teal: #0e7c7b;
  --color-teal-dark: #0a5f5e;
  --color-coral: #e8693f;
  --color-coral-dark: #c85428;
  --color-gold: #c99a3e;       /* Cape Harbour accent */
  --color-turquoise: #17a398;  /* Greater Cape accent */
  --color-slate: #6e8a93;      /* Fort Myers accent */
}

html {
  background-color: var(--color-bg);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='28' viewBox='0 0 140 28'%3E%3Cpath d='M0 14 Q35 0 70 14 T140 14' fill='none' stroke='%230e7c7b' stroke-width='1' opacity='0.06'/%3E%3C/svg%3E"),
    linear-gradient(180deg, #eaf3ef 0%, var(--color-bg) 480px);
  background-repeat: repeat, no-repeat;
}
body { max-width: 800px; margin: auto; font-family: Arial, sans-serif; line-height: 1.6; color: var(--color-text); padding: 20px; }
.sticky-header { position: sticky; top: 0; background: var(--color-bg); padding: 15px 0; border-bottom: 2px solid var(--color-teal); z-index: 100; display: flex; justify-content: space-between; align-items: center; }
.sticky-header h1 { margin: 0; font-size: 1.5em; color: var(--color-teal-dark); }
.nav-links a { margin-left: 15px; text-decoration: none; color: var(--color-teal); font-weight: bold; }
.nav-links a:hover { text-decoration: underline; }
.nav-links .disabled { color: var(--color-text-muted); margin-left: 15px; font-weight: normal; cursor: not-allowed; opacity: 0.5; }
.jump-menu { margin-top: 15px; margin-bottom: 25px; font-weight: bold; }
.jump-menu a { text-decoration: none; }
.jump-cape-harbour { color: var(--color-gold); }
.jump-greater-cape { color: var(--color-turquoise); }
.jump-fort-myers { color: var(--color-slate); }
h2 { color: var(--color-teal-dark); border-bottom: 2px solid var(--color-border); padding-bottom: 5px; margin-top: 40px; }
.day-header { border-bottom: 1px solid var(--color-border); padding-bottom: 5px; color: var(--color-text); margin-top: 20px; }
.event-card { background: var(--color-card-bg); margin-bottom: 15px; padding: 15px; border-radius: 5px; box-shadow: 0 2px 6px rgba(31,58,61,0.1); border-left: 5px solid var(--color-border); position: relative; }
.event-card::after { content: ""; display: table; clear: both; }
.event-card.cape-harbour { border-left-color: var(--color-gold); }
.event-card.greater-cape { border-left-color: var(--color-turquoise); }
.event-card.fort-myers { border-left-color: var(--color-slate); }
.event-image { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 18%; border-radius: 5px; margin-bottom: 15px; }
@media (min-width: 600px) {
  .event-image { float: right; width: 250px; margin-left: 15px; margin-bottom: 5px; }
}
.event-title { font-weight: bold; font-size: 1.2em; color: var(--color-coral); text-decoration: none; display: block; margin-bottom: 5px; }
.event-title:hover { text-decoration: underline; color: var(--color-coral-dark); }
.event-meta { font-size: 0.95em; color: var(--color-text-muted); margin-bottom: 10px; }
.event-meta a { color: var(--color-teal); text-decoration: none; }
.event-meta a:hover { text-decoration: underline; }
.event-actions a { margin-right: 15px; text-decoration: none; font-size: 0.9em; color: var(--color-teal); display: inline-flex; align-items: center; }
.event-actions a:hover { text-decoration: underline; }
.footer { margin-top: 50px; text-align: center; font-size: 0.8em; color: var(--color-text-muted); border-top: 1px solid var(--color-border); padding-top: 20px; }
.back-to-top { display: block; margin-top: 30px; text-align: center; text-decoration: none; color: var(--color-teal); font-weight: bold; }
.genre-tag { display: inline-block; background: #e3f1ef; color: var(--color-teal-dark); padding: 2px 8px; border-radius: 12px; font-size: 0.8em; margin-bottom: 10px; margin-right: 5px; font-weight: bold; }
.weather { font-size: 0.8em; font-weight: normal; color: var(--color-text-muted); margin-left: 10px; }
.social-icons { margin-top: 10px; display: flex; gap: 7px; align-items: center; flex-wrap: wrap; }
.social-icon { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; text-decoration: none; transition: opacity 0.2s, transform 0.15s; flex-shrink: 0; }
.social-icon:hover { opacity: 0.8; transform: scale(1.1); }
.social-icon svg { width: 15px; height: 15px; fill: white; display: block; }
.social-icon.youtube   { background: #FF0000; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-icon.facebook  { background: #1877F2; }
.social-icon.spotify     { background: #1DB954; }
.social-icon.soundcloud  { background: #FF5500; }
