/* Color palette */
:root {
    --black: #1a1a1a;
    --white: #f8f5ef;
    --pastelle-brown: #c7a27a;
}


html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--black);
}


/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--pastelle-brown);
    color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    padding: 20px;
    z-index: 1000;
    height: 3%;
    background-color: #c7a27a;
}

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-right: 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.2);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: "Poppins", sans-serif;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.lang-btn.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0.5rem;
}

.hamburger:hover {
    transform: scale(1.1);
}


/* Hero */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
}

.hero-big-image {
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

@media (min-width: 769px) {
    .hero-big-image {
        background-size: cover;
        background-color: var(--black);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-content .tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


/* Pages */
.page-section {
    padding: 4rem 2rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--pastelle-brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--pastelle-brown);
}

.cta-btn:hover {
    background: transparent;
    color: var(--pastelle-brown);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 162, 122, 0.3);
}

.cta-btn.light {
    background: transparent;
    color: var(--pastelle-brown);
    border-color: var(--pastelle-brown);
}

.cta-btn.light:hover {
    background: var(--pastelle-brown);
    color: var(--white);
}

/* Bio Teaser */
.bio-teaser {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.bio-teaser h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.bio-teaser p {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #555;
}

/* Highlights Section */
.highlights {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.highlights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.highlight-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.highlight-card p {
    line-height: 1.7;
    color: #666;
}

/* Featured Section */
.featured-section {
    padding: 5rem 2rem;
    background: var(--white);
}

.featured-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
}

.featured-content {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.featured-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.featured-text .cta-btn {
    display: block;
    margin: 1.5rem auto 0;
    width: 100%;
    max-width: 250px;
}

.featured-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.featured-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
}

/* About Page Styles */
.about-hero {
    padding: 4rem 2rem;
    background: var(--white);
}

.about-hero-content {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-intro-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    margin-top: 20px;
}

.about-intro-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-intro h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.about-intro .subtitle {
    font-size: 1.5rem;
    color: var(--pastelle-brown);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-intro .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.about-bio {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.about-bio h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.bio-content {
    max-width: 900px;
    margin: 0 auto;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

.about-education {
    padding: 5rem 2rem;
    background: var(--white);
}

.about-education h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--black);
    text-align: center;
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.education-item {
    background: #f5f0e8;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.education-item:hover {
    transform: translateY(-5px);
}

.education-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.education-item p {
    line-height: 1.7;
    color: #666;
}

.about-repertoire {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.about-repertoire h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.repertoire-content {
    max-width: 900px;
    margin: 0 auto;
}

.repertoire-content>p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #555;
    text-align: center;
}

.repertoire-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.repertoire-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.repertoire-category h4 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--pastelle-brown);
}

.repertoire-category p {
    line-height: 1.7;
    color: #666;
}

.about-social {
    padding: 5rem 2rem;
    background: #f5f0e8;
    text-align: center;
}

.about-social h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.about-social>.container>p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    max-width: 600px;
    margin: 0 auto;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--pastelle-brown);
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    min-width: 150px;
}

.social-link:hover {
    background: var(--pastelle-brown);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(199, 162, 122, 0.3);
}

.social-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.1);
}

.social-link span {
    font-size: 1.1rem;
    font-weight: 500;
}

.about-cta {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.about-cta>.container>p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
}

.cta-buttons .cta-btn {
    margin: 0;
    max-width: 250px;
    width: 100%;
}

.cta-buttons .cta-btn {
    margin: 0;
}

