/* Video styling for seamless experience */
video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border: none;
    outline: none;
    background: transparent;
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
}

.autoplay-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    user-select: none;
}

@media (max-width: 768px) {
    .video-container {
        margin-bottom: 1rem;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Responsive image styling */
img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 4px;
}

.logo{
    width: 100px;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    background-image: linear-gradient(rgba(240, 240, 240, 0.5) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(240, 240, 240, 0.5) 1px, transparent 1px);
    background-size: 20px 20px;
}

.container {
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 100vh;
}

/* Sidebar styles */
.sidebar {
    background-color: #f7f7f7;
    background-image: radial-gradient(#e0e0e0 1px, transparent 1px);
    background-size: 10px 10px;
    padding: 2rem 1rem;
    border-right: 1px solid #eaeaea;
    overflow-y: auto;
    position: sticky;
    top: 0;
    height: 100vh;
}

.sidebar-header {
    margin-bottom: 1.5rem;
}

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

/* Image placeholder styles */
.image-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    color: #666;
}

.image-placeholder p {
    margin: 0;
    font-style: italic;
}

.featured-artists {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
}

.artist-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 1.5rem;
    width: 30%;
    text-align: center;
}

.timeline-placeholder {
    background-color: #f0f0f0;
    border: 1px dashed #ccc;
    border-radius: 4px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    height: 120px;
    position: relative;
}

.timeline-placeholder::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #ccc;
    z-index: 1;
}

.timeline-placeholder p {
    position: relative;
    z-index: 2;
    background-color: #f0f0f0;
    display: inline-block;
    padding: 0 1rem;
    margin: 0;
    font-style: italic;
}

.sidebar-nav ul li {
    margin-bottom: 0.5rem;
}

.sidebar-nav ul li a {
    color: #555;
    text-decoration: none;
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
}

.sidebar-nav ul li a:hover {
    background-color: #efefef;
}

.sidebar-nav ul li a.active {
    background-color: #e0e0e0;
    font-weight: bold;
    color: #222;
}

.sidebar-nav ul ul {
    margin-left: 1.5rem;
    margin-top: 0.5rem;
}

/* Content styles */
.content {
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.main-header {
    margin-bottom: 3rem;
    text-align: center;
}

.main-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
}

.tagline {
    font-size: 1.5rem;
    color: #444;
    font-style: italic;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    font-weight: 300;
}

.section {
    margin-bottom: 4rem;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eaeaea;
}

.subsection {
    margin-bottom: 2rem;
}

.subsection h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

li {
    margin-bottom: 0.5rem;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.2);
}

/* Hide scrollbar for Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.1) transparent;
}

/* Menu toggle button */
.menu-toggle {
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 101;
    background: #f7f7f7;
    border: none;
    border-radius: 4px;
    width: 44px;
    height: 44px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #555;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .sidebar.active {
        display: block;
        position: fixed;
        width: 100%;
        z-index: 100;
        height: 100vh;
        top: 0;
        left: 0;
        overflow-y: auto;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .content {
        padding-top: 80px;
    }
}