/* =========================================
   ABOUT – Jetzt in echten HERO Farben
   (Gold/Orange Highlights, warmes Glas)
========================================= */

.about-section {
    padding: 6rem 0;
    display: flex;
    justify-content: center;
    text-align: center;
}

/* Haupt-Container */
.about-content {
    width: min(780px, 92%);
    margin: 0 auto;

    /* dunkleres warmes Glas wie Hero */
    background: rgba(0, 0, 0, 0.175);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 200, 150, 0.18);
    /* Hero Border */
    border-radius: 30px;
    padding: 3rem 2.4rem;

    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.767);

    animation: aboutFade 1.1s ease-out forwards;
    opacity: 0;
}

@keyframes aboutFade {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titel */
.about-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: .6rem;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
}

/* Untertitel */
.about-sub {
    font-size: 1.1rem;
    color: #ffe7cc;
    /* Hero-Sub Farbe */
    opacity: 0.92;
    margin-bottom: 2rem;
}

/* Textblock */
.about-textbox p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #fff4e8;
    /* warme hero-typische Weiß/Beige */
    opacity: 0.95;
    margin-bottom: 1.2rem;
}

/* Cards */
.about-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* einzelne Karte */
.about-card {
    background: rgba(255, 200, 150, 0.08);
    /* warmes Gold-Glas */
    backdrop-filter: blur(10px);

    padding: 1.3rem 1.2rem;
    border-radius: 16px;

    border: 1px solid rgba(255, 200, 150, 0.25);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.about-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 160, 90, 0.8);
    /* Hero Accent Border */
    box-shadow: 0 16px 40px rgba(255, 160, 90, 0.45);
    /* Hero Glow */
}

/* Card-Titel */
.about-card h3 {
    margin-bottom: .4rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffd9b3;
    /* Hero Gold */
}

/* Card-Text */
.about-card p {
    color: #fff4e8;
    font-size: 0.95rem;
    opacity: 0.9;
}