/* Events Page Styles */
.events-hero {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.events-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.events-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.events-section {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    background: var(--pastelle-brown);
    color: var(--white);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
}

.event-month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-day {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1;
}

.event-details {
    flex: 1;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.event-location {
    font-size: 1.1rem;
    color: var(--pastelle-brown);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.event-time {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.event-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.event-link {
    color: var(--pastelle-brown);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.event-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.past-events {
    padding: 5rem 2rem;
    background: var(--white);
}

.past-events h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

.past-events-intro {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.past-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.past-event-item {
    background: #f5f0e8;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.past-event-item:hover {
    transform: translateY(-3px);
}

.past-event-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--black);
}

.past-event-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.past-event-date {
    color: var(--pastelle-brown);
    font-weight: 500;
}

.events-cta {
    padding: 5rem 2rem;
    background: #f5f0e8;
    text-align: center;
}

.events-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
}

.events-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #555;
}

/* Media Page Styles */
.media-hero {
    padding: 5rem 2rem;
    background: var(--white);
    text-align: center;
}

.media-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.album-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

.video-section {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.video-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: var(--black);
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.streaming-platforms {
    padding: 5rem 2rem;
    background: var(--white);
}

.streaming-platforms h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--black);
    text-align: center;
}

.platforms-intro {
    font-size: 1.1rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .track-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .track-name {
        width: 100%;
    }

    .download-sheet {
        width: 100%;
        text-align: center;
    }
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--white);
    border: 2px solid var(--pastelle-brown);
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.platform-btn:hover {
    background: var(--pastelle-brown);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(199, 162, 122, 0.3);
}

.platform-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.platform-btn:hover .platform-icon {
    transform: scale(1.1);
}

.platform-btn span {
    font-size: 1.1rem;
    font-weight: 500;
}

.album-info {
    padding: 5rem 2rem;
    background: #f5f0e8;
}

.album-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--black);
    text-align: center;
}

.album-details {
    max-width: 900px;
    margin: 0 auto;
}

.album-details>p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
    text-align: justify;
}

.track-list {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.track-list h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--black);
}

.track-list ul {
    list-style: none;
    padding: 0;
}

.track-list li {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid #e0e0e0;
}

.track-list li:last-child {
    border-bottom: none;
}

.track-list li::before {
    content: "🎵 ";
    margin-right: 0.5rem;
}

.tracks {
    list-style: none;
    padding: 0;
}

.track-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.track-item:last-child {
    border-bottom: none;
}

.track-item::before {
    content: "🎵 ";
    margin-right: 0.75rem;
}

.track-name {
    flex: 1;
    font-size: 1.1rem;
    color: #555;
}

.download-sheet {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--pastelle-brown);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.download-sheet:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}


