/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet & Desktop - Large */
@media (max-width: 1400px) {
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-section h1 {
        font-size: 4rem;
    }
    
    .hero-section h2 {
        font-size: 1.6rem;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-section {
        min-height: 40vh;
    }
    
    .hero-section .container {
        padding: 80px 15px 40px;
    }
    
    .hero-section h1 {
        font-size: 3rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-section h2 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .section-special {
        padding: 30px 0 35px 0;
    }
    
    .section-special h2 {
        font-size: 1.6rem;
    }
    
    .section-special .lead {
        font-size: 1rem;
    }
    
    .section-special .social-icons a {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .section-dark {
        padding: 25px 0;
    }
    
    .gallery-nav-btn {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
    
    .gallery-nav-btn.left {
        left: 15px;
    }
    
    .gallery-nav-btn.right {
        right: 15px;
    }
    
    .sticky-header {
        padding: 15px 0;
    }
    
    .sticky-header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: center;
        gap: 15px;
        padding: 0 15px;
    }
    
    .sticky-header .header-info {
        align-items: flex-start;
        flex: 0 0 auto;
        transform: none !important;
    }
    
    .sticky-header h1 {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .sticky-header h2 {
        font-size: 0.8rem;
        text-align: left;
    }
    
    .sticky-header .header-social {
        flex-direction: row;
        gap: 0;
        transform: none !important;
    }
    
    .sticky-header .header-social p {
        display: none;
    }
    
    .sticky-header .social-icons {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        gap: 5px;
        max-width: 180px;
    }
    
    .sticky-header .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        margin: 0;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-section {
        min-height: 35vh;
    }
    
    .hero-section .container {
        padding: 60px 15px 30px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-section h2 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .section-special {
        padding: 25px 0 30px 0;
    }
    
    .section-special h2 {
        font-size: 1.4rem;
    }
    
    .section-special .lead {
        font-size: 0.95rem;
    }
    
    .section-special .social-icons {
        gap: 5px;
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .section-special .social-icons a {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .section-dark {
        padding: 20px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .video-modal {
        padding: 10px !important;
    }
    
    .modal-content {
        max-height: 90vh !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    .modal-video-container {
        flex: 0 1 auto !important;
    }
    
    .modal-player {
        padding-bottom: 56.25% !important;
    }
    
    .modal-info {
        padding: 15px !important;
        flex: 0 1 auto !important;
        overflow-y: auto !important;
    }
    
    .modal-info h3 {
        font-size: 1.2rem !important;
        margin-bottom: 8px !important;
    }
    
    .modal-info p {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }
    
    .modal-close {
        width: 40px !important;
        height: 40px !important;
        top: 10px !important;
        right: 10px !important;
    }
    
    .social-icons {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .photo-gallery-container {
        max-width: 100%;
        padding: 0 10px;
    }
    
    .photo-gallery {
        padding: 20px 0;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 60px, black calc(100% - 60px), transparent 100%);
    }
    
    .photo-item {
        flex: 0 0 240px;
        height: 135px;
    }
    
    .gallery-nav-btn {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    
    .gallery-nav-btn.left {
        left: 10px;
    }
    
    .gallery-nav-btn.right {
        right: 10px;
    }
}
