@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Lora:wght@400;700&display=swap');
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    font-family: 'Roboto', sans-serif;
}
.modal-content {
    background: #fff8f0;
    margin: 8% auto;
    padding: 40px 30px;
    border-radius: 25px;
    width: 90%;
    height: 460px;
    max-width: 480px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}
.close, .close2 {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #8b5e3c;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
}
.modal-logo img {
    width: 200px;
    margin-bottom: 25px;
}
.modal-text {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    color: #8b5e3c;
    margin-bottom: 35px;
    line-height: 1.6;
    font-weight: 500;
}
.modal h1 {
    color: #8b5e3c;
}

/*
.modal-buttons {
    display: flex; 
    align-items: center;
    justify-content: center; 
    gap: 12px;
}*/
.circle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    margin: 0 12px;
    border-radius: 50%;
    background: #efe4d7; 
    color: #5c3d2e;
    text-decoration: none;
    font-size: 28px;
    transition: transform 0.2s, background 0.2s;
}
.circle-btn:hover {
    transform: scale(1.1);
    background: #e0c6aa;
}











@media (min-width: 768px) {
    .modal-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
    }
    .modal-content {
        height: 640px;
    }
    .circle-btn {
        display: inline-flex;
        font-family: 'Roboto', sans-serif;
        align-items: center;
        justify-content: center;
        width: 200px;
        border-radius: 60px;
        background: #efe4d7; 
        color: #5c3d2e;
        text-decoration: none;
        font-size: 20px; 
        font-weight: 500;
        transition: transform 0.2s, background 0.2s;
        gap: 8px;
    }
}

@media (max-width: 767px) {
    .modal-desc {
        display: none;
    }

}

/* Skryť na telefónoch @media (max-width: 767px) { */
/* Skryť na počítačoch (desktop s min šírkou 768px) @media (min-width: 768px) { */


