/* ==============================================
   File: assets/css/themes.css
   BLACK & WHITE THEME - PERMANENT
   ============================================== */

/* ==============================================
   BASE STYLES
   ============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #FFFFFF !important;
    color: #1A1A1A !important;
    line-height: 1.6;
    padding-top: 76px;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

/* ==============================================
   GALLERY THUMBNAILS
   ============================================== */
.gallery-thumb {
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
    overflow: hidden;
    opacity: 0.6;
    border: 2px solid transparent;
}

.gallery-thumb.active,
.gallery-thumb:hover {
    opacity: 1;
    transform: scale(1.05);
    border-color: #FF0000;
}

/* ==============================================
   VIDEO SECTION
   ============================================== */
.home-video-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #000000;
}

.home-video-section .video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.home-video-section .video-container video,
.home-video-section .video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.home-video-section .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    transition: background 0.3s ease;
    cursor: pointer;
    z-index: 2;
}

.home-video-section .video-overlay:hover {
    background: rgba(0, 0, 0, 0.7);
}

.home-video-section .video-overlay .play-icon {
    font-size: 5rem;
    color: #FF0000;
    opacity: 0.9;
    transition: transform 0.3s ease;
    text-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.home-video-section .video-overlay:hover .play-icon {
    transform: scale(1.1);
}

.home-video-section .video-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.home-video-section .video-overlay p {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.home-video-section .video-overlay .btn-play {
    margin-top: 20px;
    padding: 15px 40px;
    border-radius: 50px;
    background: #FF0000;
    color: white;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.home-video-section .video-overlay .btn-play:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,0,0,0.3);
}

.home-video-section.playing .video-overlay {
    opacity: 0;
    pointer-events: none;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 768px) {
    .home-video-section .video-overlay h2 {
        font-size: 1.8rem;
    }
    .home-video-section .video-overlay p {
        font-size: 1rem;
    }
    .home-video-section .video-overlay .play-icon {
        font-size: 3.5rem;
    }
    .home-video-section {
        padding: 40px 0;
    }
}