@import url(style.css); 
 
/* =========================================================================
 KONTAKT SEITE
========================================================================= */

.kontakt-seite {
    padding-bottom: 0;
}

/* ── Hero ── */
.kontakt-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.kontakt-hero-label {
    font-family: var(--lexenddeca);
    font-size: var(--font-size-hint);
    font-weight: var(--regular);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 0;
}

.kontakt-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.15;
    margin-bottom: 0;
}

.kontakt-hero p {
    max-width: 520px;
    margin-bottom: 0;
    margin-top: var(--space-s);
}

/* ── Layout: Formular + Info nebeneinander ── */
.kontakt-layout {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
    padding: var(--space-xl) 0 var(--space-3xl);
}

@media (min-width: 1024px) {
    .kontakt-layout {
        flex-direction: row;
        align-items: flex-start;
        gap: var(--space-3xl);
    }

    .kontakt-formular-wrapper {
        flex: 1.4;
    }

    .kontakt-info {
        flex: 1;
        position: sticky;
        top: 7rem;
    }
}

/* ── Formular ── */
.kontakt-formular-wrapper form {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

/* ── Info-Spalte ── */
.kontakt-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: var(--space-m);
}

.info-block-label {
    font-family: var(--lexenddeca);
    font-size: 0.65rem;
    font-weight: var(--medium);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
}

/* E-Mail Kachel */
.info-kachel {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: var(--space-m) var(--space-l);
    text-decoration: none;
    transition: border-color 0.3s ease, background 0.3s ease;
}

.info-kachel:hover {
    border-color: rgba(111, 128, 232, 0.35);
    background: rgba(111, 128, 232, 0.05);
}

.info-kachel-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(111, 128, 232, 0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--blue);
}

.info-kachel-icon svg {
    width: 1.1rem;
    height: 1.1rem;
}

.info-kachel-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-kachel-titel {
    font-family: var(--lexenddeca);
    font-size: var(--font-size-hint);
    font-weight: var(--regular);
    color: rgba(249, 249, 249, 0.4);
    letter-spacing: 0.04em;
}

.info-kachel-wert {
    font-family: var(--poppins);
    font-size: var(--font-size-p);
    font-weight: var(--medium);
    color: var(--ghostwhite);
}

/* Antwortzeit */
.antwortzeit {
    display: flex;
    align-items: center;
    gap: var(--space-s);
    padding: var(--space-m) var(--space-l);
    background: rgba(111, 128, 232, 0.08);
    border: 1px solid rgba(111, 128, 232, 0.2);
    border-radius: 10px;
}

@keyframes puls {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.antwortzeit p {
    font-family: var(--lexenddeca);
    font-size: var(--font-size-hint);
    font-weight: var(--regular);
    margin-bottom: 0;
    line-height: 1.5;
}

.antwortzeit p strong {
    color: var(--ghostwhite);
    font-weight: var(--medium);
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-m);
    text-decoration: none;
    padding: var(--space-s) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: color 0.25s ease;
    color: rgba(249, 249, 249, 0.6);
}

.social-link:last-child {
    border-bottom: none;
}

.social-link:hover {
    color: var(--ghostwhite);
}

.social-link svg {
    width: 1.1rem;
    height: 1.1rem;
    flex-shrink: 0;
    color: var(--blue);
}

.social-link-name {
    font-family: var(--lexenddeca);
    font-size: var(--font-size-p);
    font-weight: var(--light);
}

.social-link-pfeil {
    margin-left: auto;
    width: 0.9rem;
    height: 0.9rem;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.social-link:hover .social-link-pfeil {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* =========================================================================
   POPUP (1:1 von Design-Anfrage)
   ========================================================================= */

   .popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(14, 15, 21, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: flex-start;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9999;
    padding: var(--space-m);
    box-sizing: border-box;
}

.popup-overlay.aktiv {
    display: flex !important;
}

.popup {
    background: var(--blackblue);
    border: 1px solid rgba(249, 249, 249, 0.1);
    border-radius: 16px;
    padding: clamp(1rem, 5vw, 2.5rem);
    width: 100%;
    max-width: 500px;
    margin: auto;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    animation: popup-an-flug 0.4s ease-out;
    box-sizing: border-box;
}

@keyframes popup-an-flug {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.popup-icon {
    width: clamp(2.5rem, 10vw, 3.5rem);
    height: clamp(2.5rem, 10vw, 3.5rem);
    background: rgba(111, 128, 232, 0.1);
    color: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-m);
    flex-shrink: 0;
}

.popup-icon svg {
    width: clamp(1.2rem, 5vw, 1.75rem);
    height: clamp(1.2rem, 5vw, 1.75rem);
}

.popup-label {
    font-family: var(--lexenddeca);
    font-size: clamp(0.6rem, 2vw, 0.7rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    display: block;
    margin-bottom: 1rem;
}

.popup h2 {
    font-size: clamp(1.1rem, 5vw, 1.8rem);
    line-height: 1.25;
    margin-bottom: var(--space-m);
}

.popup-text {
    font-family: var(--lexenddeca);
    font-size: clamp(0.8rem, 3vw, 0.95rem);
    line-height: 1.6;
    margin-bottom: var(--space-l);
}

.popup-schliessen {
    width: 100%;
    background: var(--blue);
    color: white;
    border: none;
    padding: clamp(0.75rem, 3vw, 1.1rem);
    border-radius: 10px;
    font-family: var(--lexenddeca);
    font-size: clamp(0.85rem, 3vw, 1rem);
    font-weight: var(--light);
    cursor: pointer;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.popup-schliessen:hover {
    background: var(--ghostwhite);
    color: var(--blackblue);
}

/* Responsivität */
@media (max-width: 380px) {
    .popup-overlay { padding: var(--space-l); }
    .popup { border-radius: 12px; }
}

@media (max-height: 600px) {
    .popup-overlay { align-items: flex-start; padding: var(--space-s); }
    .popup { margin: var(--space-s) auto; }
}