/* =========================================================
   LCSF GALLERY ALBUM — DETAIL PAGE
========================================================= */


/* =========================================================
   ALBUM HERO
========================================================= */

.gallery-album-banner {
    position: relative;
    overflow: hidden;

    min-height: 470px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            135deg,
            rgba(23, 55, 95, .97),
            rgba(23, 111, 210, .90)
        );

    color: #ffffff;
}

.gallery-album-banner::before {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -170px;
    top: -230px;

    border-radius: 50%;

    background: rgba(255,255,255,.06);
}

.gallery-album-banner::after {
    content: "";

    position: absolute;

    width: 360px;
    height: 360px;

    left: -160px;
    bottom: -220px;

    border-radius: 50%;

    background: rgba(255,193,7,.08);
}


/* =========================================================
   HERO OVERLAY
========================================================= */

.gallery-album-banner-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(11,77,161,.25),
            rgba(47,109,246,.08)
        );

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.gallery-album-banner-content {
    position: relative;

    z-index: 2;

    max-width: 950px;

    margin: 0 auto;

    padding: 100px 20px 80px;

    text-align: center;
}


/* =========================================================
   HERO TAG
========================================================= */

.gallery-album-banner-content .section-tag {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    padding: 9px 20px;

    border-radius: 50px;

    background: rgba(255,255,255,.12);

    border: 1px solid rgba(255,255,255,.18);

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 1.7px;

    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
========================================================= */

.gallery-album-banner-content h1 {
    max-width: 950px;

    margin: 0 auto 28px;

    color: #ffffff;

    font-size: clamp(38px, 5vw, 64px);

    line-height: 1.12;

    font-weight: 800;

    text-shadow:
        0 3px 20px rgba(0,0,0,.15);
}


/* =========================================================
   HERO BREADCRUMB
========================================================= */

.gallery-album-breadcrumb {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    color: rgba(255,255,255,.72);

    font-size: 14px;

    font-weight: 600;
}

.gallery-album-breadcrumb a {
    color: #ffc107;

    text-decoration: none;

    transition: color .25s ease;
}

.gallery-album-breadcrumb a:hover {
    color: #ffffff;
}

.gallery-album-breadcrumb span {
    color: rgba(255,255,255,.65);
}


/* =========================================================
   ALBUM INFORMATION
========================================================= */

.gallery-album-info {
    position: relative;

    padding: 75px 0 65px;

    background: #ffffff;
}

.gallery-album-info-wrapper {
    display: grid;

    grid-template-columns:
        minmax(0, 1.5fr)
        minmax(320px, .8fr);

    gap: 60px;

    align-items: center;
}


/* =========================================================
   ALBUM HEADING
========================================================= */

.gallery-album-heading .section-tag {
    display: inline-flex;

    margin-bottom: 16px;

    padding: 8px 18px;

    border-radius: 50px;

    background: rgba(23,111,210,.08);

    color: #176fd2;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.gallery-album-heading h2 {
    margin: 0 0 20px;

    color: #17375f;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 800;
}

.gallery-album-heading p {
    max-width: 780px;

    margin: 0;

    color: #657d95;

    font-size: 17px;

    line-height: 1.85;
}


/* =========================================================
   ALBUM META
========================================================= */

.gallery-album-meta {
    display: flex;

    flex-direction: column;

    gap: 15px;

    padding: 25px;

    border: 1px solid #dbe7f3;

    border-radius: 20px;

    background: #f7faff;

    box-shadow:
        0 12px 35px rgba(12,42,82,.06);
}

.gallery-meta-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 15px 0;

    border-bottom: 1px solid #e3edf6;
}

.gallery-meta-item:last-child {
    border-bottom: none;
}

.gallery-meta-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(23,111,210,.10);

    color: #176fd2;

    font-size: 18px;
}

.gallery-meta-item small {
    display: block;

    margin-bottom: 5px;

    color: #7a8fa4;

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .8px;
}

.gallery-meta-item strong {
    display: block;

    color: #17375f;

    font-size: 15px;

    line-height: 1.4;
}


