/* =========================================
   GALLERY PAGE
========================================= */


/* =========================================
   MAIN GALLERY SECTION
========================================= */

.gallery-section {

    min-height: calc(100vh - 80px);

    padding: 45px 20px 60px;

    background: #0f172a;

    display: flex;

    flex-direction: column;

    align-items: center;

    overflow: hidden;
}



/* =========================================
   GALLERY HEADING
========================================= */

.gallery-heading {

    text-align: center;

    margin-bottom: 25px;

}


.gallery-label {

    color: #38bdf8;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 8px;
}


.gallery-heading h1 {

    margin: 0;

    color: #f8fafc;

    font-size: 38px;

    font-weight: 700;

    line-height: 1.2;
}


.gallery-heading p {

    margin: 10px auto 0;

    max-width: 650px;

    color: #94a3b8;

    font-size: 14px;

    line-height: 1.6;
}



/* =========================================
   PHOTO AREA
========================================= */

.gallery-photo {

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    margin: 5px auto 0;
}



/* =========================================
   CIRCULAR PHOTO LINK
========================================= */

.photo-circle-link {

    display: block;

    width: 250px;

    height: 250px;

    padding: 6px;

    border-radius: 50%;

    background: #1e293b;

    border: 2px solid rgba(56, 189, 248, 0.45);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.45),
        0 0 25px rgba(56, 189, 248, 0.08);

    overflow: hidden;

    cursor: zoom-in;

    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}



/* =========================================
   PHOTO
========================================= */

.photo-circle {

    display: block;

    width: 100%;

    height: 100%;

    border-radius: 50%;

    object-fit: cover;

    object-position: center;

    transition:
        transform 0.4s ease,
        filter 0.3s ease;
}



/* =========================================
   HOVER EFFECT
========================================= */

.photo-circle-link:hover {

    transform: scale(1.04);

    border-color: #38bdf8;

    box-shadow:
        0 22px 50px rgba(0, 0, 0, 0.55),
        0 0 35px rgba(56, 189, 248, 0.18);
}


.photo-circle-link:hover .photo-circle {

    transform: scale(1.04);

    filter: brightness(1.05);
}



/* =========================================
   PHOTO INFORMATION
========================================= */

.photo-info {

    max-width: 650px;

    margin-top: 20px;

    text-align: center;
}


.photo-quote {

    margin: 0;

    color: #f8fafc;

    font-size: 18px;

    font-weight: 600;

    line-height: 1.6;
}


.photo-author {

    margin: 6px 0 0;

    color: #94a3b8;

    font-size: 14px;

    font-weight: 400;
}


.photo-location {

    margin: 5px 0 0;

    color: #64748b;

    font-size: 12px;

    letter-spacing: 0.5px;
}


.photo-hint {

    margin: 13px 0 0;

    color: #38bdf8;

    font-size: 12px;

    font-weight: 500;
}


.photo-hint i {

    margin-right: 5px;
}



/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {


    .gallery-section {

        min-height: calc(100vh - 70px);

        padding: 40px 15px 50px;

        overflow: visible;
    }


    .gallery-heading {

        margin-bottom: 25px;
    }


    .gallery-label {

        font-size: 11px;

        letter-spacing: 2px;
    }


    .gallery-heading h1 {

        font-size: 29px;
    }


    .gallery-heading p {

        font-size: 13px;

        max-width: 350px;
    }


    .photo-circle-link {

        width: 200px;

        height: 200px;

        padding: 5px;
    }


    .photo-quote {

        font-size: 16px;

        max-width: 350px;
    }


    .photo-author {

        font-size: 13px;
    }


    .photo-location {

        font-size: 11px;
    }


    .photo-hint {

        font-size: 11px;
    }

}



/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 400px) {


    .gallery-heading h1 {

        font-size: 25px;
    }


    .photo-circle-link {

        width: 175px;

        height: 175px;
    }


    .photo-quote {

        font-size: 15px;
    }

}