/* ===================================
   Dark Minimalist Design (SF Pro Style)
   =================================== */

:root {
    /* SF Pro / System Fonts prioritized */
    --font-stack: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    --color-bg: #000000;
    --color-text: #ffffff;
    --color-text-secondary: #a1a1a6;
    /* Apple-style muted text */
    --color-accent: #2997ff;
    /* Apple-style blue for links */

    --spacing-section: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-stack);
    /* Größere Basis-Schriftgröße */
    font-size: 21px;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.003em;
}

.container {
    max-width: 900px;
    /* Breiter für die grössere Schrift */
    margin: 0 auto;
    padding: 80px 24px 120px;
}

/* ===================================
   Typography - Big & Bold
   =================================== */

header {
    margin-bottom: var(--spacing-section);
}

h1 {
    font-size: 4rem;
    /* Sehr groß */
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-text-secondary);
    display: block;
    margin-top: 10px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
}

/* Feature Titles */
h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-text-secondary);
    font-weight: 400;
}

/* Wichtige Absätze etwas heller */
.intro-text p {
    font-size: 1.5rem;
    color: #dfdfdf;
    line-height: 1.4;
}

/* ===================================
   Links & Buttons
   =================================== */

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: opacity 0.2s;
}

a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Ricardo Shop Button */
.shop-link-container {
    margin-top: 4rem;
    margin-bottom: 4rem;
}

.shop-button {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 40px;
    /* Pill shape */
    text-decoration: none;
    transition: transform 0.2s, background-color 0.2s;
}

.shop-button:hover {
    background-color: #e0e0e0;
    transform: scale(1.02);
    text-decoration: none;
}

/* ===================================
   Footer
   =================================== */

footer {
    margin-top: 6rem;
    padding-top: 3rem;
    border-top: 1px solid #333;
    color: #666;
    font-size: 1rem;
}

footer a {
    color: #888;
    margin-right: 20px;
}

footer a:hover {
    color: #fff;
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 768px) {
    body {
        font-size: 18px;
    }

    h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .shop-button {
        width: 100%;
        text-align: center;
    }
}