/* Get Up and Dance - Community Activities */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&family=Lora:ital,wght@0,400;0,600;1,400&display=swap');

:root {
    --plum: #6b2d5b;
    --plum-light: #8a3d75;
    --teal: #2a7f7f;
    --teal-light: #3a9e9e;
    --warm: #f9f5f0;
    --cream: #fefcf8;
    --text: #3a3a3a;
    --text-light: #6d6d6d;
    --border: #e8e2d8;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; color: var(--text); background: var(--cream); line-height: 1.7; }
h1, h2, h3, h4 { font-family: 'Lora', serif; color: var(--plum); line-height: 1.3; }
a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-light); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Nav */
.site-nav { background: var(--plum); padding: 0; }
.site-nav .wrap { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.site-nav .logo { color: #fff; font-family: 'Lora', serif; font-size: 1.1rem; font-weight: 700; padding: 0.9rem 0; text-decoration: none; }
.site-nav .logo:hover { color: rgba(255,255,255,0.85); text-decoration: none; }
.site-nav ul { list-style: none; display: flex; gap: 0; }
.site-nav ul li a { color: rgba(255,255,255,0.85); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 1rem 0.9rem; display: block; text-decoration: none; transition: background 0.2s; }
.site-nav ul li a:hover { background: rgba(255,255,255,0.1); color: #fff; text-decoration: none; }
.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.4rem; cursor: pointer; padding: 0.9rem 0; }
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .site-nav ul { display: none; flex-direction: column; width: 100%; position: absolute; top: 100%; left: 0; background: var(--plum); z-index: 50; }
    .site-nav ul.open { display: flex; }
    .site-nav .wrap { flex-wrap: wrap; position: relative; }
}

/* Hero */
.hero { position: relative; background-size: cover; background-position: center; padding: 5rem 1.5rem; text-align: center; color: #fff; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(107,45,91,0.7), rgba(42,127,127,0.5)); }
.hero .inner { position: relative; max-width: 650px; margin: 0 auto; }
.hero h1 { color: #fff; font-size: 2.2rem; margin-bottom: 0.75rem; text-shadow: 1px 1px 4px rgba(0,0,0,0.2); }
.hero p { font-size: 1.1rem; opacity: 0.92; }
@media (min-width: 768px) { .hero { padding: 7rem 2rem; } .hero h1 { font-size: 2.8rem; } }

/* Content */
.wrap { max-width: 1000px; margin: 0 auto; padding: 0 1.5rem; }
.content { max-width: 750px; margin: 0 auto; padding: 2.5rem 1.5rem; }
.section { padding: 2.5rem 0; }
.section-alt { background: var(--warm); padding: 2.5rem 0; }
.section-title { text-align: center; font-size: 1.6rem; margin-bottom: 0.4rem; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 1.75rem; }
.divider { width: 50px; height: 3px; background: var(--teal); margin: 0 auto 1.75rem; border-radius: 2px; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-2px); box-shadow: 0 5px 16px rgba(0,0,0,0.1); }
.card img { width: 100%; height: 170px; object-fit: cover; }
.card-body { padding: 1.1rem; }
.card-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.card-body h3 a { color: var(--plum); text-decoration: none; }
.card-body h3 a:hover { color: var(--teal); }
.card-body p { font-size: 0.88rem; color: var(--text-light); }

/* Article */
.article h2 { font-size: 1.4rem; margin: 2rem 0 0.75rem; padding-bottom: 0.4rem; border-bottom: 2px solid var(--teal); }
.article p { margin-bottom: 1.1rem; font-size: 1.02rem; }
.article ul { margin: 0 0 1.25rem 1.5rem; }
.article ul li { margin-bottom: 0.3rem; }
.article img { border-radius: 8px; margin: 1.5rem 0; }
.article .caption { font-size: 0.82rem; color: var(--text-light); font-style: italic; text-align: center; margin-top: -1rem; margin-bottom: 1.25rem; }

/* History callout */
.history-note { background: var(--warm); border-left: 3px solid var(--plum); padding: 1rem 1.25rem; margin: 1.5rem 0; border-radius: 0 6px 6px 0; font-size: 0.92rem; color: var(--text-light); }

/* Related */
.related { background: var(--warm); border-radius: 8px; padding: 1.5rem; margin-top: 2rem; }
.related h3 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 0.75rem; color: var(--plum); }
.related ul { list-style: none; }
.related ul li { padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.related ul li:last-child { border-bottom: none; }

/* Footer */
.site-footer { background: var(--plum); color: rgba(255,255,255,0.55); padding: 1.5rem; text-align: center; font-size: 0.8rem; }
.site-footer a { color: rgba(255,255,255,0.7); }

/* Contact form look */
.contact-info { background: var(--warm); border-radius: 8px; padding: 1.5rem; }
.contact-info p { margin-bottom: 0.5rem; }
