* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: EB Garamond;
    background: #3b2f2f; /* Darker background */
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
}

.header {
    padding: 50px;
    text-align: center;
    font-family: Arial, sans serif;
    background: #fdf6e3; /* light tan*/
    margin-bottom: 20px;
}

.content-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
}

.main-content {
    flex: 3;
}

.sidebar {
    flex: 1;
}

.card {
    background-color: #fdf6e3; /* Light tan cards */
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.realimg {
    background-size: cover;      /* Ensures the image covers the container */
    background-position: center; /* Centers the background image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    width: 100%;                  /* Ensures the element takes up full width */
    height: 200px;               /* You can set this based on your needs */
}

iframe {
    max-width: 100%;
    height: auto;
}

/* Blog content styles */
.blog-content {
    margin: 20px 0;
}

.hidden {
    display: none;
}

#seeMoreBtn {
    font-family: EB Garamond;
    background-color: #d0a67d; /* Tan button */
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-bottom: 1rem;
    transition: background-color 0.3s ease;
}

#seeMoreBtn:hover {
    background-color: #b68c66; /* Darker tan on hover */
}

.scroll-content {
    background-color: #f8f0e8; /* Light tan scroll content */
    border-radius: 8px;
    padding: 1rem;
}

.track-list {
    max-height: 500px;
    overflow-y: auto;
    padding-right: 1rem;
    scrollbar-width: thin;
    scrollbar-color: #d0a67d #f2e8dc; /* Tan scrollbar */
}

.track-list::-webkit-scrollbar {
    width: 8px;
}

.track-list::-webkit-scrollbar-track {
    background: #f2e8dc; /* Lighter tan */
    border-radius: 4px;
}

.track-list::-webkit-scrollbar-thumb {
    background-color: #d0a67d; /* Tan scrollbar thumb */
    border-radius: 4px;
}

.track-item {
    padding: 1rem;
    border-bottom: 1px solid #e6d8c6; /* Light tan border */
}

.track-item:last-child {
    border-bottom: none;
}

.footer {
    padding: 1.5rem;
    text-align: center;
    background: #f2e8dc; /* Light tan footer */
    margin-top: 1.5rem;
    border-radius: 8px;
}

/* Responsive layout */
@media screen and (max-width: 800px) {
    .content-wrapper {
        flex-direction: column;
    }

    .main-content,
    .sidebar {
        width: 100%;
    }

    .track-list {
        max-height: 400px;
    }
    
    .track-item {
        padding: 0.8rem;
    }
}