/* =========================================
   Premium Gallery Button
========================================= */

.view-gallery-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 55px;

    padding: 16px 34px;

    border-radius: 60px;

    text-decoration: none;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.4px;

    color: #111;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid rgba(255, 255, 255, 0.5);

    backdrop-filter: blur(16px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);

    transition: all 0.35s ease;
}

.view-gallery-btn:hover {
    transform: translateY(-4px);

    color: #111;

    background: rgba(255, 255, 255, 0.98);

    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}