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

html {
    scroll-behavior: smooth;
}


body {
    font-family: 'Spectral', serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background-color: transparent;
    color: white;
    padding: 4.5rem 0;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.tibetan-text {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 0.8rem;
    color: white;
    opacity: 0.9;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    width: 100%;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}


.logo img {
    height: 70px;
    width: auto;
}

.nav-left {
    display: flex;
    list-style: none;
    gap: 5rem;
    position: absolute;
    left: 0;
    align-items: center;
    height: 100%;
}

.nav-right {
    display: flex;
    list-style: none;
    gap: 5rem;
    position: absolute;
    right: 0;
    align-items: center;
    height: 100%;
}

.nav-left a,
.nav-right a {
    color: white;
    text-decoration: none;
    font-weight: 300;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: #ccc;
}

.nav-left a.active,
.nav-right a.active {
    text-decoration: underline;
    text-underline-offset: 4px;
}


main {
    margin-top: 0;
}

.hero {
    background-image: url('img/homepage.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 0;
    width: 100%;
    height: 56.25vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.5rem;
    font-weight: 300;
}

section {
    padding: 4rem 0;
    scroll-snap-align: start;
}

.about {
    background-color: white;
}

.tour {
    background-color: #f8f8f8;
}

.music {
    background-color: white;
}

.contact {
    background-color: #8a0000;
    color: white;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.about-content,
.tour-dates,
.albums,
.contact-info {
    text-align: center;
    font-size: 1.1rem;
}

footer {
    background-image: url('img/footer.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 6rem 0;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.get-in-touch-btn {
    background-color: #8a0000;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.get-in-touch-btn:hover {
    background-color: #660000;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: white;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #8a0000;
}

.social-icon svg {
    width: 24px;
    height: 24px;
}

.copyright {
    margin: 0;
    font-size: 0.9rem;
    color: #ccc;
}

.about-preview {
    background-color: white;
    padding: 4rem 0;
}


.about-preview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-text h2 {
    font-weight: 400;
    color: #8a0000;
    margin-bottom: 2rem;
    text-align: left;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 8px;
}

.upcoming-dates {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.upcoming-dates h2 {
    text-align: center;
    color: #8a0000;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.upcoming-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.event-card {
    background: white;
    border: 2px solid #8a0000;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-date {
    color: #8a0000;
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.event-venue {
    color: #8a0000;
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-time {
    color: #8a0000;
    font-size: 1.2rem;
    font-weight: 300;
}

.see-full-schedule {
    text-align: center;
    margin-top: 3rem;
}

.schedule-link {
    color: #8a0000;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.schedule-link:hover {
    color: #660000;
}

.music-preview {
    background-image: url('img/album-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 4rem 0;
    text-align: center;
    position: relative;
}

.music-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

.music-preview .container {
    position: relative;
    z-index: 2;
}

.music-preview h2 {
    font-weight: 400;
    color: #8a0000;
    margin-bottom: 3rem;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.album-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.album-card:hover {
    transform: translateY(-5px);
}

.album-cover {
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 180px;
    width: 180px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
}

.album-card h3 {
    color: #8a0000;
    font-size: 1.2rem;
    font-weight: 400;
}

.all-music-link {
    text-align: center;
    margin-top: 3rem;
}

.music-link {
    color: #8a0000;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.music-link:hover {
    color: #660000;
}

.contact-preview {
    background-color: #8a0000;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.contact-preview-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-preview-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-preview .btn {
    background-color: white;
    color: #8a0000;
}

.contact-preview .btn:hover {
    background-color: #f0f0f0;
}

.album-detail {
    padding: 4rem 0;
    background-color: white;
}

.album-detail-content {
    max-width: 1000px;
    margin: 0 auto;
}

.album-detail-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.album-detail-cover .album-placeholder {
    background-color: #f0f0f0;
    height: 300px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    font-size: 1.2rem;
}

.album-detail-info h1 {
    color: #8a0000;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.album-detail-info .album-year {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.album-detail-info .album-description {
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.album-actions {
    margin-top: 2rem;
}

.album-songs {
    margin-top: 3rem;
}

.album-songs h3 {
    color: #8a0000;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.song-detail {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.song-header h4 {
    color: #8a0000;
    font-size: 1.3rem;
    flex-grow: 1;
}

.song-duration {
    color: #666;
    font-size: 0.9rem;
}

.song-listen-btn {
    background-color: #8a0000;
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.song-listen-btn:hover {
    background-color: #660000;
}

.song-lyrics h5 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.song-lyrics pre {
    font-family: inherit;
    line-height: 1.6;
    white-space: pre-wrap;
    color: #555;
    background-color: white;
    padding: 1.5rem;
    border-radius: 4px;
    border-left: 4px solid #8a0000;
}

@media (max-width: 768px) {
    .album-detail-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .album-detail-cover .album-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .song-header {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .song-header h4 {
        margin-bottom: 0.5rem;
    }
}

.albums-section {
    background-image: url('img/album-section.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 0;
    width: 100%;
    height: 56.25vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.albums-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.albums-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 2;
}

.albums-section h2 {
    color: white;
    text-align: center;
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 3rem;
}

.albums-section .albums-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.albums-section .album-card {
    text-align: center;
}

.albums-section .album-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.albums-section .album-link:hover {
    transform: translateY(-5px);
}

.albums-section .album-cover {
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 200px;
    width: 200px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1rem;
}

.albums-section .album-card h3 {
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
}

.albums-section .all-music-link {
    text-align: center;
    margin-top: 2rem;
}

.albums-section .music-link {
    color: white;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.albums-section .music-link:hover {
    color: #ccc;
}

.nav-left a.active,
.nav-right a.active {
    color: #ccc;
}

.page-main {
    margin-top: 0;
}

.page-header {
    background-color: #8a0000;
    color: white;
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
}

.about-hero {
    background-image: url('img/about_page_bg.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.music-hero {
    background-image: url('img/music_page_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.tour-hero {
    background-image: url('img/tour_page_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.merch-hero {
    background-image: url('img/merch-page_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.contact-hero {
    background-image: url('img/contact_page_bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 40vw;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* About Page Sections */
.about-intro {
    background-color: white;
    padding: 4rem 0;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.intro-text h2 {
    color: #8a0000;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.photo-credit {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.early-life {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.life-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.career-highlights {
    background-color: white;
    padding: 4rem 0;
}

.career-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.discography {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.disco-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.media-work {
    background-color: white;
    padding: 4rem 0;
}

.media-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.children-music {
    background-color: #f8f8f8;
    padding: 4rem 0;
}

.children-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.recent-achievements {
    background-color: white;
    padding: 4rem 0;
}

.achievements-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Common styles for all about sections */
.life-text h2, 
.career-text h2, 
.disco-text h2, 
.media-text h2, 
.children-text h2, 
.achievements-text h2 {
    color: #8a0000;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.life-text p, 
.career-text p, 
.disco-text p, 
.media-text p, 
.children-text p, 
.achievements-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    background-color: #f0f0f0;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #666;
    font-size: 1.1rem;
    text-align: center;
}

.life-image .image-placeholder,
.career-image .image-placeholder,
.disco-image .image-placeholder,
.media-image .image-placeholder,
.children-image .image-placeholder,
.achievements-image .image-placeholder {
    width: 100%;
    min-height: 250px;
}

.tour-intro {
    text-align: center;
    margin: 2rem 0 3rem;
    font-size: 1.2rem;
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 2rem;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
    transition: background-color 0.3s ease;
}

.tour-item:hover {
    background-color: #f9f9f9;
}

.tour-date {
    text-align: left;
    color: #333;
}

.tour-date .date-text {
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
}

.tour-details .venue-name {
    margin: 0 0 0.5rem 0;
    color: #333;
    font-size: 1.1rem;
    font-weight: 400;
}

.tour-details .venue-location {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

.tour-action {
    text-align: right;
}

.buy-tickets-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    color: #333;
    text-decoration: none;
    border: 1px solid #333;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.buy-tickets-btn:hover {
    background-color: #333;
    color: white;
}

.tour-item:first-child {
    border-top: 1px solid #ddd;
}

.tour-item:last-child {
    border-bottom: 1px solid #ddd;
}

.booking-info {
    text-align: center;
    margin: 4rem 0 2rem;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.booking-info h3 {
    color: #8a0000;
    margin-bottom: 1rem;
}

.albums-intro {
    text-align: center;
    margin: 2rem 0 3rem;
    font-size: 1.2rem;
}

/* Filter Styles */
.tour-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.album-filters {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.tour-filters select, .album-filters select {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    color: #333;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.3s ease;
    min-width: 200px;
}

.tour-filters select:hover, .album-filters select:hover {
    border-color: #999;
}

.tour-filters select:focus, .album-filters select:focus {
    outline: none;
    border-color: #8a0000;
    box-shadow: 0 0 0 2px rgba(138, 0, 0, 0.1);
}

.albums-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin: 3rem auto;
    max-width: 1200px;
}

.album-item {
    display: flex;
    gap: 3rem;
    background-color: white;
    padding: 2rem 0;
    border-bottom: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

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


.album-cover-left {
    flex-shrink: 0;
    width: 300px;
}

.album-image {
    width: 300px;
    height: 300px;
    background-color: #f0f0f0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.1rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.album-image:hover {
    opacity: 0.9;
}

.album-info-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.album-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
    text-align: left;
}

.album-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #333;
}

.album-title a {
    color: inherit;
    text-decoration: none;
}

.album-title a:hover {
    text-decoration: underline;
}

.album-artist {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.25rem;
}

.album-year {
    font-size: 1rem;
    color: #999;
    margin: 0;
}


.songs-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.song-row {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    position: relative;
}

.song-row:hover {
    background-color: #f8f8f8;
}

.song-info {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1rem;
}

.play-icon {
    font-size: 0.8rem;
    color: #666;
}

.song-title {
    color: #333;
    font-weight: 500;
}

.song-duration {
    color: #999;
    font-size: 0.9rem;
    margin-right: 1rem;
}

.listen-now-btn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.listen-now-btn:hover {
    background-color: #555;
}

/* Album Details Hero Section */
.album-detail-hero {
    background-image: url('img/album-details-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 28.125vw;
    max-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Album Details Page Styles */
.song-detail-row {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.song-detail-row:last-child {
    border-bottom: none;
}

.song-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.song-detail-header .song-info {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex: 1;
}

.song-detail-header .song-title {
    font-weight: 500;
    color: #333;
}

.song-detail-header .song-duration {
    color: #999;
    font-size: 0.9rem;
}

.song-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.show-lyrics-btn {
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    transition: all 0.3s ease;
}

.show-lyrics-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.song-detail-header .listen-now-btn {
    position: static;
    opacity: 1;
    visibility: visible;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.song-lyrics {
    margin-top: 1rem;
    padding: 1rem;
    background-color: #f8f8f8;
    border-radius: 4px;
}

.song-lyrics pre {
    font-family: inherit;
    line-height: 1.6;
    white-space: pre-wrap;
    color: #555;
    margin: 0;
}

.album-content {
    padding: 1.5rem;
    width: 100%;
}

.album-name {
    color: #333;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-align: left;
}

.album-year {
    color: #666;
    margin-bottom: 1rem;
}

.album-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #666;
    font-size: 1rem;
}

.songs-list {
    margin-bottom: 1.5rem;
}

.songs-list h4 {
    color: #8a0000;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.song-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

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

.song-title {
    font-weight: 500;
    flex-grow: 1;
}

.song-duration {
    color: #666;
    font-size: 0.9rem;
    margin: 0 1rem;
}

.song-link {
    color: #8a0000;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid #8a0000;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.song-link:hover {
    background-color: #8a0000;
    color: white;
}

.more-details-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #333;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
    text-align: center;
}

.more-details-btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.streaming-platforms {
    text-align: center;
    margin: 4rem 0 2rem;
}

.streaming-platforms h3 {
    color: #8a0000;
    margin-bottom: 1.5rem;
}

.platforms {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.platform-link {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.platform-link:hover {
    background-color: #8a0000;
    color: white;
    border-color: #8a0000;
}

.contact-simple {
    max-width: 600px;
    margin: 0 auto;
    padding: 1rem 2rem;
    text-align: left;
}

.contact-simple h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.booking-manager {
    margin-bottom: 3rem;
}

.booking-title {
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.2rem;
    font-weight: 700;
}

.manager-name {
    font-size: 2rem;
    color: #8a0000;
    margin-bottom: 0rem;
    font-weight: 400;
    line-height: 1;
    text-align: left;
}

.email {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.contact-numbers {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.contact-column {
    flex: 1;
}

.contact-label {
    font-size: 1rem;
    color: #8a0000;
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.contact-number {
    font-size: 1rem;
    color: #333;
    margin: 0;
}

.booking-notice {
    font-size: 1rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
}

.booking-notice p {
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 3rem 0;
}

.contact-info h2, .contact-form h2, .contact-info-centered h2 {
    color: #8a0000;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0.25rem 0;
    color: #666;
}

.contact-item a {
    color: #8a0000;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 3rem;
}

.social-links h3 {
    color: #8a0000;
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: #666;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #8a0000;
    color: white;
}

/* Hamburger Menu Base Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}
.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: all 0.3s ease;
}
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    display: none;
    justify-content: center;
    align-items: center;
}
.mobile-nav-menu {
    text-align: center;
}
.mobile-nav-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-menu li {
    margin: 2rem 0;
}
.mobile-nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 300;
    transition: color 0.3s ease;
}
.mobile-nav-menu a:hover,
.mobile-nav-menu a.active {
    color: #ccc;
}
.hamburger-menu.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 1200px) {
    .text-content {
        padding: 2rem 0;
    }

    .text-content h2 {
        font-size: 2rem;
    }

    .gallery-section {
        margin-top: 2rem;
    }

    .gallery-section h3 {
        font-size: 1.5rem;
    }

    .external {
        height: 80vh;
    }

    .horizontal-scroll-wrapper {
        width: 100vh;
        transform: rotate(-90deg) translate3d(0,-100vh,0);
    }

    .img-wrapper {
        min-height: 25vh;
    }

    .img-wrapper:hover {
        min-height: 35vh;
    }

    .img-wrapper img {
        max-width: 25vh;
        max-height: 30vh;
    }

    .scroll-info {
        font-size: 0.8rem;
    }

    .icon svg {
        width: 30px;
    }

    .lightbox-close {
        top: -40px;
        font-size: 2.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 1.5rem;
        padding: 0.8rem 1rem;
    }

    .lightbox-nav {
        padding: 0 1rem;
    }

    .lightbox-counter {
        bottom: -40px;
        font-size: 1rem;
    }

    .language-toggle {
        max-width: 150px;
    }

    .lang-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    header {
        padding: 2rem 0;
    }

    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }

    .logo {
        position: static;
        transform: none;
        order: 1;
    }

    .logo img {
        height: 50px;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        order: 2;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8a0000;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #8a0000;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #660000;
}

.btn-outline {
    background-color: transparent;
    color: #8a0000;
    border: 1px solid #8a0000;
}

.btn-outline:hover {
    background-color: #8a0000;
    color: white;
}

@media (max-width: 1200px) {
    nav {
        flex-direction: row;
        gap: 1rem;
        padding: 1rem 20px;
    }
    
    .logo {
        position: static;
        transform: none;
        order: 1;
        margin-bottom: 1rem;
    }
    
    .nav-left,
    .nav-right {
        position: static;
        order: 2;
        justify-content: center;
    }
    
    .nav-left {
        margin-bottom: 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .bio-section {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-preview-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .about-text {
        padding-right: 0;
    }
    
    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .tour-action {
        text-align: center;
    }
    
    .albums-grid {
        gap: 2rem;
        margin: 2rem auto;
        padding: 0 1rem;
    }
    
    .album-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .album-cover-left {
        width: 100%;
        align-self: center;
    }
    
    .album-image {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
    
    .album-header {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
        text-align: left;
    }
    
    .tour-filters, .album-filters {
        justify-content: center;
    }
    
    .tour-filters select, .album-filters select {
        min-width: 250px;
    }
    
    .albums-section .albums-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .albums-section .album-cover {
        height: 120px;
        width: 120px;
    }
    
    .albums-section h2 {
        font-size: 2rem;
    }
    
    .contact-simple {
        padding: 2rem 1rem;
    }
    
    .contact-simple h1 {
        font-size: 3rem;
        margin-bottom: 2rem;
    }
    
    .manager-name {
        font-size: 1.5rem;
    }
    
    .contact-numbers {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .platforms {
        gap: 1rem;
    }
    
    .album-links {
        flex-direction: column;
        align-items: center;
    }
    
    /* Mobile Navigation - Hamburger Menu */
    header nav {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 20px !important;
        max-width: none !important;
        margin: 0 !important;
    }
    header .logo {
        position: static !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        order: 1 !important;
        margin: 0 !important;
    }
    header .logo img {
        height: 50px !important;
    }
    header .nav-left,
    header .nav-right {
        display: none !important;
    }
    header .hamburger-menu {
        display: flex !important;
        order: 2 !important;
        position: static !important;
        margin: 0 !important;
    }

    /* About page mobile responsiveness */
    .intro-content,
    .life-content,
    .career-content,
    .disco-content,
    .media-content,
    .children-content,
    .achievements-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .life-text h2,
    .career-text h2,
    .disco-text h2,
    .media-text h2,
    .children-text h2,
    .achievements-text h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .albums-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .album-cover {
        height: 120px;
        width: 120px;
    }
}