/* ==========================================
   Crescendo Initiative - Connecting Through Music
   Complete CSS Stylesheet with Logo Colors
   ========================================== */

:root {
    --primary-red: #F2E6C9;
    /* idk why I can't find the primary blues in index.html */
    --primary-blue: #F2E6C9;
    --accent-orange: #D4A44A;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #0F0F0F;
    --bg-white: #1A1A1A;
    --border-light: background-color: #0F0F0F;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --gradient: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    --font-display: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --nav-height: 80px; /* height of fixed navbar used for anchor offset */
}

/* Strong small-screen override to keep header compact and prevent overlap/overflow */
@media (max-width: 420px) {
    .navbar .container {
        padding: 0.25rem 0.6rem;
        position: relative;
    }

    /* Hide the logo text on very small screens so it can't collide with the hamburger */
    .logo-text { display: none; }
    .logo-img { width: 36px; height: 36px; }
    .logo-main { font-size: 1rem; }

    /* Keep hamburger inline and right-aligned (non-absolute) */
    .hamburger {
        display: flex;
        position: static;
        margin-left: auto;
        z-index: 1200;
    }

    /* Ensure nav-brand doesn't force width and remains compact */
    .nav-brand { display: flex; align-items: center; gap: 0.5rem; flex: 0 0 auto; min-width: 0; }

    /* Mobile nav full width and box-sizing to avoid overflow when opened */
    .nav-menu, .nav-menu.active { box-sizing: border-box; width: 100%; left: -100%; }
    .nav-menu.active { left: 0; }
}

@media (max-width: 400px) {
    .navbar .logo-main {
        font-size: 5vw;
    }
    .navbar .logo-sub {
        font-size: 3vw;
    }
}

@media (max-width: 200px) {
    .navbar .logo-main {
        display: none;
    }
    .navbar .logo-sub {
        display: none;
    }
}

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

html {
    scroll-behavior: smooth;
}

/* Prevent accidental horizontal overflow on very small viewports */
html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { 
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem); 
}
h2 { 
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem); 
}
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Buttons */
.btn-primary, .btn-hero-primary, .btn-cta-primary, .btn-video, .btn-contact {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: var(--gradient);
    color: #0A1A2F;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover, .btn-hero-primary:hover, .btn-cta-primary:hover, .btn-video:hover, .btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary, .btn-hero-secondary, .btn-cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover, .btn-hero-secondary:hover, .btn-cta-secondary:hover {
    background: var(--primary-blue);
    color: #0A1A2F;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

/* Ensure anchored sections are scrolled into view below the fixed navbar
   so section headings are not covered. Adjust --nav-height if navbar size changes. */
section {
    scroll-margin-top: calc(var(--nav-height));
}

/* Slightly smaller offset on narrow screens (mobile) where navbar is shorter */
@media (max-width: 768px) {
    :root { --nav-height: 70px; }

    .navbar {
        width:100%;
    }
}
/* Ultra-narrow devices: make content fit and avoid horizontal scrolling */
@media (max-width: 320px) {
    :root { --nav-height: 60px; }

    /* tighten container spacing */
    .container { padding: 0 0.5rem; }
    .navbar .container { padding: 0.4rem 0.75rem; }

    /* smaller logo/text in navbar */
    .logo-img { width: 36px; height: 36px; }
    .logo-main { font-size: 1rem; }
    .logo-sub { font-size: 0.65rem; }

    /* hero adjustments */
    .hero-logo { width: 80px; height: 80px; margin-top: 90px; }
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; max-width: 100%; }
    .hero-stats { display: none; }

    /* ensure images scale and headings wrap */
    img { max-width: 100%; height: auto; }
    h1, h2, h3, h4 { overflow-wrap: break-word; word-break: break-word; }

    /* mobile nav sizing */
    .nav-menu { top: var(--nav-height); width: 100%; left: -100%; }

    /* reduce large paddings that can cause overflow */
    .container, .footer, .hero, section { padding-left: 0.5rem; padding-right: 0.5rem; }

    /* Ensure nav brand can shrink and hamburger stays on the right */
    .navbar .container { display: flex; align-items: center; gap: 0.5rem; }
    .nav-brand { display: flex; align-items: center; gap: 0.5rem; flex: 1 1 auto; min-width: 0; }
    .logo-text { min-width: 0; }
    .logo-main { font-size: 1rem; line-height: 1; overflow: hidden; text-overflow: ellipsis; }
    .logo-sub { font-size: 1rem; line-height: 1; overflow: hidden; text-overflow: ellipsis; }
    .hamburger { margin-left: auto; }

    /* Prevent nav-menu from forcing horizontal scroll when visible */
    .nav-menu, .nav-menu.active { box-sizing: border-box; width: 100%; left: -100%; }
    .nav-menu.active { left: 0; }
}

/* Slightly larger narrow range to catch small phones (prevent header overlap) */
@media (max-width: 360px) {
    .logo-img { width: 34px; height: 34px; }
    .logo-main { font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .logo-sub { font-size: 1rem; line-height: 1; overflow: hidden; text-overflow: ellipsis; }
    .nav-brand { gap: 0.5rem; }
    .hamburger { z-index: 1100; }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-nav .nav-link,
.navbar-brand {
    color: #ffffff !important; /* readable */
}

.navbar-nav .nav-link:hover,
.navbar-brand:hover {
    color: #ffd66b !important; /* gold hover like your logo */
}

.logo-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
}

.logo-sub {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    color: #666;
}

.nav-menu a {
    font-weight: 500;
    color: #F2E6C9;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-blue);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.1;
    transform: skewX(-15deg);
    transform-origin: top right;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    text-align: center;
    margin: 0 auto;
}

.hero-logo {
    margin-top: 150px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-lg);
}

