/* ===================================================
   NEXTHIT BUTTON CARDS - ALLE BUTTONS IN CARDS
   Wie "Noch Fragen?" Section - ROT HINTERGRUND + RAHMEN
   Stand: 23.12.2025
   =================================================== */

/* UNIVERSELLE BUTTON-CARD KLASSE */
.nh-button-card {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid #E63946;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.nh-button-card:hover {
    background: rgba(230, 57, 70, 0.15);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
}

/* KLEINERE VERSION FUER INLINE-BUTTONS */
.nh-button-card-small {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid #E63946;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.nh-button-card-small:hover {
    background: rgba(230, 57, 70, 0.15);
    box-shadow: 0 0 20px rgba(230, 57, 70, 0.3);
}

/* HERO SECTION CARDS - NEBENEINANDER */
.nh-hero-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 30px auto;
    padding-top: 10px;
    max-width: 700px;
}

.nh-hero-card {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid #E63946;
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    transition: all 0.3s ease;
}

.nh-hero-card:hover {
    background: rgba(230, 57, 70, 0.2);
    box-shadow: 0 0 30px rgba(230, 57, 70, 0.3);
}

.nh-hero-card .neon-button-large {
    width: 100%;
    margin-bottom: 15px;
}

.nh-hero-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.5;
}

.nh-hero-card .price-info {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-top: 8px;
}

/* YOUTUBE/SPOTIFY BUTTON CARD */
.nh-action-card {
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid #E63946;
    border-radius: 15px;
    padding: 25px 30px;
    text-align: center;
    display: inline-block;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.nh-action-card:hover {
    background: rgba(230, 57, 70, 0.15);
    box-shadow: 0 0 25px rgba(230, 57, 70, 0.3);
}

/* SEO CONTENT CARDS MIT BUTTON */
.nh-content-card {
    background: rgba(20, 20, 20, 0.6);
    border: 2px solid #E63946;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
}

.nh-content-card h3 {
    color: #E63946;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.nh-content-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* BUTTON WRAPPER INNERHALB CARDS */
.nh-card-button-wrapper {
    background: rgba(230, 57, 70, 0.08);
    border: 1px solid rgba(230, 57, 70, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
    text-align: center;
}

.nh-card-button-wrapper:hover {
    background: rgba(230, 57, 70, 0.12);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .nh-button-card {
        padding: 20px 15px;
        margin: 15px 10px;
    }

    .nh-hero-cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 0 15px;
    }

    .nh-hero-card {
        min-width: 100%;
        max-width: 100%;
        padding: 20px 15px;
    }

    .nh-action-card {
        padding: 20px;
        margin: 15px 10px;
        display: block;
    }

    .nh-content-card {
        padding: 25px 20px;
        margin-bottom: 25px;
    }

    .nh-card-button-wrapper {
        padding: 15px;
        margin-top: 20px;
    }
}
