/* MyTiszaföldvár - Galéria CSS Stílusok */

/* Esemény Galéria Szekció */
.event-gallery-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.event-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    z-index: -1;
}

.event-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    background: var(--card-background);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.event-gallery-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.event-gallery-header {
    padding: 3rem 2rem 2rem;
    border-bottom: 1px solid var(--border-color);
    background: linear-gradient(135deg, var(--card-background) 0%, var(--light-background) 100%);
    text-align: center;
}

.event-gallery-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.event-gallery-subtitle {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-family: 'Nunito', sans-serif;
    line-height: 1.3;
}

.event-gallery-description {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.event-gallery-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.event-gallery-text {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-background) 0%, var(--light-background) 100%);
}

.event-gallery-text p {
    color: var(--light-text);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-align: justify;
}

.event-gallery-details {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.event-gallery-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.event-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    padding: 0.75rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: transparent;
}

.event-detail-item:hover {
    background: rgba(244, 208, 63, 0.1);
    transform: translateX(8px);
}

.event-detail-item:last-child {
    margin-bottom: 0;
}

.event-detail-icon {
    width: 32px;
    height: 32px;
    margin-right: 16px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 208, 63, 0.1);
    border-radius: 50%;
    padding: 8px;
    transition: all 0.3s ease;
}

.event-detail-item:hover .event-detail-icon {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.event-detail-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
}