.hero-title {
    margin-bottom: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    margin-left: auto;
    justify-content: center;
    margin-bottom: 100px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-light);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.founder-section {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
    margin-bottom: 3rem;
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.founder-quote {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
    text-align: left;
    color: #666;
}

.founder-quote p {
    font-size: 1.25rem;
    font-style: italic;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.founder-quote cite {
    font-weight: 600;
    color: var(--primary-blue);
}

.mission-statement {
    margin-bottom: 3rem;
}

.mission-statement h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.testimonial {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-orange);
}

.testimonial blockquote {
    margin: 0;
}

.testimonial p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-weight: 600;
    color: var(--primary-blue);
}

/* Performances Section */
.performances {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.performance-card {
    background: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid var(--accent-orange);
}

.performance-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.performance-date {
    background: var(--gradient);
    color: #0A1A2F;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.performance-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.performance-details {
    display: grid;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--accent-orange);
    width: 16px;
}

.performance-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.perf-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

/* Videos Section */
.videos {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.video-card {
    background: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.video-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.video-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.performance-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-description {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.additional-media {
    margin-top: 4rem;
    text-align: center;
}

.additional-media h3 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.media-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-decoration: none;
    color: #F2E6C9;
    transition: all 0.3s ease;
}

.media-link:hover {
    background: var(--primary-blue);
    color: #0A1A2F;
    transform: translateY(-2px);
}

.media-link i {
    font-size: 1.5rem;
    color: var(--accent-orange);
}

.media-link:hover i {
    color: #0A1A2F;
}

/* Calendar Section */
.calendar-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.calendar-container {
    background: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

#calendar {
    max-width: 900px;
    margin: 0 auto;
}

.next-concert {
    background: var(--gradient);
    color: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.next-concert h3 {
    margin-bottom: 1rem;
}

.concert-date {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.concert-details h4 {
    margin-bottom: 0.5rem;
}

.concert-time {
    font-size: 1.1rem;
    opacity: 0.9;
}

.concert-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
}

.concert-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fc-col-header-cell-cushion {
    color: #666;
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.map-container {
    background: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

#map {
    width: 100% !important;
    height: 450px !important;
    max-height: 450px;
    border-radius: 8px;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.venues-list {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
}

.venues-list h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.venue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.venue-item {
    background: #0A1A2F;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.venue-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.venue-type {
    background: var(--accent-orange);
    color: #0A1A2F;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

.venue-stats {
    margin-top: 1rem;
}

.venue-stats span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.headquarters-info {
    background: var(--primary-blue);
    color: #0A1A2F;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.headquarters-info h4 {
    margin-bottom: 0.5rem;
}

/* Leadership Section */
.leadership {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.leader-card {
    background: #0A1A2F;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.leader-card.founder {
    border: 2px solid var(--accent-orange);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.leader-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-avatar i {
    font-size: 3rem;
    color: #0A1A2F;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: var(--gradient);
}

.leader-card h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.leader-title {
    color: var(--accent-orange);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--bg-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    width: 20px;
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.btn-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #0A1A2F;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.link-group h4 {
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

.link-group a {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.link-group a:hover {
    color: var(--accent-orange);
}

.footer-social h4 {
    margin-bottom: 1rem;
    color: var(--accent-orange);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1A2F;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-orange);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: var(--nav-height);
        flex-direction: column;
        background: #0A1A2F;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-logo {
        width: 100px;
        height: 100px;
    }
    
    .founder-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .video-container {
        padding-bottom: 75%; /* Slightly taller for mobile */
    }
}
/* ========== NEW STUDENT RECRUITMENT STYLES ========== */
.student-join{
  background:var(--bg-light);
  padding:5rem 0;
  text-align:center;
}
.join-inner{
  max-width:700px;
  margin:0 auto;
}
.join-inner h2{
  color:var(--primary-blue);
  margin-bottom:1rem;
}
.join-inner p{
  font-size:1.1rem;
  margin-bottom:2rem;
}
.join-inner .btn-cta-primary{
  margin-bottom:2rem;
}
.join-inner blockquote{
  font-style:italic;
  color:var(--text-light);
  border-left:4px solid var(--accent-orange);
  padding-left:1rem;
  margin-top:2rem;
}
.join-inner cite{
  display:block;
  margin-top:0.5rem;
  font-weight:600;
  color:var(--primary-blue);
}

/* small footer CTA */
.student-cta-footer{
  margin-top:1.5rem;
  font-size:0.9rem;
}
.student-cta-footer a{
  color:var(--accent-orange);
  font-weight:600;
}

/* make nav button fit */
.nav-menu .btn-primary{
  padding:0.5rem 1rem;
  font-size:0.9rem;
}

/* video iframe instead of <video> */
.video-container iframe{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  border-radius:8px;
}
/* ========== OUR MUSICIANS ========== */
.musicians{
  padding:5rem 0;
  background:var(--bg-white);
}
.musician-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:1.5rem;
  margin-top:3rem;
}
.musician-card{
  background:var(--bg-light);
  border-radius:12px;
  padding:1.5rem 1rem;
  text-align:center;
  box-shadow:var(--shadow);
  transition:transform .3s, box-shadow .3s;
}
.musician-card:hover{
  transform:translateY(-5px);
  box-shadow:var(--shadow-lg);
}
.musician-card h3{
  color:var(--primary-blue);
  font-size:1.1rem;
  margin-bottom:.25rem;
}
.musician-card p{
  color:var(--accent-orange);
  font-weight:600;
  margin-bottom:.5rem;
}
.grade,.school{
  display:block;
  font-size:.8rem;
  color:var(--text-light);
}
.school{margin-top:.15rem;}

.fc-list-day {
    color: #1A1A1A;
}
