/* assets/css/style.css */

/* --- Globale Einstellungen & Farbpalette --- */
:root {
    --primary-blue: #3B82F6;
    --primary-blue-dark: #2563EB;
    --secondary-yellow: #FBBF24;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --background-light: #FFFFFF;
    --background-gray: #F9FAFB;
    --border-color: #E5E7EB;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--background-light);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* --- Container & Sektionen --- */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    overflow: hidden;
}

section.bg-gray {
    background-color: var(--background-gray);
}

/* --- Typografie --- */
h1, h2, h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

p {
    color: var(--text-light);
    font-size: 18px;
    max-width: 650px;
}

.text-center {
    text-align: center;
}

.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* --- Header & Navigation --- */
header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo img {
    height: 35px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.2s ease-in-out;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    background-color: rgba(59, 130, 246, 0.1);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* --- Hero Sektion --- */
.hero {
    padding: 100px 0;
    text-align: center;
}

.hero-buttons {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-image {
    margin-top: 60px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    max-width: 100%;
}

/* --- Features & Probleme Sektion --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* --- Preis Sektion --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    align-items: center;
    justify-content: center;
}

.price-card {
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.price-card.highlight {
    border: 2px solid var(--primary-blue);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.price-tag {
    font-size: 42px;
    font-weight: 800;
    margin: 15px 0;
}

.price-tag .strikethrough {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 24px;
    font-weight: 600;
    margin-right: 10px;
}

.price-card .badge {
    display: inline-block;
    background-color: var(--secondary-yellow);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.price-card li {
    margin-bottom: 10px;
    color: var(--text-light);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-light);
}

footer .footer-links a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0 15px;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

/* --- Unterseiten (Impressum, Datenschutz) --- */
.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 24px;
    text-align: left;
    margin-top: 40px;
}