/* ============================= */
/* Jugendseite – Kartenstil      */
/* Datei: /assets/css/jugend-page.css */
/* ============================= */

.jugend-page{
    --jg-bg: #eaf2f7;          /* helles Flyer-Blau */
    --jg-ink: #0b2a4a;         /* Vereins-Blau */
    --jg-ink-soft: #163b5e;
    --jg-card: #ffffff;
    --jg-border: rgba(0,0,0,0.08);

    --jg-blue: #d5e6f2;        /* Pastell-Blau */
    --jg-green: #46b07d;       /* Flyer-Grün */
    --jg-green-soft: #dff3ea;  /* sehr helles Grün */
    --jg-orange: #f0b47e;      /* Flyer-Orange */
    --jg-orange-soft: #fde9d8; /* sehr helles Orange */

    --jg-shadow: 0 10px 25px rgba(0,0,0,0.10);

    max-width: 1200px;
    margin: 0 auto;
    padding: 26px 18px 60px;
}

/* ============================= */
/* Hero                           */
/* ============================= */

.jugend-hero{
    background: linear-gradient(180deg, var(--jg-blue), var(--jg-bg));
    border: 1px solid var(--jg-border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--jg-shadow);
    margin-bottom: 18px;
    overflow: hidden;
    position: relative;
}

.jugend-hero__inner{
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 18px;
    align-items: start;
}

.jugend-hero__brand{
    padding: 4px 6px;
}

.jugend-badge{
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(11, 42, 74, 0.10);
    color: var(--jg-ink);
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: 0.9rem;
}

.jugend-title{
    margin: 10px 0 6px;
    color: var(--jg-ink);
    font-size: 1.7rem;
    line-height: 1.15;
}

.jugend-subtitle{
    margin: 0 0 14px;
    color: var(--jg-ink-soft);
    font-weight: 800;
    letter-spacing: 0.2px;
}

