/* Delta Sharm Page Styles */
.delta-sharm-wrapper {
    min-height: 100vh;
}

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=80');
      background: linear-gradient(135deg, #1e3c72 0%, #2a5298 50%, #3b79a3 100%);
    background-size: cover;
    background-position: center;
}

.page-header-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(135deg, rgb(30 60 114 / 31%) 0%, rgb(42 82 152 / 38%) 50%, rgb(59 121 163 / 7%) 100%);
    backdrop-filter: blur(1px);
}



.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 600;
    color: #ffd700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Info Section */
.info-section {
    padding: 80px 20px;
    background: #ffffff;
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a5298;
    margin-bottom: 30px;
}

.info-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a5298;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
}

/* Tabs */
.media-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 15px 40px;
    background: #ffffff;
    border: 2px solid #2a5298;
    color: #2a5298;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    background: #2a5298;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 60, 114, 0.3);
}

.tab-btn.active {
    background: linear-gradient(135deg, #2a5298 0%, #3b79a3 100%);
    color: #ffffff;
    border-color: #2a5298;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 60, 114, 0.7), rgba(255, 215, 0, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 4rem;
    color: #ffffff;
    animation: pulse 2s infinite;
}

.video-overlay i {
    font-size: 5rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content iframe {
    width: 90vw;
    height: 90vh;
    max-width: 1600px;
    max-height: 900px;
    min-width: 800px;
    min-height: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content video {
    width: 90vw;
    height: 90vh;
    max-width: 1600px;
    max-height: 900px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

#lightboxVideoContainer,
#lightboxImageContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxVideoContainer iframe,
#lightboxVideoContainer video {
    width: 90vw;
    height: 90vh;
    max-width: 1600px;
    max-height: 900px;
    min-width: 800px;
    min-height: 450px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .page-header {
        height: 300px;
        margin-top: 60px;
    }

    .info-section,
    .gallery-section {
        padding: 50px 15px;
    }

    .info-content {
        padding: 0 10px;
    }

    .info-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .info-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .section-title {
        font-size: 1.8rem;
        letter-spacing: 1px;
        text-align: center;
        display: block;
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        margin-bottom: 30px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .media-tabs {
        flex-direction: column;
        align-items: center;
    }

    .tab-btn {
        width: 200px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .lightbox-prev {
        left: 15px;
    }

    .lightbox-next {
        right: 15px;
    }

    .lightbox-content iframe,
    #lightboxVideoContainer iframe,
    #lightboxVideoContainer video {
        width: 95vw;
        height: 60vh;
        min-width: 300px;
        min-height: 200px;
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .info-section,
    .gallery-section {
        padding: 40px 10px;
    }

    .info-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .info-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        margin-bottom: 25px;
        padding: 0 10px;
    }

    .gallery-grid {
        gap: 12px;
    }

    .tab-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 0.85rem;
    }
}


