/* CSS štýly pre Bookio integráciu - PMU Ivona Belianská */

/* Základné štýly pre kontajner rezervácie */
.bookio-container {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: none;
    max-width: 1100px;
    margin: 0 auto;
}

/* Hlavička rezervačného formulára */
.bookio-header {
    background-color: #1e272e;
    color: white;
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bookio-logo {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
}

.bookio-title {
    font-size: 18px;
    color: #d4af37; /* Zlatá farba */
    margin: 10px 0;
}

/* Iframe kontajner */
.bookio-frame-container {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: white;
    z-index: 100; /* Zvýšenie z-indexu kontajnera pre riešenie problému s navigáciou */
    isolation: isolate; /* Izoluje kontext z-indexu pre lepšie vrstvenie */
}

/* Loading indikátor */
.bookio-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.bookio-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #d4af37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Štýly pre iframe */
#bookioFrame {
    width: 100%;
    min-height: 750px;
    border: none;
    transition: opacity 0.3s ease;
    z-index: 200; /* Zabezpečuje, aby iframe bol nad menu na mobilných zariadeniach */
    position: relative;
}

/* Informačná sekcia pod rezervačným formulárom */
.bookio-info {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f9f9f9;
}

.bookio-info h5 {
    color: #d4af37;
    margin-bottom: 15px;
    font-size: 18px;
}

.bookio-info p {
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.bookio-info a {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.2s;
}

.bookio-info a:hover {
    color: #b08f26;
    text-decoration: underline;
}

/* Responzívne nastavenia */
@media (max-width: 768px) {
    .bookio-header {
        padding: 15px;
    }
    
    .bookio-logo {
        font-size: 20px;
    }
    
    .bookio-title {
        font-size: 16px;
    }
    
    #bookioFrame {
        min-height: 850px;
    }
}

@media (max-width: 576px) {
    .bookio-container {
        border-radius: 0;
        box-shadow: none;
    }
    
    #bookioFrame {
        min-height: 900px;
    }
}