.section-header {
    background-color: #2c549e;
    width: 100%;
    height: 96px;
    display: block;
    margin: 0 auto;
    image-rendering: pixelated;
}

.section-header img {
    width: 600px;
    height: 96px;
    image-rendering: pixelated;
}

.album-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    font-family: editundo, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: #e3e6ff;
    text-shadow: #000000 -1px 1px;
    margin: 0;
    transition: all 0.3s ease;
    text-align: center;
    background-color: rgba(26, 28, 44, 0.7);
    padding: 5px 0;
}

#album-icon {
    padding-top: 20px;
    width: 64px;
    height: 64px;
    font-size: 24px;
    color: #e3e6ff;
    margin: 0 0 10px 0;
}

#album-description {
    padding-top: 20px;
    font-size: 16px;
    color: #e3e6ff;
    margin: 0;
}

#gallery-albums {
    background-color: #1a1c2c;
    padding: 20px 0;
}

.album-grid, .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}


.album-item, .gallery-item {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.album-image, .gallery-image {
    width: 200px;
    height: 200px;
    object-fit: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.album-item:hover .album-title {
    color: #ffcd75;
    background-color: #2c549e;
}

#image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#image-viewer.hidden {
    display: none;
}

.overlay-content {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: relative;
}

.image-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 80%;
    max-height: 80%;
}

#full-image {
    max-width: 100%;
    max-height: 100%; /* Adjust based on your needs */
    padding-bottom: 30%;
    object-fit: contain;
}

.image-info {
    
    color: white;
    text-shadow: -1px 1px #1a1c2c;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    text-align: center;
    width: 100%;
    height: 100%;
}

#image-title {
    margin: 0 0 10px 0;
    font-size: 1.2em;
}

#image-description {
    margin: 0;
    font-size: 16px;
    text-shadow: -1px 1px #1a1c2c;
}

.viewer-button {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    position: absolute;
    z-index: 1001;
}

.viewer-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

#close-viewer {
    width: 64px;
    height:  64px;
    top: 20px;
    right: 20px;
    border: dotted #e3e6ff;
}

#prev-image {
    width: 64px;
    height:  64px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: dotted #e3e6ff;
}

#next-image {
    width: 64px;
    height: 64px;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: dotted #e3e6ff;
}

#gallery-scenes {
    background-color: #1a1c2c;
    padding: 20px 0;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-banner-item {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-banner-image {
    width: 200px;
    height: 200px;
    object-fit: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}

.gallery-item {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gallery-image {
    width: 200px;
    height: 200px;
    object-fit: none;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
    transition: transform 0.3s ease, border 0.3s ease;
    border: 1px solid transparent;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.05);
}