/* =========================================================
   PHOTO COLLECTION
========================================================= */

.gallery-album-photos {
    padding: 70px 0 90px;

    background: #f5f9fd;
}


/* =========================================================
   PHOTO GRID
========================================================= */

.gallery-album-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;
}


/* =========================================================
   PHOTO CARD
========================================================= */

.gallery-album-photo {
    overflow: hidden;

    border-radius: 18px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(12,42,82,.08);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.gallery-album-photo:hover {
    transform: translateY(-5px);

    box-shadow:
        0 18px 42px rgba(12,42,82,.13);
}


/* =========================================================
   PHOTO LINK
========================================================= */

.gallery-photo-link {
    display: block;

    text-decoration: none;
}


/* =========================================================
   PHOTO IMAGE
========================================================= */

.gallery-photo-image {
    position: relative;

    height: 280px;

    overflow: hidden;

    background: #edf3f9;
}

.gallery-photo-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform .5s ease;
}

.gallery-album-photo:hover
.gallery-photo-image img {
    transform: scale(1.06);
}


/* =========================================================
   PHOTO OVERLAY
========================================================= */

.gallery-photo-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    background: rgba(8,35,66,.52);

    opacity: 0;

    transition: opacity .3s ease;
}

.gallery-album-photo:hover
.gallery-photo-overlay {
    opacity: 1;
}

.gallery-photo-overlay span {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffc107;

    color: #17375f;

    font-size: 18px;

    transform: translateY(12px);

    transition: transform .3s ease;
}

.gallery-album-photo:hover
.gallery-photo-overlay span {
    transform: translateY(0);
}


/* =========================================================
   PHOTO NUMBER
========================================================= */

.gallery-photo-number {
    position: absolute;

    top: 14px;
    right: 14px;

    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(23,55,95,.82);

    color: #ffffff;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* =========================================================
   PHOTO CAPTION
========================================================= */

.gallery-photo-caption {
    padding: 17px 19px;

    color: #355779;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.55;
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.gallery-photo-placeholder {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #edf3f9;

    color: #176fd2;

    font-size: 42px;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.gallery-album-empty {
    padding: 80px 25px;

    text-align: center;

    border-radius: 20px;

    background: #ffffff;

    box-shadow:
        0 10px 30px rgba(12,42,82,.06);
}

.gallery-album-empty > i {
    display: block;

    margin-bottom: 18px;

    color: #176fd2;

    font-size: 48px;
}

.gallery-album-empty h3 {
    margin: 0 0 10px;

    color: #17375f;

    font-size: 26px;
}

.gallery-album-empty p {
    margin: 0 auto 25px;

    color: #657d95;

    line-height: 1.7;
}


/* =========================================================
   FOOTER NAVIGATION
========================================================= */

.gallery-album-footer {
    padding: 0 0 80px;

    background: #f5f9fd;

    text-align: center;
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1000px) {

    .gallery-album-banner {
        min-height: 420px;
    }

    .gallery-album-banner-content {
        padding: 80px 25px 70px;
    }

    .gallery-album-info-wrapper {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .gallery-album-meta {
        max-width: 650px;
    }

    .gallery-album-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 700px) {

    .gallery-album-banner {
        min-height: 390px;
    }

    .gallery-album-banner-content {
        padding: 70px 20px 60px;
    }

    .gallery-album-banner-content h1 {
        font-size: 34px;

        line-height: 1.18;
    }

    .gallery-album-breadcrumb {
        font-size: 12px;

        gap: 7px;
    }

    .gallery-album-info {
        padding: 55px 20px 45px;
    }

    .gallery-album-heading h2 {
        font-size: 32px;
    }

    .gallery-album-heading p {
        font-size: 15px;
    }

    .gallery-album-meta {
        padding: 18px;
    }

    .gallery-album-photos {
        padding: 50px 20px 65px;
    }

    .gallery-album-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .gallery-photo-image {
        height: 250px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .gallery-album-banner-content h1 {
        font-size: 29px;
    }

    .gallery-photo-image {
        height: 220px;
    }

}