:root {
    --primary-color: #800000; /* Deep Maroon */
    --primary-dark: #660000;
    --accent-color: #D4AF37; /* Burnished Gold */
    --accent-light: #E5C76B;
    --text-light: #FDFDFD;
    --text-dark: #2D2D2D;
    --bg-light: #FFFFFF;
    --bg-secondary: #F9F7F2; /* Creamy White */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

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

.section-padding {
    padding: 100px 0;
}

.secondary-bg {
    background-color: var(--bg-secondary);
}

/* Page Headers */
.page-header {
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.hero .btn-outline {
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-outline:hover {
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* Navigation */
#main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    /* Default: over dark banner — transparent with white text */
    background: transparent;
}

#main-nav.scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

#main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
    /* White/visible over dark banner */
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

/* Restore original logo after scroll */
#main-nav.scrolled .logo-img {
    filter: none;
}

.nav-links {
    display: flex;
    gap: 30px;
}

/* Nav links — white over banner, dark after scroll */
.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
    transition: var(--transition);
}

#main-nav.scrolled .nav-links a {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--accent-color);
}

#main-nav.scrolled .nav-links a:hover,
#main-nav.scrolled .nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

#main-nav.scrolled .nav-links a::after {
    background: var(--primary-color);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: var(--transition);
}

#main-nav.scrolled .menu-toggle span {
    background-color: var(--primary-color);
}

.menu-toggle.toggle span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.menu-toggle.toggle span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.toggle span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), 
                url('https://images.unsplash.com/photo-1541627303831-73dc94857ed9?auto=format&fit=crop&q=80&w=1800');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    color: var(--accent-color);
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
}

/* Animations inside slide */
.hero-slider .slide .hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
    text-align: center;
    padding: 0 20px;
}

.hero-slider .slide.active .hero-content {
    opacity: 1;
    transform: translateY(0);
}

.hero-description.slide-text {
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 20px auto 30px;
    font-weight: 300;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 10;
    pointer-events: none;
}

.slider-btn {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(5px);
    line-height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.slider-dots {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

@media (max-width: 768px) {
    .slider-controls {
        padding: 0 10px;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 1.2rem;
    }
}

/* Stats Section */
.stats {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.stat-card {
    padding: 60px 20px;
    text-align: center;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-card:last-child {
    border-right: none;
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.stat-label {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: block;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.founder-quote {
    margin-top: 40px;
    padding-left: 30px;
    border-left: 4px solid var(--accent-color);
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

cite {
    font-weight: 600;
    color: var(--accent-color);
}

.placeholder-img {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
}

/* Sir portrait — removes black background via CSS blend mode */
.sir-portrait {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
    border-radius: 10px;
    /* Boost contrast and brightness to compensate for blending */
    filter: contrast(1.05) brightness(1.02);
}

/* img-frame wrapper needs white background for blend to work correctly */
.img-frame {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px;
}

/* Gallery */
.gallery-grid {
    column-count: 3;
    column-gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    break-inside: avoid;
    margin-bottom: 30px;
}



.gallery-img-wrapper {
    width: 100%;
    position: relative;
}

.gallery-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay span {
    color: white;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid white;
}

/* Concerts */
.concert-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    margin-bottom: 20px;
    transition: var(--transition);
}

.concert-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-medium);
}

.concert-date {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    min-width: 100px;
    margin-right: 30px;
}

.day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.month {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.concert-info {
    flex-grow: 1;
}

.concert-info h3 {
    margin-bottom: 5px;
    color: var(--primary-color);
}

.location {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
}

.concert-link {
    font-weight: 700;
    color: var(--primary-color);
}

/* Mentors */
.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.mentor-card {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.mentor-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
}

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

.mentor-info h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mentor-info p {
    font-size: 0.95rem;
    color: #666;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center; /* Align items nicely */
}

.contact-details {
    margin: 40px 0;
}

.contact-details li {
    display: flex;
    margin-bottom: 25px;
}

.icon {
    font-size: 1.5rem;
    margin-right: 20px;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.form-group {
    margin-bottom: 20px;
}

input, textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fdfdfd;
    font-family: inherit;
    transition: var(--transition);
}

input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.w-100 {
    width: 100%;
}

/* ===== FOOTER — Compact & Beautiful ===== */
footer {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a0a0a 100%);
    color: rgba(255,255,255,0.75);
    padding: 50px 0 0;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-logo {
    height: 52px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.55;
    max-width: 240px;
}

/* 3-column grid */
.footer-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 14px;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.88rem;
    font-weight: 300;
    transition: var(--transition);
    opacity: 0.65;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

/* Social Icon Buttons in Footer */
.social-icons {
    display: flex;
    flex-direction: row;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icons .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: var(--accent-color);
    transition: var(--transition);
    background: rgba(255,255,255,0.05);
}

.social-icons .social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icons .social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #111;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

/* Contact page social links (inline) */
.social-links {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.social-links .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    transition: var(--transition);
    background: transparent;
}

.social-links .social-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.social-links .social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(128, 0, 0, 0.25);
}

.footer-bottom {
    padding: 18px 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    letter-spacing: 0.5px;
}

/* Founder Profile */
.founder-profile .section-header p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.profile-content {
    margin-top: 40px;
}

.journey-text {
    margin-bottom: 50px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.journey-text p {
    margin-bottom: 15px;
}

.journey-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
    border-bottom: 2px solid var(--accent-light);
    display: inline-block;
    padding-bottom: 5px;
}

.resume-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.resume-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.resume-card h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.resume-card h3::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--accent-color);
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.styled-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.text-highlight {
    color: var(--primary-color);
}

@media (max-width: 992px) {
    .resume-grid {
        grid-template-columns: 1fr;
    }
}

/* Compositions */
.composition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.composition-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border-top: 4px solid var(--accent-light);
    display: flex;
    flex-direction: column;
}

.composition-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--primary-color);
}

