/* _LARGE.CSS - Detailed Image View Styles */

/* THE BIG IMAGE */
.previewFullImage {
    max-width: 100%;
    height: auto;
    border: 1px solid #444;
    display: block;
    margin: 10px auto;
	max-width: 100%;
    max-height: 80vh; /* This prevents vertical images from being taller than the screen */
    width: auto;      /* Keeps the aspect ratio correct */
    height: auto;
}

/* THE CAPTION */
#detailCaption {
    color: #ccc;
    font-size: 18px;
    line-height: 1.2;
    padding: 8px;
    text-align: left;
}

/* NAVIGATION (Previous | Index | Next) - CENTERED */
.detailNav {
    width: 100%;
    padding: 6px 0;
}

.detailNav ul {
    list-style: none;
    display: flex;
    justify-content: center; 
    gap: 30px; 
}

/* Targets the plain text like "Glacier Bay Explorer" */
.detailNav li {
    font-size: 22px; 
    color: #888;
}

/* Targets the actual links */
.detailNav a {
    color: #fff;
    font-size: 22px;
    text-decoration: underline;
}

/* MOBILE REFINEMENTS */
@media (max-width: 600px) {
    /* Set both the links and the footer text to 14px on mobile */
    .detailNav a, .detailNav li, #detailCaption {
        font-size: 14px;
    }
    .detailNav ul {
        gap: 20px;
    }
}