/*
Theme Name: AgeReverse Modern Health
Author: AgenticWorkspace
Description: A liquid-design theme for longevity and health optimization.
Version: 1.0
*/

:root {
    --primary: #0A2342;
    --accent: #00E0C6;
    --bg-soft: #F0F4F8;
    --white: #ffffff;
    --text: #2D3748;
    --gradient: linear-gradient(135deg, #0A2342 0%, #00E0C6 100%);
    --radius: 30px; /* Keine scharfen Kanten */
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
}

/* Weiche Verläufe für Sektionen */
.section-curved {
    padding: 80px 20px;
    border-radius: var(--radius);
    margin: 20px;
    background: var(--bg-soft);
}

/* Buttons ohne Kanten */
.button-primary {
    background: var(--gradient);
    color: white;
    padding: 15px 35px;
    border-radius: 50px; /* Vollrund */
    text-decoration: none;
    display: inline-block;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0, 224, 198, 0.2);
    transition: transform 0.3s ease;
}

.button-primary:hover {
    transform: translateY(-3px);
}

/* Karten-Design */
.card {
    background: white;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: 0 15px 35px rgba(10, 35, 66, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

h1, h2, h3 {
    color: var(--primary);
    border-radius: 10px;
}

/* Flüssiger Header */
header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    sticky: top;
}
