/* Toeta leht — kujundus järgib tutvustus-lehe visuaalset keelt */

:root {
    --toeta-radius: 14px;
    --toeta-warm: linear-gradient(135deg, #ff5e5b, #e11d48);
    --toeta-accent: var(--accent-color, #00d1b2);
    --toeta-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 4px 12px rgba(15, 23, 42, 0.04);
    --toeta-shadow-hover: 0 1px 2px rgba(15, 23, 42, 0.05), 0 12px 28px rgba(15, 23, 42, 0.08);
    --toeta-border: 1px solid rgba(15, 23, 42, 0.08);
}

[data-theme="dark"] {
    --toeta-shadow: 0 1px 2px rgba(0, 0, 0, 0.25), 0 4px 16px rgba(0, 0, 0, 0.2);
    --toeta-shadow-hover: 0 1px 2px rgba(0, 0, 0, 0.3), 0 14px 32px rgba(0, 0, 0, 0.32);
    --toeta-border: 1px solid #2a2a3e;
}

/* Hero */
.toeta-hero {
    padding: 3.75rem 1.5rem 3rem;
    text-align: center;
}

.toeta-heart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: var(--toeta-warm);
    color: #fff;
    font-size: 2.1rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 28px rgba(255, 94, 91, 0.35);
}

.toeta-heart i {
    animation: toeta-beat 2.4s ease-in-out infinite;
}

@keyframes toeta-beat {
    0%, 30%, 100% { transform: scale(1); }
    8% { transform: scale(1.14); }
    16% { transform: scale(1); }
    22% { transform: scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
    .toeta-heart i { animation: none; }
}

.toeta-hero-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0 0 0.9rem;
    letter-spacing: -0.02em;
    color: var(--text-primary, #0f172a);
    line-height: 1.15;
}

[data-theme="dark"] .toeta-hero-title {
    color: #f8fafc;
}

.toeta-hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.55;
    max-width: 560px;
    margin: 0 auto;
    color: var(--text-secondary, #475569);
}

[data-theme="dark"] .toeta-hero-subtitle {
    color: #cbd5e1;
}

.toeta-kofi-btn {
    margin-top: 1.75rem;
    height: 3.1rem;
    padding: 0 1.9rem;
    font-size: 1.05rem;
    font-weight: 600;
    border: none;
    border-radius: 999px;
    color: #fff;
    background: var(--toeta-accent);
    box-shadow: 0 6px 18px rgba(0, 209, 178, 0.35);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.toeta-kofi-btn:hover,
.toeta-kofi-btn:focus {
    transform: translateY(-2px);
    background: var(--accent-hover, #00c4a7);
    box-shadow: 0 10px 26px rgba(0, 209, 178, 0.45);
    color: #fff;
}

.toeta-note {
    color: var(--text-muted, #6b7280);
    font-size: 0.85rem;
    margin-top: 1rem;
}

[data-theme="dark"] .toeta-note {
    color: #94a3b8;
}

/* Sisukaardid */
.toeta-section {
    padding: 0 1.5rem 3.5rem;
}

.toeta-container {
    max-width: 880px;
    margin: 0 auto;
}

.toeta-card {
    background: var(--bg-card, #fff);
    border: var(--toeta-border);
    border-radius: var(--toeta-radius);
    padding: 1.5rem;
    height: 100%;
    box-shadow: var(--toeta-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.toeta-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--toeta-shadow-hover);
}

[data-theme="dark"] .toeta-card {
    background: #1c1c2a;
}

.toeta-card-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.1rem;
}

.toeta-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}

.toeta-card-icon.tone-cool { background: var(--toeta-accent); }

.toeta-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
    color: var(--text-primary, #0f172a);
}

[data-theme="dark"] .toeta-card-title {
    color: #f1f5f9;
}

.toeta-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toeta-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.45rem 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary, #475569);
}

[data-theme="dark"] .toeta-list li {
    color: #cbd5e1;
}

.toeta-list-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    margin-top: 0.05rem;
}

.toeta-list-icon.tone-cool {
    background: rgba(0, 209, 178, 0.12);
    color: #00b89e;
}

[data-theme="dark"] .toeta-list-icon.tone-cool {
    background: rgba(0, 209, 178, 0.2);
    color: #5eead4;
}

.toeta-list a {
    color: var(--text-link, #00b89e);
}

.toeta-list a:hover {
    text-decoration: underline;
}

/* Vabatahtlikkuse märkus */
.toeta-free-note {
    margin-top: 1.9rem;
    text-align: center;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    background: rgba(0, 209, 178, 0.08);
    border: 1px solid rgba(0, 209, 178, 0.25);
    color: var(--text-secondary, #475569);
    font-size: 0.95rem;
    line-height: 1.5;
}

[data-theme="dark"] .toeta-free-note {
    background: rgba(0, 209, 178, 0.12);
    border-color: rgba(0, 209, 178, 0.3);
    color: #cbd5e1;
}

.toeta-free-note .icon {
    color: #00b89e;
    margin-right: 0.35rem;
    vertical-align: -0.15em;
}

[data-theme="dark"] .toeta-free-note .icon {
    color: #5eead4;
}

/* Mobiilivaade */
@media (max-width: 768px) {
    .toeta-hero {
        padding: 2.5rem 1rem 2.25rem;
    }
    .toeta-heart {
        width: 68px;
        height: 68px;
        font-size: 1.7rem;
    }
    .toeta-hero-title {
        font-size: 1.7rem;
    }
    .toeta-hero-subtitle {
        font-size: 1rem;
    }
    .toeta-kofi-btn {
        height: 2.9rem;
        font-size: 1rem;
    }
    .toeta-section {
        padding: 0 1rem 2.5rem;
    }
    .toeta-card {
        padding: 1.25rem 1.1rem;
    }
}
