/* =========================================================
   KONTAKT
   Kontaktdaten, Google Maps, Parken und ÖV.
========================================================= */

/* =========================================================
   KONTAKT
   Kontaktdaten, Google Maps, Parken und ÖV.
========================================================= */


/* Hero bis zum unteren Bildschirmrand */
.hero-subpage {
    height: 100vh;
    margin-bottom: 0;
}


.contact-hero {
    height: 100%;
    padding: 130px 8% 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero {
    height: 100%;
    padding: 130px 8% 45px;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    margin-bottom: 35px;
}

.contact-label {
    display: block;
    color: #4b91ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.contact-heading h1 {
    margin: 0 0 10px;
    font-size: 52px;
    line-height: 1.05;
}

.contact-heading p {
    margin: 0;
    max-width: 650px;
    color: #d6dfeb;
    font-size: 17px;
    line-height: 1.6;
}


/* Kontaktdaten + Karte */

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.4fr;
    gap: 35px;
    width: 100%;
}

.contact-details {
    padding: 30px;
    background: rgba(7, 17, 31, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.contact-details h2 {
    margin: 0 0 25px;
    font-size: 26px;
}

.contact-item {
    margin-bottom: 18px;
}

.contact-item-label {
    display: block;
    margin-bottom: 5px;
    color: #8ea0b5;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.contact-item p {
    margin: 0;
    color: #fff;
    line-height: 1.5;
}

.contact-item a {
    color: #fff;
    text-decoration: none;
}

.contact-item a:hover {
    color: #0f6fff;
}


/* Social Media */

.contact-socials {
    display: flex;
    gap: 20px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-socials a {
    color: #fff;
    text-decoration: none;
}

.contact-socials a:hover {
    color: #0f6fff;
}


/* Google Maps */

.contact-location {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-map {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Parken + öffentlicher Verkehr */

.arrival-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.arrival-item {
    padding: 20px 25px;
    background: rgba(7, 17, 31, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.arrival-item h3 {
    margin: 4px 0 8px;
    font-size: 18px;
}

.arrival-item p {
    margin: 0 0 18px;
    color: #d6dfeb;
    font-size: 14px;
    line-height: 1.5;
}

.arrival-item .btn {
    margin-left: 0;
}


/* Responsive Kontakt */

@media (max-width: 900px) {
    .contact-hero {
        height: auto;
        padding: 130px 8% 60px;
        justify-content: flex-start;
    }

    .contact-heading h1 {
        font-size: 42px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .arrival-info {
        grid-template-columns: 1fr;
    }

    .contact-map {
        height: 320px;
    }
}
