/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

::selection {
    background-color: rgba(212, 175, 55, 0.2);
    color: #1a365d;
}

body {
    font-family: "Noto Serif TC", "Playfair Display", "Georgia", serif;
    line-height: 1.7;
    color: #2d3748;
    background: #fefefe;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Accessibility: Focus outlines and skip link */
:focus-visible {
    outline: 3px solid #f6e05e;
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus,
.skip-link:active {
    position: fixed;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 12px 16px;
    background: #1a365d;
    color: #ffffff;
    border: 2px solid #f6e05e;
    border-radius: 6px;
    z-index: 10000;
}

/* Global decorative elements */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.05"/><circle cx="80" cy="60" r="0.3" fill="%231a365d" opacity="0.03"/><circle cx="40" cy="80" r="0.4" fill="%23d4af37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>'),
        radial-gradient(
            ellipse at top left,
            rgba(212, 175, 55, 0.1) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse at bottom right,
            rgba(26, 54, 93, 0.08) 0%,
            transparent 60%
        );
    pointer-events: none;
    z-index: -1;
    animation: subtle-float 20s ease-in-out infinite;
}

@keyframes subtle-float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(0.5deg);
    }
}

/* Navigation */
.navbar {
    background: rgba(26, 54, 93, 0.95);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.1);
    backdrop-filter: blur(10px);
}

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

.nav-logo {
    color: #f7fafc;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-en {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.logo-zh {
    font-family: "Noto Serif TC", serif;
    font-size: 0.85rem;
    font-weight: 300;
    opacity: 0.9;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: #e2e8f0;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #d4af37;
    transform: translateY(-1px);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f6e05e);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #e2e8f0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background: linear-gradient(
        135deg,
        rgba(26, 54, 93, 0.9) 0%,
        rgba(45, 55, 72, 0.8) 100%
    );
    color: white;
    padding: 140px 0 100px;
    text-align: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(
            circle at 25% 25%,
            rgba(212, 175, 55, 0.2) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 75% 75%,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 40%
        );
    pointer-events: none;
}

@keyframes hero-ambient {
    0% {
        opacity: 0.7;
        transform: scale(1) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1.03) rotate(0.8deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title-zh {
    font-family: "Noto Serif TC", serif;
    font-size: 4.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 4px;
    color: white;
    position: relative;
    display: inline-block;
}

@keyframes title-shimmer {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-title-zh::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        #d4af37 20%,
        #f6e05e 50%,
        #d4af37 80%,
        transparent
    );
    opacity: 0.9;
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%,
    100% {
        opacity: 0.6;
        box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
    }
    50% {
        opacity: 1;
        box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
    }
}

.hero-title-en {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    opacity: 0.95;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(135deg, #d4af37 0%, #f6e05e 100%);
    color: #1a365d;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.6);
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, #f6e05e 0%, #d4af37 100%);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    backdrop-filter: blur(10px);
}

/* Sections */
section {
    padding: 100px 0;
}

section h2 {
    text-align: center;
    font-family: "Noto Serif TC", serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 3rem;
    color: #1a365d;
    position: relative;
}

section h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: #d4af37;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.lead {
    font-size: 1.4rem;
    text-align: center;
    color: #4a5568;
    margin-bottom: 3rem;
    font-weight: 300;
    line-height: 1.8;
}

.about-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.about-item {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.about-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.12);
}

.about-item h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-family: "Noto Serif TC", serif;
}

.about-item p {
    color: #4a5568;
    line-height: 1.8;
}

/* Concert Grid */
.concerts {
    background-color: #ffffff;
}

.concert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.concert-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.2s ease;
    position: relative;
}

.concert-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #d4af37;
    border-radius: 8px 8px 0 0;
}

.concert-card.featured {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
    transform: scale(1.02);
}

.concert-card.featured::before {
    background: linear-gradient(90deg, #f6e05e, #d4af37);
}

.concert-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Enhanced concert overview card */
.concert-card .concert-program h5 {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    position: relative;
}

.concert-card .concert-program h5::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f6e05e);
    border-radius: 1px;
}

.concert-card .concert-program li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.concert-card .concert-program li::before {
    content: "🎼";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.concert-card .concert-program li:hover::before {
    transform: scale(1.2);
}

.concert-card .concert-program li:hover {
    color: #1a365d;
    transform: translateX(5px);
}

/* Advanced gradient text effect */
.concert-card .concert-notes {
    position: relative;
}

.concert-card .concert-notes::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -20px;
    right: -20px;
    bottom: -10px;
    background: linear-gradient(
        135deg,
        rgba(212, 175, 55, 0.05),
        rgba(246, 224, 94, 0.02)
    );
    border-radius: 15px;
    z-index: -1;
}

