/* ============================================================
   ANA SAYFADA GÖNÜLLÜLÜK HİKAYELERİ (VİDEOLAR) STİLLERİ
   ============================================================ */

/* Video Grid Container */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

/* Expanded Video Grid (Tüm Videoları Gör) */
.video-grid.expanded {
    grid-template-columns: repeat(3, 1fr);
}

/* Video Card */
.video-card {
    background: white;
    border: 4px solid #000;
    border-radius: 0;
    overflow: hidden;
    box-shadow: -4px 4px 0px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: -6px 6px 0px rgba(0, 0, 0, 0.4);
}

/* Video Card Image */
.video-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #E74C3C, #C0392B);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-card-image img {
    transform: scale(1.05);
}

/* Video Card Overlay */
.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-card-overlay {
    opacity: 1;
}

/* Play Button */
.play-button {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #E74C3C;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .play-button {
    transform: scale(1.1);
    background: white;
}

/* Video Card Tag */
.video-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #E74C3C;
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Video Card Content */
.video-card-content {
    padding: 25px;
}

.video-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
}

.video-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* ============================================================
   TAM SAYFA VIDEO MODAL STİLLERİ
   ============================================================ */

/* Fullscreen Modal */
.video-fullscreen-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Fullscreen Container */
.video-fullscreen-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fullscreen Video Iframe */
.fullscreen-video-iframe {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

/* Close Button */
.close-fullscreen-video {
    position: absolute;
    top: -50px;
    right: 0;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.close-fullscreen-video:hover {
    background: #E74C3C;
    color: white;
    transform: scale(1.1);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-card-image {
        height: 250px;
    }
    
    .video-fullscreen-container {
        width: 95%;
        height: 85vh;
    }
    
    .close-fullscreen-video {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .video-card-content h3 {
        font-size: 16px;
    }
    
    .video-card-content p {
        font-size: 13px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}
