/* ===================================
   YouTube Videos Section
   =================================== */

.videos-section {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.video-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8f6f0 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    border: 2px solid transparent;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border-color: var(--gold);
}

.video-container {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #000;
}

.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.3s ease;
}

.video-card:hover .video-iframe {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 165, 116, 0.1) 0%, rgba(184, 149, 106, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.video-info {
    padding: 25px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #faf9f6 100%);
}

.video-title {
    font-size: 18px;
    font-weight: bold;
    color: #8b4513;
    margin-bottom: 10px;
    line-height: 1.4;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.video-card:hover .video-title {
    color: var(--gold);
}

.video-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212, 165, 116, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.8);
}

.play-button:hover {
    background: rgba(212, 165, 116, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 20px solid white;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

.view-more-btn {
    display: block;
    margin: 50px auto 0;
    padding: 15px 40px;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(212, 165, 116, 0.4);
    background: linear-gradient(135deg, #e8c18a 0%, #c9a876 100%);
}

.decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.1);
    animation: float 6s ease-in-out infinite;
}

.decorative-circle:nth-child(1) {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.decorative-circle:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 3%;
    animation-delay: 2s;
}

.decorative-circle:nth-child(3) {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.video-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-gold);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.video-duration {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: bold;
    z-index: 5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .videos-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .videos-section {
        padding: 60px 15px;
    }
    
    .video-container {
        height: 250px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button::after {
        border-left: 15px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 200px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-title {
        font-size: 16px;
    }
}