.comp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.comp-header h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 0;
}

.custom-play-btn {
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(128,0,0,0.3);
    transition: var(--transition);
    flex-shrink: 0;
}

.custom-play-btn svg {
    fill: white;
    width: 24px;
    height: 24px;
}

.custom-play-btn:hover {
    transform: scale(1.08);
    background: var(--accent-color);
    box-shadow: 0 6px 15px rgba(212,175,55,0.4);
}

.custom-play-btn.playing {
    background: var(--accent-color);
    animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
    0% { box-shadow: 0 0 0 0 rgba(212,175,55,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(212,175,55,0); }
    100% { box-shadow: 0 0 0 0 rgba(212,175,55,0); }
}

.composition-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.audio-progress {
    width: 100%;
    height: 6px;
    background: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-top: auto;
}

.audio-progress .progress-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.1s linear;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-color);
}

@media (min-width: 768px) {
    .lightbox-close {
        right: -40px;
        top: 0;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 2;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
    /* Footer stays 3 col on tablet */
    .footer-content {
        grid-template-columns: 1.2fr 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        column-count: 1;
    }
    /* Footer collapses gracefully on mobile */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--primary-color) !important;
        font-size: 1.3rem;
        text-shadow: none !important;
        margin: 15px 0;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Video Section */
.video-grid {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.video-card {
    max-width: 800px;
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-preview-link {
    display: block;
    position: relative;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    display: block;
    transition: transform 0.6s ease;
}

.video-preview-link:hover .video-thumbnail {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(212,175,55,0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: var(--transition);
}

.play-overlay svg {
    fill: white;
    width: 40px;
    height: 40px;
    margin-left: 5px; /* Offset for optical alignment of play triangle */
}

.video-preview-link:hover .play-overlay {
    background: var(--primary-color);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
    text-align: center;
}

.video-info h3 {
    margin: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Concert History Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    margin-top: 30px;
}

.concerts-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    min-width: 600px;
}

.concerts-table th, .concerts-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.concerts-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
}

.concerts-table tbody tr {
    transition: var(--transition);
}

.concerts-table tbody tr:hover {
    background-color: var(--bg-secondary);
}

.concerts-table .year-cell {
    background: var(--primary-dark);
    color: var(--accent-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    letter-spacing: 2px;
    border-right: 2px solid white;
}

/* Strong line to differentiate the start of a year */
.concerts-table tr.year-start td {
    border-top: 6px solid var(--primary-dark);
}

.concerts-table .month-cell {
    font-weight: 600;
    color: var(--primary-color);
    width: 150px;
}

.concerts-table .concert-cell {
    color: var(--text-dark);
}
