/* ThriveFeed Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,400;0,500;0,600;1,400&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --coral: #E8614D;
    --deep-green: #1A3A2A;
    --cream: #FDF6F0;
    --warm-gray: #6B6560;
    --sand: #D4C5B5;
    --dark: #1A1816;
    --sage: #7A9E7E;
    --coral-light: rgba(232, 97, 77, 0.08);
    --green-light: rgba(26, 58, 42, 0.06);
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
}

/* ---- NAV ---- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 48px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 246, 240, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}
.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 22px;
    color: var(--deep-green);
    letter-spacing: -0.5px;
    text-decoration: none;
}
.logo span { color: var(--coral); }
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--warm-gray);
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    position: relative;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--deep-green);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-cta {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
    background: var(--coral);
    padding: 10px 24px;
    border-radius: 100px;
    transition: background 0.2s ease, transform 0.2s ease !important;
}
.nav-cta:hover {
    background: #d6533f !important;
    transform: translateY(-1px);
}
.nav-cta::after {
    display: none !important;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-green);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ---- SECTION LABEL ---- */
.section-label {
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--coral);
    margin-bottom: 20px;
}

/* ---- FOOTER ---- */
footer {
    padding: 60px 48px 40px;
    border-top: 1px solid var(--sand);
    background: var(--cream);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    display: inline-block;
    margin-bottom: 16px;
}
.footer-brand p {
    font-size: 14px;
    color: var(--warm-gray);
    line-height: 1.6;
    max-width: 280px;
}
.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--deep-green);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}
.footer-col a {
    display: block;
    font-size: 14px;
    color: var(--warm-gray);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.2s ease;
}
.footer-col a:hover {
    color: var(--coral);
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--sand);
}
.footer-bottom p {
    font-size: 13px;
    color: var(--warm-gray);
}

/* ---- BUTTONS ---- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: var(--coral);
    padding: 16px 36px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-primary:hover {
    background: #d6533f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 97, 77, 0.25);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--deep-green);
    background: transparent;
    padding: 16px 36px;
    border-radius: 100px;
    border: 2px solid var(--sand);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-secondary:hover {
    border-color: var(--deep-green);
    transform: translateY(-2px);
}

/* ---- PAGE HERO ---- */
.page-hero {
    padding: 160px 48px 80px;
    max-width: 900px;
}
.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.08;
    color: var(--deep-green);
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.page-hero h1 em {
    font-style: italic;
    color: var(--coral);
}
.page-hero p {
    font-size: 19px;
    line-height: 1.65;
    color: var(--warm-gray);
    max-width: 600px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
    nav { padding: 16px 24px; }
    .nav-links { display: none; }
    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(253, 246, 240, 0.98);
        backdrop-filter: blur(16px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--sand);
    }
    .nav-toggle { display: block; }
    .page-hero { padding: 120px 24px 60px; }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-up {
    animation: fadeUp 0.6s ease forwards;
}
.fade-up-delay-1 { animation-delay: 0.1s; opacity: 0; }
.fade-up-delay-2 { animation-delay: 0.2s; opacity: 0; }
.fade-up-delay-3 { animation-delay: 0.3s; opacity: 0; }
