/* Huntington Thrives - Care & Wellness Theme */
:root {
    --teal: #4db6ac;
    --teal-dark: #00897b;
    --gray-soft: #f4f7f6;
    --text-main: #37474f;
    --white: #ffffff;
    --accent: #ff8a65;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--text-main); line-height: 1.8; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }

/* Navigation */
.main-header { padding: 25px 0; background: var(--white); border-bottom: 1px solid #e0e0e0; position: sticky; top: 0; z-index: 1000; }
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Lora', serif; font-size: 24px; font-weight: 700; color: var(--teal-dark); }
.logo span { color: var(--accent); }
.nav-menu a { text-decoration: none; color: var(--text-main); margin: 0 15px; font-weight: 600; }
.btn-cta { background: var(--teal); color: white; padding: 10px 25px; border-radius: 50px; text-decoration: none; font-weight: 700; transition: 0.3s; }

/* Hero */
.hero-section { padding: 120px 0; background: var(--gray-soft); }
.hero-grid { display: grid; grid-template-columns: 1fr; text-align: center; }
.hero-text h1 { font-family: 'Lora', serif; font-size: 52px; color: var(--teal-dark); margin-bottom: 25px; line-height: 1.2; }
.hero-text p { font-size: 20px; color: #607d8b; max-width: 800px; margin: 0 auto 40px; }
.btn-primary { background: var(--teal-dark); color: white; padding: 16px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; margin-right: 15px; display: inline-block; }
.btn-secondary { border: 2px solid var(--teal-dark); color: var(--teal-dark); padding: 14px 35px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block; }

/* Mission Card */
.mission-statement { margin-top: -60px; }
.card-large { background: var(--white); padding: 60px; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.05); text-align: center; border-top: 5px solid var(--accent); }
.card-large h2 { font-family: 'Lora', serif; font-size: 32px; margin-bottom: 20px; }

/* Support Grid */
.support-bg { padding: 100px 0; background: var(--white); }
.grid-support { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.support-item { padding: 40px; background: var(--gray-soft); border-radius: 15px; text-align: center; }
.icon { font-size: 40px; margin-bottom: 20px; }
.support-item h3 { font-family: 'Lora', serif; margin-bottom: 15px; color: var(--teal-dark); }

/* Articles */
.articles-section { padding: 100px 0; }
.content-block { border-left: 4px solid var(--teal); padding-left: 40px; }
.tag { font-size: 12px; font-weight: 800; color: var(--accent); text-transform: uppercase; letter-spacing: 1px; }
.content-block h2 { font-family: 'Lora', serif; font-size: 36px; margin: 20px 0; }

/* Map & Footer */
.map-box { border-radius: 20px; overflow: hidden; margin-top: 50px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.main-footer { background: #263238; color: #b0bec5; padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; padding-bottom: 60px; }
.footer-grid h4 { color: var(--white); margin-bottom: 25px; font-family: 'Lora', serif; }
.footer-grid a { color: #b0bec5; text-decoration: none; display: block; margin-bottom: 10px; }
.f-social a { color: var(--teal); margin-right: 20px; font-weight: 800; }
.footer-bottom { border-top: 1px solid #37474f; padding: 40px 0; text-align: center; font-size: 13px; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 20px; right: 20px; background: var(--white); border-radius: 15px; padding: 20px; border: 1px solid #e0e0e0; z-index: 10000; box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.cookie-flex { display: flex; justify-content: space-between; align-items: center; }
.cookie-banner button { background: var(--teal-dark); color: white; border: none; padding: 10px 30px; border-radius: 50px; cursor: pointer; font-weight: 700; }