/* Auto-extracted from gallery.blade.php */

/* ----- block 1 ----- */
@media (min-width: 992px) {
            .navbar-dark {
                position: relative;
            }
        }

        body {
            text-transform: initial;
        }

        .language_dropdown {
            background: transparent !important;
            border: none;
            cursor: pointer;
            margin-top: -3px !important;
            color: var(--light) !important;
            text-transform: uppercase;
            font-weight: 600;
            outline: none;
            transition: .5s;
        }

        .dropdown-toggle::after {
            display: none !important;
        }

        .dropdown-item {
            color: #fff;
            font-size: 18px;
            text-overflow: ellipsis;
        }

        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            text-align: center;
            color: #fff;
            background: rgb(1 3 31 / 50%);
            padding-top: 17%;
            z-index: 22222;
        }

        @media (max-width: 460px) {
            .language_dropdown {
                color: #000 !important;
                background: transparent !important;
            }

            .loader {
                padding-top: 90%;
            }
        }

        .gallery-section-title {
            color: var(--primary);
            font-weight: 600;
            letter-spacing: 1px;
        }

        .gallery-section-heading {
            color: #fff;
            margin-bottom: 2rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px;
        }

        @media (max-width: 991px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }
        }

        .gallery-card {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            background: #111;
            cursor: pointer;
            aspect-ratio: 4 / 3;
            box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 26px rgba(0, 0, 0, 0.55);
        }

        .gallery-card img,
        .gallery-card video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }

        .gallery-card:hover img {
            transform: scale(1.06);
        }

        .gallery-card .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.55) 100%);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 14px;
            opacity: 0;
            transition: opacity .3s ease;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-card .gallery-overlay i {
            color: #fff;
            font-size: 1.4rem;
            background: var(--primary);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .video-card .play-badge {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none;
        }

        .video-card .play-badge i {
            font-size: 2.2rem;
            color: #fff;
            background: rgba(0, 0, 0, 0.55);
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.85);
            transition: transform .3s ease, background .3s ease;
        }

        .video-card:hover .play-badge i {
            transform: scale(1.08);
            background: var(--primary);
        }

        .gallery-empty {
            text-align: center;
            color: #aaa;
            padding: 3rem 1rem;
            border: 1px dashed #444;
            border-radius: 12px;
        }

        .gallery-modal .modal-content {
            background: #000;
            border: 0;
            border-radius: 0;
            height: 100vh;
        }

        .gallery-modal .modal-body {
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #000;
        }

        .gallery-modal .modal-body img,
        .gallery-modal .modal-body video {
            width: 100%;
            height: 100%;
            max-width: 100vw;
            max-height: 100vh;
            object-fit: contain;
            background: #000;
            display: block;
        }

        .gallery-modal .btn-close {
            position: fixed;
            top: 18px;
            right: 18px;
            z-index: 1080;
            background-color: rgba(255, 255, 255, 0.9);
            opacity: 1;
            border-radius: 50%;
            width: 42px;
            height: 42px;
            padding: 0.5rem;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
        }

        .gallery-modal .btn-close:hover {
            background-color: #fff;
        }

        #gallery-page-hero {
            min-height: 220px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        #gallery-page-hero h1 {
            color: #fff;
        }
