/* Travel Page Styles */

.travel-hero {
    padding: 5rem 0 3rem 0;
    background: #A8DADC;
    color: #154051;
    text-align: center;
}

.travel-hero-inner h1 {
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
}

.travel-hero-inner p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.album-card {
    background: #c2e9fb;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.album-cover img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.album-info {
    padding: 1rem 1.2rem;
    background: #c2e9fb;
}

.album-info h3 {
    margin: 0 0 0.4rem 0;
    color: #154051;
}

.album-info p {
    margin: 0;
    color: var(--text-muted);
}

.album-viewer {
    margin-top: 3rem;
    padding: 2rem;
    background: #c2e9fb;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-soft);
}

.album-viewer.hidden {
    display: none;
}

.close-album {
    background: #82CCDD;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    cursor: pointer;
    margin-bottom: 1rem;
}

/* Photos inside album */

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.photo-grid figure {
    margin: 0;
}

.photo-grid img {
    width: 100%;
    border-radius: var(--radius-md);
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.photo-grid figcaption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* LIGHTBOX */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.lightbox.hidden {
    display: none;
}

.lightbox-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

#lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

#lightbox-caption {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 1rem;
    opacity: 0.9;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 1.4rem;
    padding: 6px 12px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: #fff;
    font-size: 2.4rem;
    padding: 6px 14px;
    border-radius: 50%;
    cursor: pointer;
}

.lightbox-prev { left: 15px; }
.lightbox-next { right: 15px; }

.lightbox-inner {
    touch-action: pan-y;
}


.photo-instagram-cta {
    background: linear-gradient(135deg, #85c6e0, #1f607a); 


}