/* Mobile nav */
@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 1rem;
        position: relative;
    }

    .logo {
        font-size: 1.2rem;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: nowrap;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: var(--pastelle-brown);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        gap: 0;
        margin: 0;
        list-style: none;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        margin: 0;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        border-radius: 0;
    }

    .nav-links a:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: none;
    }

    .nav-links li:last-child a {
        border-bottom: none;
    }

    .language-switcher {
        margin-left: 0;
        padding-right: 0.75rem;
        border-right: 1px solid rgba(255, 255, 255, 0.3);
        border-left: none;
        padding-left: 0;
        width: auto;
        gap: 0.5rem;
        display: flex;
        align-items: center;
        order: 1;
    }

    .lang-btn {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        min-width: 45px;
    }

    /* When menu is open, hide the inline language switcher */
    .nav-links.active~.language-switcher {
        display: none;
    }

    .hamburger {
        display: block;
        padding: 0.5rem;
        margin: 0;
    }

    /* Language switcher in mobile menu */
    .nav-links .language-switcher-mobile {
        display: flex !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.3) !important;
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 0.75rem !important;
        align-items: center !important;
    }

    .nav-links .language-switcher-mobile .lang-btn {
        min-width: 50px;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Fix button alignment and spacing */
    .cta-btn,
    .lang-btn,
    .platform-btn,
    .event-link {
        text-align: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
        display: block;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
        text-align: center;
        box-sizing: border-box;
    }

    .featured-text .cta-btn,
    .bio-teaser .cta-btn {
        margin-left: auto;
        margin-right: auto;
    }

    .lang-btn {
        min-width: 45px;
        text-align: center;
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .platform-btn {
        text-align: center;
    }

    .event-link {
        text-align: left;
        display: inline-block;
        margin-top: 0.5rem;
    }

    /* Fix text alignment */
    h1,
    h2,
    h3,
    h4 {
        text-align: center;
    }

    .bio-teaser,
    .events-hero,
    .media-hero,
    .about-hero,
    .about-bio,
    .about-education,
    .about-repertoire,
    .about-cta,
    .events-cta,
    .past-events,
    .streaming-platforms,
    .album-info {
        text-align: center;
    }

    .bio-text p,
    .album-details>p {
        text-align: justify;
        text-indent: 0;
        padding: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .bio-text {
        text-align: justify;
    }

    .bio-text p {
        text-indent: 1.5em;
        margin-bottom: 1.5rem;
    }

    @media (max-width: 768px) {
        .bio-text p {
            text-indent: 0;
            text-align: left;
            padding-left: 0;
            padding-right: 0;
        }
    }

    .about-intro {
        text-align: left;
    }

    .featured-text {
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }

    .about-intro {
        padding: 0;
    }

    .event-details h3,
    .event-details p {
        text-align: left;
    }

    .event-details {
        text-align: left;
    }

    /* Fix text indentation issues on mobile */
    p {
        text-indent: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .bio-teaser .container,
    .events-hero .container,
    .media-hero .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .highlight-card p,
    .featured-text p,
    .about-intro p,
    .event-description {
        text-indent: 0;
        padding-left: 0;
        padding-right: 0;
    }
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content .tagline {
    font-size: 1.2rem;
}

.featured-content {
    display: block;
    max-width: 100%;
}

.highlights-grid {
    grid-template-columns: 1fr;
}

.bio-teaser h2,
.highlights h2,
.featured-section h2 {
    font-size: 2rem;
}

.about-hero-content {
    grid-template-columns: 1fr;
}

.about-intro h1 {
    font-size: 2.5rem;
}

.about-bio h2,
.about-education h2,
.about-repertoire h2,
.about-social h2,
.about-cta h2 {
    font-size: 2rem;
}

.social-links {
    flex-direction: row;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.social-link {
    width: auto;
    min-width: 150px;
    max-width: 250px;
    flex: 1;
}

.education-grid {
    grid-template-columns: 1fr;
}

.repertoire-list {
    grid-template-columns: 1fr;
}

.cta-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.cta-buttons .cta-btn {
    width: 100%;
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
}

.events-hero h1 {
    font-size: 2.5rem;
}

.events-intro {
    font-size: 1.1rem;
}

.events-grid {
    grid-template-columns: 1fr;
}

.event-card {
    flex-direction: column;
    align-items: center;
}

.event-date {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-width: 80px;
    width: auto;
    margin: 0 auto;
}

.event-day {
    font-size: 2rem;
}

.events-section h2,
.past-events h2,
.events-cta h2 {
    font-size: 2rem;
}

.past-events-grid {
    grid-template-columns: 1fr;
}

.media-hero h1 {
    font-size: 2.5rem;
}

.album-intro {
    font-size: 1.1rem;
}

.video-section h2,
.streaming-platforms h2,
.album-info h2 {
    font-size: 2rem;
}

.platforms-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.platform-btn {
    padding: 1.5rem;
}

.platform-icon {
    width: 50px;
    height: 50px;
}

.track-list {
    padding: 2rem;
}

.track-list h3 {
    font-size: 1.5rem;
}

/* Footer Styles */
.footer {
    background-color: #1f1f1f;
    color: #f1f1f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    border-top: 1px solid #2a2a2a;
}

.footer h3 {
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer p {
    margin: 8px 0;
    font-size: 15px;
    opacity: 0.9;
}

.footer a {
    color: #f1f1f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #ff6f61;
}

/* Social Icons */
.social-icons {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icons img {
    width: 35px;            /* Keep a fixed width */
    height: auto;           /* Prevent distortion */
    object-fit: contain;    /* Extra protection */
    transition: transform 0.25s ease, filter 0.25s ease;
}

.social-icons a:hover img {
    transform: scale(1.15);
    filter: brightness(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer {
        padding: 30px 15px;
    }

    .footer h3 {
        font-size: 18px;
    }

    .social-icons img {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .footer h3 {
        font-size: 17px;
    }

    .footer p, 
    .footer a {
        font-size: 14px;
    }

    .social-icons img {
        width: 28px;
    }
}

@media (max-width: 768px) {

    /* Hide the nav links by default */
    #nav-links {
        display: none !important;
        flex-direction: column;
        align-items: center;
        width: 100%;

    }

    /* Show when menu is toggled */
    #nav-links.active {
        display: flex !important;
    }

    /* Hide switcher in navbar */
    .language-switcher {
        display: none !important;
    }

    /* Show switcher inside menu */
    #nav-links.active .language-switcher {
        display: flex !important;
        justify-content: center;
        width: 100%;

        border-top: 1px solid rgba(255,255,255,0.3);
    }
}