/**
 * YouTube Videos Section Styles
 */

section#youtube-videos {
    padding: 80px 0;
    background-color: #f8f9fa;
}

section#youtube-videos .container {
    width: 85%;
    margin: 0 auto;
}

/* Header */
section#youtube-videos .youtube-header {
    text-align: center;
    margin-bottom: 50px;
}

section#youtube-videos .youtube-header h2 {
    color: #001841;
    font-size: 42px;
    font-style: italic;
    margin: 0 0 15px 0;
    font-family: 'all-round-gothic', sans-serif;
}

section#youtube-videos .youtube-header p {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    font-family: 'all-round-gothic', sans-serif;
    font-weight: 500;
}

/* Grid Layout */
section#youtube-videos .youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Video Items */
section#youtube-videos .youtube-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 24, 65, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section#youtube-videos .youtube-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 24, 65, 0.2);
}

/* Video Wrapper - 16:9 aspect ratio */
section#youtube-videos .youtube-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background-color: #000;
}

section#youtube-videos .youtube-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Thumbnail */
section#youtube-videos .youtube-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

section#youtube-videos .youtube-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

section#youtube-videos .youtube-item:hover .youtube-thumbnail img {
    transform: scale(1.05);
}

/* Play Button */
section#youtube-videos .youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

section#youtube-videos .youtube-play-button svg {
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

section#youtube-videos .youtube-item:hover .youtube-play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

section#youtube-videos .youtube-play-button .youtube-play-bg {
    transition: fill 0.3s ease;
}

section#youtube-videos .youtube-item:hover .youtube-play-button .youtube-play-bg {
    fill: #FF7E00;
}

/* Overlay gradient */
section#youtube-videos .youtube-thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 24, 65, 0.4) 100%);
    pointer-events: none;
}

/* Responsive - Tablet */
@media screen and (max-width: 1200px) {
    section#youtube-videos .youtube-header h2 {
        font-size: 36px;
    }
    
    section#youtube-videos .youtube-grid {
        gap: 25px;
    }
}

/* Responsive - Mobile Landscape */
@media screen and (max-width: 900px) {
    section#youtube-videos {
        padding: 60px 0;
    }
    
    section#youtube-videos .container {
        width: 90%;
    }
    
    section#youtube-videos .youtube-header {
        margin-bottom: 40px;
    }
    
    section#youtube-videos .youtube-header h2 {
        font-size: 32px;
    }
    
    section#youtube-videos .youtube-header p {
        font-size: 16px;
    }
}

/* Responsive - Mobile Portrait */
@media screen and (max-width: 600px) {
    section#youtube-videos {
        padding: 50px 0;
    }
    
    section#youtube-videos .youtube-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    section#youtube-videos .youtube-header h2 {
        font-size: 28px;
    }
    
    section#youtube-videos .youtube-item {
        border-radius: 15px;
    }
}
