/**
 * Felugró ablakok stílusok
 * Modern, reszponzív design
 */

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
}

.popup-overlay.active {
    opacity: 1;
}

/* Popup konténer */
.popup-container {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    margin: auto;
}

.popup-overlay.active .popup-container {
    transform: scale(1) translateY(0);
}

/* Bezárás gomb */
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.2s ease;
}

.popup-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

/* Tartalom */
.popup-content {
    padding: 1rem;
}

/* Kép */
.popup-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    /* margin-bottom: 1.5rem; */
    display: block;
}

/* Cím */
.popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2e3774;
    margin: 0 0 1rem 0;
    line-height: 1.3;
}

/* Leírás */
.popup-description {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Szöveges tartalom */
.popup-text-content {
    font-size: 1rem;
    color: #495057;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.popup-text-content h1,
.popup-text-content h2,
.popup-text-content h3 {
    color: #2e3774;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.popup-text-content h1:first-child,
.popup-text-content h2:first-child,
.popup-text-content h3:first-child {
    margin-top: 0;
}

.popup-text-content p {
    margin-bottom: 1rem;
}

.popup-text-content ul,
.popup-text-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.popup-text-content a {
    color: var(--primary-color, #209c77);
    text-decoration: underline;
}

.popup-text-content a:hover {
    color: var(--primary-color-dark, #1a7a5e);
}

/* Videó */
.popup-video {
    position: relative;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.popup-video iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border: none;
    display: block;
}

/* Gomb */
.popup-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* Reszponzív design */
@media (max-width: 768px) {
    .popup-container {
        max-width: 95%;
        border-radius: 12px;
    }
    
    .popup-content {
        padding: 1.5rem;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-image {
        max-height: 250px;
    }
    
    .popup-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .popup-overlay {
        padding: 0.5rem;
    }
    
    .popup-container {
        max-width: 100%;
        border-radius: 8px;
        max-height: 95vh;
    }
    
    .popup-content {
        padding: 1rem;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .popup-description,
    .popup-text-content {
        font-size: 0.9375rem;
    }
    
    .popup-image {
        max-height: 200px;
    }
}

/* Animációk */
@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-container {
    animation: popupFadeIn 0.3s ease;
}

/* Scrollbar styling */
.popup-container::-webkit-scrollbar {
    width: 8px;
}

.popup-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.popup-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.popup-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