.concert-card .concert-notes p {
    background: linear-gradient(135deg, #d4af37 0%, #f6e05e 50%, #d4af37 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.concert-year,
.concert-series {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37, #f6e05e);
    color: #1a365d;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.concert-card.featured .concert-year {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
}

.concert-card h3 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a365d;
    font-weight: 500;
}

.concert-card.featured h3 {
    color: white;
}

.concert-details {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.concert-details p {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.concert-card.featured .concert-details p {
    color: rgba(255, 255, 255, 0.9);
}

.concert-description {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #718096;
    line-height: 1.6;
}

.concert-card.featured .concert-description {
    color: rgba(255, 255, 255, 0.8);
}

.concert-program,
.concert-artists {
    background: rgba(212, 175, 55, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.concert-card.featured .concert-program,
.concert-card.featured .concert-artists {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.concert-program h5 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.concert-program ul {
    list-style: none;
    padding: 0;
}

.concert-program li {
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    font-size: 0.9rem;
}

.concert-program li:last-child {
    border-bottom: none;
}

.concert-artists p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* Artists Section */
.artists {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.artist-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.2s ease;
}

.artist-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.2);
}

.artist-card h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.artist-instrument {
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.artist-achievement {
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Education Section */
.education {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.education-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.education-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #f6e05e);
}

.education-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}

.education-item h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.4rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.education-item p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.education-item strong {
    color: #d4af37;
    font-weight: 600;
}

.education-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.education-stats span {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Community Section */
.community {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.community h2 {
    color: white;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.community-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.community-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #f6e05e, #d4af37);
    border-radius: 20px 20px 0 0;
}

.community-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.community-card h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.5rem;
    color: #f6e05e;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.community-details {
    margin-bottom: 1.5rem;
}

.community-details p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
    font-size: 0.95rem;
}

.community-details strong {
    color: #d4af37;
}

.community-card p:last-child {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Partnerships Section */
.partnerships {
    background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
}

.partnerships-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partnership-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.partnership-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(26, 54, 93, 0.12);
}

.partnership-card h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.partnership-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.partnership-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.partnership-list li:last-child {
    border-bottom: none;
}

/* Media Section */
.media {
    background-color: #ffffff;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.media-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(26, 54, 93, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.media-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 0 15px 0 50px;
}

.media-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}

.media-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #d4af37, #f6e05e);
    color: #1a365d;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.media-card h4 {
    font-family: "Noto Serif TC", serif;
    font-size: 1.3rem;
    color: #1a365d;
    margin-bottom: 0.5rem;
    font-weight: 500;
    padding-right: 80px;
}

.media-title {
    color: #d4af37;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.media-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.media-stats {
    display: flex;
    justify-content: flex-end;
}

.media-stats span {
    background: rgba(26, 54, 93, 0.1);
    color: #1a365d;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* History/Timeline Section */
.history {
    background: #ffffff;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #d4af37, #f6e05e);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    padding-left: 4rem;
}

.timeline-year {
    position: absolute;
    left: -1rem;
    top: 0;
    background: linear-gradient(135deg, #d4af37, #f6e05e);
    color: #1a365d;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(26, 54, 93, 0.08);
}

.timeline-content h4 {
    font-family: "Noto Serif TC", serif;
    color: #1a365d;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #4a5568;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    color: white;
}

.contact h2 {
    color: white;
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info h4 {
    color: #d4af37;
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    font-family: "Noto Serif TC", serif;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.contact a {
    color: #f6e05e;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #d4af37;
    text-decoration: underline;
}

.contact-mission {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-style: italic;
}

/* Footer */
footer {
    background-color: #1a252f;
    color: #ecf0f1;
    text-align: center;
    padding: 2rem 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title-zh {
        font-size: 2.5rem;
    }

    .hero-title-en {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .concert-grid,
    .artists-grid,
    .education-grid,
    .community-grid,
    .partnerships-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }

    .about-details {
        grid-template-columns: 1fr;
    }

    .timeline {
        padding-left: 1rem;
    }

    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 3rem;
    }

    .timeline-year {
        left: -0.5rem;
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .education-stats {
        justify-content: center;
    }

    .media-date {
        position: static;
        display: block;
        margin: -20px -20px 1rem -20px;
        text-align: center;
        border-radius: 15px 15px 0 0;
    }

    .media-card h4 {
        padding-right: 0;
    }

    .media-stats {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Section padding adjustment for fixed navbar */
section {
    scroll-margin-top: 70px;
}

/* Animation utilities - Removed unused classes */
/* Note: All classes in the stylesheet are actively used in the HTML */
