@font-face {
    font-family: 'Dunbar';
    src: url('static/fonts/dunbar.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    padding: 0;
    background: #f1f1f1;
    color: #222;
    height: 100vh;
    box-sizing: border-box;
}

.container {
    display: flex;
    height: 100vh;
}

.sidebar {
    background: #3854a1;
    color: #fff;
    width: 320px;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 0 0;
    box-sizing: border-box;
    position: relative;
    height: 100vh;
}

.sidebar-logo {
    width: 180px;
    margin-bottom: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.sidebar-nav {
    position: absolute;
    left: 40px;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 40px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.sidebar-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    font-family: 'Dunbar', Arial, sans-serif;
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: #f1f1f1;
    cursor: pointer;
    transition: color 0.2s;
}

.sidebar-nav li a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.2s;
    font-family: 'Dunbar', Arial, sans-serif;
    font-size: 1.4rem;
}

.sidebar-nav li.active,
.sidebar-nav li.active a {
    color: #273168;
    font-weight: bold;
    text-decoration: none;
}

.sidebar-nav li a:hover {
    color: #a9b5d8;
    text-decoration: none;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.carousel-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.7);
    opacity: 1;
    transition: opacity 1s ease;
}

.carousel-bg.fade-out {
    opacity: 0;
}

.carousel-bg-wrapper {
    position: relative;
    width: 100%;
    max-width: 60vw;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    background: #3854a1;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(40, 60, 120, 0.08);
}

.carousel-arrow.left {
    left: 10vw;
}

.carousel-arrow.right {
    right: 10vw;
}

.carousel-arrow:hover {
    background: #273168;
    color: #a9b5d8;
}

.main-icon-foreground {
    position: relative;
    z-index: 3;
    max-width: 60vw;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    pointer-events: none;
}

.footer-links {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
    z-index: 5;
}

.footer-links a {
    color: #a9b5d8;
    text-decoration: none;
    font-family: 'Dunbar', Arial, sans-serif;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #3854a1;
}

/* --- Artist List Page Styles --- */
.artist-list-main {
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 80px;
    padding-top: 40px;
    height: 100vh;
    background: #f1f1f1;
}

.artist-list-wrapper {
    margin-top: 0;
}

.artist-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.artist-list li {
    margin-bottom: 18px;
}

.artist-list a {
    font-family: 'Minion Pro', 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 2.6rem;
    color: #3854a1;
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.01em;
}

.artist-list a:hover {
    color: #273168;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .artist-list-main {
        padding-left: 32px;
        padding-top: 24px;
    }
    .artist-list a {
        font-size: 2rem;
    }
} 