/* Tappy Landing Page Stylesheet */

body {
    background-color: antiquewhite;
    font-family: 'Inter', sans-serif;
    color: #222;
    margin: 0;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero-container {
    text-align: center;
    max-width: 600px;
    margin-bottom: 48px;
    margin-top: 20px;
}

.badge {
    display: inline-block;
    background-color: rgba(178, 94, 0, 0.1);
    color: #b25e00;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.hero-title .accent {
    color: #b25e00;
    font-style: italic;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 32px 0;
}

.btn-primary {
    display: inline-block;
    font-family: 'Playfair Display', Georgia, serif;
    background-color: #222;
    color: antiquewhite;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    padding: 14px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background-color: #333;
}

.features-section {
    display: flex;
    gap: 20px;
    max-width: 900px;
    width: 100%;
    margin-bottom: 60px;
}

.feature-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.feature-card h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.landing-footer {
    margin-top: auto;
    font-size: 13px;
    opacity: 0.7;
}

.landing-footer a {
    color: #222;
    font-weight: bold;
    text-decoration: none;
}

/* Responsive Design für Smartphones */
@media (max-width: 768px) {
    .features-section {
        flex-direction: column;
    }
    .hero-title {
        font-size: 32px;
    }
}