/* Einfacher Glaseffekt-Button */

.tp-btn-liquid-glass {
    display: inline-block;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 160px;
    text-align: center;
}

.tp-btn-liquid-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Doppel Button Styles */
.tp-double-btn-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

.tp-double-btn-wrapper.horizontal {
    flex-direction: row;
}

.tp-double-btn-wrapper.vertical {
    flex-direction: column;
    align-items: center;
}

.tp-btn-double {
    display: inline-block;
    padding: 16px 32px;
    background: #007cba;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid #007cba;
    min-width: 140px;
    text-align: center;
}

.tp-btn-double:hover {
    background: #005a87;
    border-color: #005a87;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 186, 0.3);
}

.tp-btn-double-1 {
    background: #007cba;
    border-color: #007cba;
}

.tp-btn-double-1:hover {
    background: #005a87;
    border-color: #005a87;
}

.tp-btn-double-2 {
    background: transparent;
    color: #007cba;
    border-color: #007cba;
}

.tp-btn-double-2:hover {
    background: #007cba;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .tp-double-btn-wrapper.horizontal {
        flex-direction: column;
        align-items: center;
    }
    
    .tp-btn-double {
        width: 100%;
        text-align: center;
    }
    
    .tp-btn-liquid-glass {
        width: 100%;
        min-width: auto;
    }
}
