body {
    background: linear-gradient(135deg, #bc7c7152, #593029c9);
    overflow: hidden;
    color: white;
}

.exhibition-container {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.sections-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
}

.exhibition-section {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7) grayscale(100%);
    opacity: 0.3;
}



.list-content h1 {
    font-size: 2rem;
    margin: 0.3rem 0 0.8rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(229, 84, 59, 0.8);
}

.list-content p {
    font-size: 1rem;
    margin: 0.5rem 0 0;
    color: white;
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(229, 84, 59, 0.8);
}


.list-content .content-note {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.navigation-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-btn {
    padding: 0.6rem 1.2rem;
    background: rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: bold;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(229, 84, 59, 0.6);
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(229, 84, 59, 0.8);
    cursor: pointer;
    flex: 1 1 auto;
    min-width: 120px;
    max-width: 200px;
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.05);
    background: rgba(0, 0, 0, 0.25);
}

@media (max-height: 400px) {
    .list-content h1 {
        font-size: 1rem;
    }

    .list-content p {
        font-size: 0.75rem;
    }

    .nav-btn {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}






