/**
 * Lumina Calendar Bridge - Styles
 */

 .lcb-booking-container {
    --lcb-accent: #c5a059; /* Default, will be overridden by inline style */
    --lcb-text: #ffffff;
    --lcb-dark: #1a1a1a;
    display: inline-block;
    margin: 10px 0;
}

.lcb-booking-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: var(--lcb-accent);
    color: var(--lcb-text) !important;
    padding: 18px 35px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none !important;
    border-radius: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.lcb-booking-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: var(--lcb-dark);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: -1;
}

.lcb-booking-btn:hover {
    color: #ffffff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.lcb-booking-btn:hover::before {
    width: 100%;
}

.lcb-icon {
    display: flex;
    align-items: center;
    transition: transform 0.4s ease;
}

.lcb-booking-btn:hover .lcb-icon {
    transform: rotate(10deg) scale(1.1);
}

/* Iframe Styles */
.lcb-iframe-wrapper {
    width: 100%;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

/* Responsive */
@media (max-width: 768px) {
    .lcb-booking-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 25px;
    }
}