.event-gallery-visual {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.event-gallery-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gallery-preview {
    position: relative;
    width: 100%;
    height: 350px;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.preview-image {
    position: absolute;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
}

.preview-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.preview-image:hover {
    transform: scale(1.08) rotate(0deg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    z-index: 10;
}

.preview-image:hover::before {
    opacity: 1;
}

.preview-image:nth-child(1) {
    top: 0;
    left: 20%;
    width: 65%;
    height: 65%;
    transform: rotate(8deg);
    z-index: 3;
}

.preview-image:nth-child(2) {
    top: 15%;
    right: 8%;
    width: 55%;
    height: 55%;
    transform: rotate(-12deg);
    z-index: 2;
}

.preview-image:nth-child(3) {
    bottom: 8%;
    left: 8%;
    width: 50%;
    height: 50%;
    transform: rotate(6deg);
    z-index: 1;
}

.preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.preview-image:hover img {
    transform: scale(1.1);
}

.gallery-button {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Nunito', sans-serif;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.gallery-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.gallery-button:hover::before {
    left: 100%;
}

.gallery-button:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-button:active {
    transform: translateY(-2px) scale(1.02);
}

.gallery-button .ri {
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.gallery-button:hover .ri {
    transform: scale(1.2);
}

/* Galéria Modal/Slider */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(2px);
}

.gallery-modal.active {
    display: flex;
    opacity: 1;
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-slider {
    width: 90%;
    max-width: 1200px;
    height: 85%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.9);
}

.gallery-slide.active {
    opacity: 1;
    transform: scale(1);
}

.gallery-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-slide-info {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 1.5rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 80%;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.gallery-nav.prev {
    left: 30px;
}

.gallery-nav.next {
    right: 30px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.gallery-counter {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .event-gallery-content {
        grid-template-columns: 1fr;
    }
    
    .event-gallery-visual {
        order: -1;
        min-height: 450px;
    }
    
    .gallery-preview {
        height: 300px;
    }
    
    .event-gallery-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .event-gallery-section {
        padding: 3rem 0;
    }
    
    .event-gallery-header {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .event-gallery-title {
        font-size: 2.2rem;
    }
    
    .event-gallery-subtitle {
        font-size: 1.5rem;
    }
    
    .event-gallery-text {
        padding: 2rem 1.5rem;
    }
    
    .event-gallery-visual {
        padding: 2rem 1.5rem;
        min-height: 400px;
    }
    
    .gallery-preview {
        height: 250px;
    }
    
    .preview-image:nth-child(1) {
        width: 75%;
        height: 75%;
        left: 12%;
    }
    
    .preview-image:nth-child(2) {
        width: 65%;
        height: 65%;
        right: 5%;
    }
    
    .preview-image:nth-child(3) {
        width: 60%;
        height: 60%;
        left: 5%;
    }
    
    .gallery-slider {
        width: 95%;
        height: 75%;
    }
    
    .gallery-nav {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .gallery-nav.prev {
        left: 15px;
    }
    
    .gallery-nav.next {
        right: 15px;
    }
    
    .gallery-close {
        top: 20px;
        right: 20px;
    }
    
    .gallery-counter {
        top: 20px;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .event-gallery-title {
        font-size: 2rem;
    }
    
    .event-gallery-subtitle {
        font-size: 1.3rem;
    }
    
    .event-gallery-text {
        padding: 1.5rem 1rem;
    }
    
    .event-gallery-visual {
        padding: 1.5rem 1rem;
        min-height: 350px;
    }
    
    .gallery-preview {
        height: 200px;
    }
    
    .gallery-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .event-gallery-details {
        padding: 1.5rem;
    }
}

/* Dark Mode Support */
[data-theme="dark"] .event-gallery-section {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
}

[data-theme="dark"] .event-gallery-container {
    background: var(--card-background);
    border-color: var(--border-color);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .event-gallery-header {
    border-color: var(--border-color);
    background: linear-gradient(135deg, var(--card-background) 0%, var(--light-background) 100%);
}

[data-theme="dark"] .event-gallery-title {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="dark"] .event-gallery-subtitle {
    color: var(--text-color);
}

[data-theme="dark"] .event-gallery-description,
[data-theme="dark"] .event-gallery-text p {
    color: var(--light-text);
}

[data-theme="dark"] .event-gallery-details {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    border-color: var(--border-color);
}

[data-theme="dark"] .event-detail-item {
    color: var(--light-text);
}

[data-theme="dark"] .event-detail-item:hover {
    background: rgba(244, 208, 63, 0.15);
}

[data-theme="dark"] .event-detail-icon {
    color: var(--primary-color);
    background: rgba(244, 208, 63, 0.15);
}

[data-theme="dark"] .event-detail-item:hover .event-detail-icon {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .event-detail-text {
    color: var(--text-color);
}

/* Videó Stílusok a Galériában */
.gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); 
    transition: all 0.3s ease;
    background: var(--card-background);
}

.gallery-video:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.gallery-video:focus {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Videó kontrollok stílusai */
.gallery-video::-webkit-media-controls {
    /*background: rgba(0, 0, 0, 0.7); */
    border-radius: 8px;
}

.gallery-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
}

.gallery-video::-webkit-media-controls-play-button {
    background: var(--primary-color);
    border-radius: 50%;
    color: white;
}

.gallery-video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.gallery-video::-webkit-media-controls-current-time-display,
.gallery-video::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: 600;
}

/* Videó poster (thumbnail) stílusok */
.gallery-video[poster] {
    background: var(--light-background);
}

/* Videó betöltési állapot */
.gallery-video:not([src]) {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.gallery-video:not([src])::before {
    content: '🎥 Videó betöltése...';
}

/* Videó hiba állapot */
.gallery-video:invalid {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.gallery-video:invalid::before {
    content: '❌ Videó nem tölthető be';
}

/* Videó lejátszás állapot */
.gallery-video:playing {
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.4);
}

/* Videó szüneteltetett állapot */
.gallery-video:paused {
    opacity: 0.9;
}

/* Videó betöltés animáció */
@keyframes videoLoading {
    0% { opacity: 0; transform: scale(0.95); }
    50% { opacity: 0.7; transform: scale(1); }
    100% { opacity: 1; transform: scale(1); }
}

.gallery-video:loading {
    animation: videoLoading 0.5s ease-out;
}

/* Videó kontrollok hover effektek */
.gallery-video::-webkit-media-controls-panel:hover {
    background: rgba(0, 0, 0, 0.9);
}

/* Egyedi videó vezérlők stílusai */
.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.video-container .gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.video-controls {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-container:hover .video-controls {
    opacity: 1;
}

.video-play-pause {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.video-play-pause:hover {
    background: var(--primary-hover);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.video-play-pause:active {
    transform: scale(0.95);
}

.video-progress {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.video-progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    overflow: hidden;
    cursor: pointer;
}

.video-progress-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 3px;
    transition: width 0.1s ease;
    width: 0%;
}

.video-time {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    min-width: 60px;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

/* Videó vezérlők megjelenítése mindig aktív videó esetén */
.gallery-slide-video.active .video-controls {
    opacity: 1;
}

/* Videó vezérlők responsive stílusok */
@media (max-width: 768px) {
    .video-controls {
        padding: 15px;
        gap: 10px;
    }
    
    .video-play-pause {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .video-time {
        font-size: 0.8rem;
        min-width: 50px;
    }
}

.gallery-video::-webkit-media-controls-play-button:hover {
    background: var(--primary-light);
    transform: scale(1.1);
}

/* Videó teljes képernyős mód stílusok */
.gallery-video:fullscreen {
    border-radius: 0;
    box-shadow: none;
}

/* Videó reszponzív viselkedés */
@media (max-width: 768px) {
    .gallery-video {
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .gallery-video:hover {
        transform: none;
    }
}

@media (max-width: 480px) {
    .gallery-video {
        border-radius: 6px;
        font-size: 1rem;
    }
    
    .gallery-video:not([src])::before {
        content: '🎥 Videó...';
        font-size: 1rem;
    }
    
    .gallery-video:invalid::before {
        content: '❌ Hiba';
        font-size: 0.9rem;
    }
}

/* Dark Mode videó stílusok */
[data-theme="dark"] .gallery-video {
    background: var(--card-background);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .gallery-video:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
}

[data-theme="dark"] .gallery-video:not([src]) {
    background: linear-gradient(135deg, var(--light-background) 0%, var(--background-color) 100%);
    color: var(--text-color);
}

[data-theme="dark"] .gallery-video:invalid {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(239, 68, 68, 0.05) 100%);
    color: #f87171;
}

[data-theme="dark"] .gallery-video:playing {
    box-shadow: 0 15px 40px rgba(244, 208, 63, 0.3);
}

/* Videó accessibility */
.gallery-video[aria-label] {
    cursor: pointer;
}

.gallery-video[aria-label]:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 3px;
}

/* Videó betöltési progress */
.gallery-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.gallery-video:loading::before {
    transform: scaleX(1);
    animation: videoProgress 2s ease-in-out infinite;
}

@keyframes videoProgress {
    0% { transform: scaleX(0); }
    50% { transform: scaleX(1); }
    100% { transform: scaleX(0); }
}

/* Videó slide speciális stílusok - Jobb láthatóság */
.gallery-slide-video {
    background: transparent !important;
}

.gallery-slide-video .gallery-video {
    background: transparent !important;
    box-shadow: none !important;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.gallery-slide-video.active {
    background: transparent !important;
}

/* Videó slide-ok háttér eltávolítása */
.gallery-slide-video .gallery-slide-info {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Videó kontrollok jobb láthatósága */
.gallery-slide-video .gallery-video::-webkit-media-controls {
    background: rgba(0, 0, 0, 0.5);
}

.gallery-slide-video .gallery-video::-webkit-media-controls-panel {
    background: rgba(0, 0, 0, 0.6);
}

.gallery-slide-video .gallery-video::-webkit-media-controls-timeline {
    background: rgba(255, 255, 255, 0.5);
}

.gallery-slide-video .gallery-video::-webkit-media-controls-current-time-display,
.gallery-slide-video .gallery-video::-webkit-media-controls-time-remaining-display {
    color: white;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}
