/* HERO BUTTONS */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-buttons .btn,
.hero-buttons .btn-secondary {
    min-width: 220px;
    height: 56px;
    /* Exakte Höhe erzwingen */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    padding: 0 30px;
    line-height: 1;
    /* Wichtig für vertikales Alignment */
    box-sizing: border-box !important;
    /* WICHTIG: Padding wird eingerechnet */
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

/* Primary Button Styling */
.hero-buttons .btn {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    /* Unsichtbarer Border für gleiche Größe */
    box-shadow: 0 4px 10px rgba(200, 142, 167, 0.3);
}

.hero-buttons .btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(200, 142, 167, 0.4);
}

/* Secondary Button Styling */
.hero-buttons .btn-secondary {
    background: rgba(255, 255, 255, 0.85);
    /* Etwas deckender für bessere Lesbarkeit */
    backdrop-filter: blur(5px);
    border: 2px solid var(--primary-color);
    color: var(--text-main);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.hero-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 6px 15px rgba(200, 142, 167, 0.4);
    transform: translateY(-2px);
}

/* Mobile Optimierung */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .hero-buttons .btn,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}