.jugend-hero__cta{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.jugend-hero__side{
    display: grid;
    gap: 12px;
}

.jugend-hero__note{
    background: var(--jg-card);
    border: 1px solid var(--jg-border);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.jugend-hero__chips{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.jugend-chip{
    display: inline-block;
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(70, 176, 125, 0.16);
    color: var(--jg-ink);
    font-weight: 800;
    font-size: 0.92rem;
}

/* ============================= */
/* Grid + Cards                   */
/* ============================= */

/* Desktop: exakt 2 Spalten */
.jugend-grid{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

/* Wide Cards: über beide Spalten */
.jugend-card--wide{
    grid-column: 1 / -1;
}

.jugend-card{
    background: var(--jg-card);
    border: 1px solid var(--jg-border);
    border-radius: 14px;
    padding: 16px;
    box-shadow: var(--jg-shadow);
}

/* Farbvarianten */
.jugend-card--blue{
    background: linear-gradient(180deg, rgba(213, 230, 242, 0.80), var(--jg-card));
}

.jugend-card--green{
    background: linear-gradient(180deg, rgba(223, 243, 234, 0.95), var(--jg-card));
    border-color: rgba(70, 176, 125, 0.25);
}

.jugend-card--orange{
    background: linear-gradient(180deg, rgba(253, 233, 216, 0.95), var(--jg-card));
    border-color: rgba(240, 180, 126, 0.35);
}

.jugend-card__title{
    margin: 0 0 14px;
    font-size: 1.15rem;
    color: var(--jg-ink);
    text-align: center;
    position: relative;
    padding-bottom: 8px;
}

.jugend-card__title::after{
    content: "";
    display: block;
    width: 56px;
    height: 3px;
    border-radius: 999px;
    margin: 8px auto 0;
    background: rgba(11, 42, 74, 0.35);
}

/* ============================= */
/* Typography                     */
/* ============================= */

.jugend-h2{
    margin: 0 0 8px;
    color: var(--jg-ink);
    font-size: 1.2rem;
}

.jugend-h3{
    margin: 0 0 10px;
    color: var(--jg-ink);
    font-size: 1.05rem;
    text-align: left;
}

.jugend-text{
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-weight: 700;
    text-align: left;
}

.jugend-text + .jugend-text{
    margin-top: 10px;
}

.jugend-text--center{
    text-align: center;
}

.jugend-footnote{
    margin: 10px 0 0;
    color: rgba(11, 42, 74, 0.85);
    font-weight: 800;
    text-align: center;
}

/* Links */
.jugend-card a{
    color: var(--jg-ink);
    text-decoration: none;
    font-weight: 900;
}

.jugend-card a:hover,
.jugend-card a:focus{
    text-decoration: underline;
}

/* ============================= */
/* Lists                          */
/* ============================= */

.jugend-list,
.jugend-dates{
    list-style: none;
    margin: 0;
    padding: 0;
}

.jugend-list li,
.jugend-dates li{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed rgba(0,0,0,0.12);
    font-size: 0.96rem;
}

.jugend-list li:last-child,
.jugend-dates li:last-child{
    border-bottom: none;
}

.jugend-list span,
.jugend-dates span{
    color: #333;
    overflow-wrap: anywhere;
    font-weight: 800;
}

.jugend-list strong,
.jugend-dates strong{
    color: var(--jg-ink);
    font-weight: 900;
    text-align: right;
    white-space: nowrap;
}

.jugend-list--contact span{
    color: rgba(11, 42, 74, 0.9);
    font-weight: 900;
}

.jugend-bullets{
    margin: 0;
    padding-left: 18px;
    color: #333;
    line-height: 1.8;
    font-weight: 800;
}

.jugend-bullets li{
    margin: 4px 0;
}

/* ============================= */
/* 2-Spalten Layout (Inhalt)      */
/* ============================= */

.jugend-split{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.jugend-split__col{
    padding: 2px 0;
}

/* dezente Trennlinie (Desktop) */
@media (min-width: 760px){
    .jugend-split__col + .jugend-split__col{
        border-left: 1px dashed rgba(0,0,0,0.12);
        padding-left: 22px;
    }
}

/* ============================= */
/* Buttons                        */
/* ============================= */

.jugend-btn{
    display: inline-block;
    padding: 10px 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
    border: 1px solid transparent;
}

.jugend-btn--primary{
    background: var(--jg-ink);
    color: #fff !important;
}

.jugend-btn--primary:hover,
.jugend-btn--primary:focus{
    background: var(--jg-ink-soft);
    transform: translateY(-1px);
}

.jugend-btn--ghost{
    background: rgba(255,255,255,0.75);
    color: var(--jg-ink);
    border-color: rgba(11, 42, 74, 0.18);
}

.jugend-btn--ghost:hover,
.jugend-btn--ghost:focus{
    background: #ffffff;
    transform: translateY(-1px);
}

.jugend-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 14px;
}

/* ============================= */
/* Location block                 */
/* ============================= */

.jugend-location{
    margin-top: 12px;
    display: grid;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border-radius: 14px;
    background: rgba(11, 42, 74, 0.06);
    border: 1px solid rgba(11, 42, 74, 0.10);
}

.jugend-location__pin{
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border-radius: 999px;
    background: rgba(70, 176, 125, 0.85);
    box-shadow: 0 8px 18px rgba(0,0,0,0.10);
    position: relative;
}

.jugend-location__pin::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid rgba(70, 176, 125, 0.85);
}

.jugend-location__text{
    color: #333;
    line-height: 1.6;
    font-weight: 800;
}

/* ============================= */
/* Responsive                     */
/* ============================= */

/* Mobile: Grid 1 Spalte + Hero/Split 1 Spalte */
@media (max-width: 759px){
    .jugend-grid{
        grid-template-columns: 1fr;
    }

    .jugend-hero__inner{
        grid-template-columns: 1fr;
    }

    .jugend-split{
        grid-template-columns: 1fr;
    }
}
