/* Overlay */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Okno */
.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    width: 320px;
    text-align: center;
    position: relative;
    animation: fadeIn 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
}

/* Tlačidlá */
.modal-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.modal-btn {
    padding: 12px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.25s;


    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* medzera medzi ikonou a textom */
}

/* Farby */
.insta { background: #E1306C; }
.fb { background: #1877F2; }
.phone { background: #28a745; }

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}



