/**
 * Custom CSS
 * Diese Datei wird nach style.min.css geladen
 * Hier kannst du CSS-Anpassungen vornehmen ohne den Build-Prozess
 */

/* ==========================================================================
   Termin Buchen Button (Fixed)
   ========================================================================== */

.termin-button {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 28px;

    background-color: #C5B472;
    color: #ab4045;

    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;

    border: none;
    /*border-radius: 50px;*/
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

    cursor: pointer;

    transition: background-color 0.3s ease,
                opacity 0.4s ease,
                transform 0.3s ease,
                box-shadow 0.3s ease;
}

.termin-button:hover {
    background-color: #9A819A;
    color: #a1b9c1;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    transform: translateX(-50%) translateY(-2px);
}

.termin-button.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.termin-button.is-visible {
    opacity: 1;
    pointer-events: auto;
}

/* Icon im Button */
.termin-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobile Anpassungen */
@media (max-width: 768px) {
    .termin-button {
        padding: 12px 20px;
        font-size: 14px;
        bottom: 20px;
    }
}

/* ==========================================================================
   Termin Section (OneDoc Widget inline)
   ========================================================================== */

.termin-section {
    padding: 60px 0;
}

.termin-section .section__title {
    margin-bottom: 40px;
}

.termin-section__iframe {
    display: block;
    width: 100%;
    min-height: 600px;
    border: none;
}

@media (max-width: 768px) {
    .termin-section {
        padding: 40px 0;
    }

    .termin-section__iframe {
        min-height: 500px;
    }
}
