/* ================================================
   MID LIFE CRISIS - Rock Band Website
   ================================================ */

:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --dark: #0d0d0d;
    --darker: #050505;
    --light: #f1faee;
    --gray: #2a2a2a;
    --gray-light: #3a3a3a;
    --accent: #ff4757;
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
}

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

/* ================================================
   HEADER & NAVIGATION
   ================================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link:hover {
    color: var(--primary);
}

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

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

.nav-social a {
    color: var(--light);
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
    color: var(--primary);
    transform: scale(1.2);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--light);
    position: relative;
    transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--light);
    transition: transform 0.3s;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

/* ================================================
   HERO SECTION
   ================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-color: var(--darker);
    overflow: hidden;
    padding-bottom: 3rem;
}

.hero-split {
    background-position: center 20%;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23ffffff10"/></svg>');
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(5,5,5,0.1) 0%, rgba(5,5,5,0.2) 50%, rgba(5,5,5,0.95) 85%);
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    margin-bottom: 1.5rem;
}

.hero-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    color: var(--primary);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--gray);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
}

.social-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 15px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 25px;
        opacity: 0.3;
    }
}

/* ================================================
   BUTTONS
   ================================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.4);
}

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

.btn-secondary:hover {
    background: var(--light);
    color: var(--dark);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.3rem;
}

.btn-full {
    width: 100%;
}

/* ================================================
   SECTIONS
   ================================================ */

.section {
    padding: 6rem 0;
}

.dark-bg {
    background: var(--darker);
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    margin: 1rem auto;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* ================================================
   ABOUT SECTION
   ================================================ */

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-weight: 500;
}

.about-text p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
}

.about-text blockquote {
    margin-top: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed var(--gray-light);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

.image-placeholder span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ================================================
   SERVICES SECTION
   ================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--gray-light);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.services-cta {
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ================================================
   MUSIC SECTION
   ================================================ */

.music-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.music-card {
    background: var(--gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.music-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.music-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.music-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.music-card p {
    color: rgba(255, 255, 255, 0.7);
}

.music-cta {
    text-align: center;
}

.streaming-title {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

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

.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: transform 0.3s, box-shadow 0.3s;
}

.platform-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.platform-btn.youtube {
    background: #ff0000;
}

.platform-btn.spotify {
    background: #1db954;
}

.platform-btn.apple {
    background: linear-gradient(135deg, #fa233b, #fb5c74);
}

.platform-btn.deezer {
    background: #ff0092;
}

.platform-btn.tidal {
    background: #000000;
    border: 1px solid #333;
}

.platform-btn.qobuz {
    background: #0066cc;
}

@media (max-width: 576px) {
    .streaming-platforms {
        flex-direction: column;
        align-items: center;
    }

    .platform-btn {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
}

/* ================================================
   VIDEOS SECTION
   ================================================ */

.video-container {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.video-placeholder {
    aspect-ratio: 16/9;
    background: var(--gray);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    border: 2px dashed var(--gray-light);
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary);
}

.video-placeholder p {
    color: rgba(255, 255, 255, 0.5);
}

.social-gallery h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.gallery-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: var(--gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--light);
    transition: transform 0.3s, background 0.3s;
}

.gallery-item i {
    font-size: 2.5rem;
}

.gallery-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.gallery-item.facebook:hover {
    background: #1877f2;
    transform: translateY(-5px);
}

.gallery-item.instagram:hover {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    transform: translateY(-5px);
}

.gallery-item.youtube:hover {
    background: #ff0000;
    transform: translateY(-5px);
}

/* ================================================
   DOCUMENTS SECTION
   ================================================ */

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

.doc-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    color: var(--light);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary);
}

.doc-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.doc-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.doc-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.doc-download {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary);
    color: white;
    border-radius: 5px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.doc-card:hover .doc-download {
    background: var(--accent);
}

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

/* ================================================
   CONTACT SECTION
   ================================================ */

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-item a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--gray);
    border: 2px solid var(--gray-light);
    border-radius: 5px;
    color: var(--light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
    background: var(--darker);
    border-top: 1px solid var(--gray);
    padding: 4rem 2rem 2rem;
}

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

.footer-brand h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand span {
    color: var(--primary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
}

.footer h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-contact a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--gray);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ================================================
   RESPONSIVE
   ================================================ */

/* Tablet/Desktop nav breakpoint */
@media (max-width: 1150px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        border-bottom: 1px solid var(--gray);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        border-bottom: 1px solid var(--gray);
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 1rem 0;
    }

    .nav-toggle {
        display: block;
    }

    .nav-social {
        display: none;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .music-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .header {
        padding: 0;
    }

    .nav {
        padding: 0.25rem 1rem;
        justify-content: center;
        min-height: 44px;
    }

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

    .logo-img {
        height: 28px;
    }

    .nav-toggle {
        position: absolute;
        right: 1rem;
    }

    /* Hero Mobile */
    .hero {
        min-height: 100svh;
        padding-bottom: 1rem;
        align-items: flex-end;
    }

    .hero-split {
        background-position: center 15%;
        background-size: cover;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
            rgba(5,5,5,0) 0%,
            rgba(5,5,5,0) 40%,
            rgba(5,5,5,0.7) 70%,
            rgba(5,5,5,0.95) 90%);
    }

    .hero-content {
        padding: 0.75rem 1rem;
        max-height: 30vh;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 0.2em;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-cta .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .hero-social {
        display: none;
    }

    .scroll-indicator {
        display: none;
    }

    /* Sections Mobile */
    .section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-title::after {
        width: 60px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    /* About Mobile */
    .about-text .lead {
        font-size: 1.1rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-text blockquote {
        margin-top: 1.5rem;
        padding-left: 1rem;
    }

    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    /* Music Mobile */
    .music-card {
        padding: 1.5rem;
    }

    .music-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .music-card h3 {
        font-size: 1.4rem;
    }

    /* Video Mobile */
    .video-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .video-thumb .play-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        opacity: 1;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item {
        padding: 1.5rem;
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }

    .gallery-item i {
        font-size: 1.8rem;
    }

    /* Contact Mobile */
    .contact-info {
        gap: 1.5rem;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Buttons Mobile */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer h4 {
        font-size: 1rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 380px) {
    .hero-tagline {
        font-size: 0.85rem;
        letter-spacing: 0.2em;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .video-gallery {
        grid-template-columns: 1fr;
    }

    .service-card,
    .music-card {
        padding: 1.25rem;
    }
}

/* ================================================
   BAND PHOTO
   ================================================ */

.band-photo {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.band-photo:hover {
    transform: scale(1.02);
}

/* ================================================
   VIDEO WRAPPER & GALLERY
   ================================================ */

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.video-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 2rem auto;
    max-width: 900px;
}

.video-thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16/9;
    display: block;
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s, filter 0.3s;
}

.video-thumb:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.video-thumb .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.video-thumb:hover .play-icon {
    opacity: 1;
}

.video-cta {
    text-align: center;
    margin-top: 2rem;
}
