/* === FOOTER CONTACT ANIMATION === */

/* Äußerer Container - hält alles zusammen */
.contact-animated {
    position: relative;
    padding: 2rem;
    background: transparent;
    color: #fff;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Innerer Container (Card) - automatisch zentriert */
.contact-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    min-height: 280px;
    
    /* Card Style - angepasst an .signature-stats li + Gold Glow */
    background: linear-gradient(160deg, rgba(26, 20, 17, 0.72), rgba(34, 26, 22, 0.62));
    border-radius: 20px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 35px rgba(216, 188, 121, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(216, 188, 121, 0.6); 
    backdrop-filter: blur(8px);
    overflow: hidden;
}

/* Logo Wrapper - enthält das SVG, wird ausgeblendet */
.logo-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 300px;
    overflow: visible;
}

.logo-wrapper svg {
    width: 300px;
    height: auto;
    overflow: visible;
    display: block;
}

/* SVG Elemente */
#svg-left,
#svg-right {
    transform-origin: center;
    will-change: transform, opacity;
}

#svg-divider {
    transform-origin: center;
    will-change: transform, opacity;
}


/* === NEUER CONTENT WRAPPER === */
/* Dieser Container hält Strich + Buttons zusammen und ist automatisch zentriert */
.content-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0; /* Startet versteckt, wird per Animation eingeblendet */
    visibility: hidden; /* Komplett unsichtbar bis Animation */
    z-index: 5;
}

/* Goldener Strich - jetzt als eigenes CSS Element */
.divider-element {
    width: 1px;
    height: 280px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(216, 188, 121, 0.2) 5%, 
        rgba(216, 188, 121, 0.5) 15%, 
        rgba(216, 188, 121, 0.5) 85%, 
        rgba(216, 188, 121, 0.2) 95%, 
        transparent 100%
    );
    flex-shrink: 0;
}

/* Buttons Wrapper */
.buttons-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* Button Styling */
.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
    width: fit-content; /* Passt sich automatisch dem Text an */
    min-width: 260px; /* Mindestbreite für Desktop */
    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid rgba(216, 188, 121, 0.6); 
    background: linear-gradient(135deg, #1e1e1e, #282828);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.25); /* Goldener Schein verstärkt */
    color: #f5f5f5;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap; /* Verhindert Zeilenumbruch im Text */
    transition: all 0.25s ease;
    opacity: 0; /* Startet versteckt, wird per Animation eingeblendet */
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.45);
    border-color: rgba(212, 175, 55, 0.9);
    color: #fff;
}

.contact-btn i {
    font-size: 16px;
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (max-width: 820px) {
    .contact-animated {
        padding: 1.5rem 1rem;
    }
    
    .contact-container {
        padding: 2rem 1.5rem;
        max-width: 450px;
        min-height: 320px;
    }
    
    .logo-wrapper {
        width: 320px;
    }
    
    .logo-wrapper svg {
        width: 320px;
    }
    
    .content-wrapper {
        gap: 20px;
    }
    
    .divider-element {
        height: 220px;
    }

    .contact-btn {
        min-width: 220px;
        font-size: 12px;
        padding: 12px 20px;
    }
}

/* Smartphone */
@media (max-width: 480px) {
    .contact-animated {
        padding: 1rem 0.5rem;
    }
    
    .contact-container {
        padding: 1.5rem 1rem;
        border-radius: 16px;
        max-width: 95vw;
        min-height: 280px;
    }
    
    .logo-wrapper {
        width: 280px;
    }
    
    .logo-wrapper svg {
        width: 280px;
    }
    
    .content-wrapper {
        gap: 15px;
    }
    
    .divider-element {
        height: 180px;
        width: 2px;
    }

    .contact-btn {
        min-width: 180px;
        font-size: 11px;
        padding: 10px 16px;
        gap: 10px;
    }
    
    .buttons-wrapper {
        gap: 12px;
    }
}