/* Reset and Base Styles */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

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

main {
    position: relative;
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    --navbar-height: 80px;
    --primary-color: #2A9D8F;    /* Teal - sophisticated, calming */
    --secondary-color: #264653;  /* Deep Blue - modern, professional */
    --accent-color: #E9C46A;     /* Warm Gold - acoustic wood tones */
    --dark-color: #1A1A1A;
    --light-color: #FFFFFF;
    --logo-font: 'Playfair Display', serif;  /* More refined, contemporary */
    --heading-font: 'Montserrat', sans-serif;  /* Clean, modern */
    --body-font: 'Open Sans', sans-serif;      /* Highly readable */
}

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

* {
    scroll-behavior: auto !important;
}

html {
    scroll-behavior: auto !important;
}

body {
    scroll-behavior: auto !important;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--dark-color);
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    height: var(--navbar-height);
}

.logo-image {
    height: calc(var(--navbar-height) - 20px);
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

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

.logo a {
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
}

.logo-image {
    height: 65px;
    width: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.logo:hover .logo-image {
    transform: scale(1.02);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.3));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--light-color);
    text-decoration: none;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 999;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

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

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover {
        background: var(--primary-color);
        color: var(--light-color);
    }
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    width: 100%;
    background-color: var(--dark-color);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../images/LC - Band Photo - Good 4.jpeg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    filter: brightness(0.7);
    z-index: 1;
}

.hero-section.video-bg::before {
    display: none;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    filter: brightness(0.7);
}

.hero-section:hover::before {
    transform: scale(1.0);
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    position: relative;
    z-index: 2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-content .tagline {
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-content .social-links-container {
    margin-top: 3rem;
}

.hero-content .social-links-container p {
    color: var(--light-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.hero-content .social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-content .social-links a {
    color: var(--accent-color);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.hero-content .social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.hero-content h1 {
    font-family: var(--logo-font);
    font-size: 5.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-color);
    letter-spacing: 0.05em;
    font-weight: 700;
    text-transform: none;
    position: relative;
    display: inline-block;
    padding: 0.3em 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content h1::before,
.hero-content h1::after {
    content: '';
    position: absolute;
    left: 15%;
    right: 15%;
    height: 2px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-content h1::before {
    top: 0;
    transform-origin: left;
}

.hero-content h1::after {
    bottom: 0;
    transform-origin: right;
}

.hero-content h1.visible::before,
.hero-content h1.visible::after {
    transform: scaleX(1);
}

.hero-content .hero-description {
    margin-bottom: 3rem;
}

.section {
    padding: 2rem 2rem 4rem;
}

.section h2 {
    margin-bottom: 2rem;
}

@keyframes heroGlow {
    from {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3),
                     0 0 20px var(--primary-color),
                     0 0 40px var(--primary-color),
                     0 0 60px var(--accent-color);
    }
    to {
        text-shadow: 2px 2px 4px rgba(0,0,0,0.3),
                     0 0 30px var(--primary-color),
                     0 0 60px var(--primary-color),
                     0 0 90px var(--accent-color);
    }
}

.hero-content .tagline {
    font-family: var(--body-font);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    letter-spacing: 1px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid;
    margin: 0 1rem;
}

.cta-button.primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255,20,147,0.3);
}

.cta-button.secondary {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(255,215,0,0.3);
}

.hero-cta .cta-button:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    border-color: var(--accent-color);
    box-shadow: 0 6px 20px rgba(255,215,0,0.4);
}

/* About Section */
#about {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 6rem 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.band-bio {
    color: var(--light-color);
}

.band-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

#about h2 {
    color: var(--light-color);
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.feature-image {
    width: 100%;
    max-width: 300px;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover; /* This will ensure images fill the space without distortion */
    object-position: center; /* Center the image within the container */
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-image:hover {
    transform: scale(1.05);
}

.feature i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--accent-color);
}

/* Sections */
.section {
    min-height: calc(100vh - var(--navbar-height));
    padding: 1.5rem 2rem 4rem;
    margin-top: var(--navbar-height);
    position: relative;
}

.section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

/* Section colors */
#videos, #contact {
    background: var(--dark-color);
    color: var(--light-color);
}

#band, #gallery {
    background: var(--light-color);
    color: var(--dark-color);
}

#band h2,
#band > p {
    color: var(--dark-color);
}

.contact-section {
    background: var(--dark-color);
    color: var(--light-color);
}

.contact-section h2 {
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

.contact-text {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.contact-text p {
    color: var(--light-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.booking-form {
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.form-group label {
    color: var(--light-color);
    display: block;
    margin-bottom: 0.5rem;
}

.form-instructions {
    color: var(--light-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Fix band section spacing */
.band-section {
    padding: 6rem 2rem;
    text-align: center;
}

.band-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.band-intro h2 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--dark-color) !important;
    font-size: 2rem;
}

.band-intro p {
    line-height: 1.6;
    margin: 0 0 1rem;
    text-align: center;
    color: var(--dark-color) !important;
}

#home h2, #videos h2, #contact h2 {
    color: var(--light-color);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

#about h2, #band h2, #gallery h2 {
    color: var(--dark-color);
}

/* Add subtle separators between sections */
.section:not(:last-child) {
    border-bottom: 1px solid rgba(128,128,128,0.1);
}

/* Music Grid */
.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* Shows Grid */
.shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem;
}

/* Mashup List */
.mashup-preview {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
}

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

.mashup-list li {
    padding: 1rem;
    margin: 0.5rem 0;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.mashup-list li:hover {
    background: var(--primary-color);
    transform: translateX(10px);
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Gallery captions removed */
.gallery-caption {
    display: none;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--light-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

/* Featured Image */
.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Pricing Section */
.pricing-section {
    background: var(--dark-color);
    color: var(--light-color);
}

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

.pricing-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.package {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package:hover {
    transform: translateY(-5px);
}

.package.featured {
    border: 2px solid var(--accent-color);
    position: relative;
    background: rgba(255, 215, 0, 0.05);
}

.package h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.package-details ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.package-details li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.package-details li:before {
    content: '✓';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

.package-note {
    text-align: center;
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 700;
    margin-top: 1.5rem;
}

.pricing-notes {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto;
}

.pricing-notes p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .pricing-packages {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .package {
        margin-bottom: 1rem;
    }
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Booking Form */
.booking-form {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-input {
    margin-top: 0.3rem;
    cursor: pointer;
}

.checkbox-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    line-height: 1.4;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light-color);
    font-size: 0.9rem;
}

.required {
    color: var(--primary-color);
    margin-left: 0.2rem;
}

.form-instructions {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}



input, select, textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    background: rgba(255,255,255,0.05);
    color: var(--light-color);
    font-family: var(--body-font);
    transition: all 0.3s ease;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(255,20,147,0.2);
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,20,147,0.3);
}



/* Contact Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-info h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--light-color);
}

.contact-info a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.contact-method i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

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

/* Accessibility */
.skip-to-content {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 999;
}

.skip-to-content:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    padding: 1rem;
    background: var(--dark-color);
    color: var(--light-color);
    outline: 3px solid var(--accent-color);
    text-decoration: none;
}

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (forced-colors: active) {
    .navbar,
    .hero,
    .footer {
        forced-color-adjust: none;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

/* Form Messages */
.success-message {
    color: var(--accent-color);
    font-size: 1.2rem;
    line-height: 1.6;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    border: 1px solid var(--accent-color);
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Form Validation */
.validation-message {
    font-size: 0.8rem;
    margin-top: 0.3rem;
    min-height: 1.2em;
}

.validation-message.error {
    color: #ff4d4d;
}

input:invalid,
select:invalid {
    border-color: #ff4d4d;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content-wrapper {
    position: relative;
    display: inline-block;
}

#lightbox-img {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lightbox-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 70px; /* Reduced by 30% from original 100px */
    height: auto;
    z-index: 1;
    pointer-events: none;
}

.lightbox button {
    position: absolute;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid rgba(255, 255, 255, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
    padding: 0;
    opacity: 0.8;
}

.lightbox button:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.9);
    border-color: white;
    transform: scale(1.1);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* Gallery Section Styles */
.gallery-section {
    padding: 6rem 2rem;
    background: var(--dark-color);
    color: var(--light-color);
}

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

.gallery-swiper {
    width: 100%;
    height: 600px;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary-color);
    color: var(--light-color);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
}

.swiper-pagination-bullet {
    background: var(--light-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    opacity: 1;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: transparent;
    border: none;
    color: var(--light-color);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem;
    transition: color 0.3s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-close {
    top: 1rem;
    right: 1rem;
}

.lightbox-prev {
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.section-intro {
    max-width: 800px;
    width: 100%;
    margin: 0 auto 2rem;
    text-align: center;
    padding: 0 1rem;
    box-sizing: border-box;
}

.section-intro h2 {
    color: var(--accent-color);
    margin-bottom: 2rem;
    font-size: 2rem;
}

.section-intro p {
    color: var(--dark-color);
    font-size: 1.2rem;
    line-height: 1.6;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    width: 100%;
    overflow-x: hidden;
}

/* Swiper Styles */
.gallery-swiper {
    width: 100%;
    height: 500px;
    margin: 0 auto;
    background: transparent;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image {
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: white;
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.2);
}

.gallery-image {
    position: relative;
    max-width: 100%;
    max-height: 450px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image:hover {
    transform: scale(1.02);
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--primary-color);
}

@media (max-width: 768px) {
    .gallery-swiper {
        height: 300px;
    }
    .gallery-image {
        max-height: 250px;
    }
    
    /* Lightbox mobile adjustments */
    .lightbox button {
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-watermark {
        width: 50px;
        bottom: 10px;
        right: 10px;
    }
    
    #lightbox-img {
        max-width: 95vw;
        max-height: 80vh;
    }
    
    /* Footer mobile adjustments */
    .footer-content {
        padding: 0 1rem;
    }
    
    .social-links-container,
    .newsletter-container {
        padding: 0 1rem;
    }
    
    .newsletter-form {
        padding: 0;
    }
}
    padding: 1rem;
}

.gallery-swiper .gallery-item {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.gallery-swiper .gallery-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--primary-color);
}

.gallery-swiper .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.gallery-caption {
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
    color: var(--light-color);
    background: rgba(0, 0, 0, 0.8);
    padding: 1rem;
    border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .contact-sidebar {
        text-align: center;
    }

    .contact-method {
        justify-content: center;
    }

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

    input, select, textarea {
        font-size: 16px; /* Prevents zoom on mobile */
    }

    .submit-button {
        padding: 1.2rem; /* Larger touch target on mobile */
    }
}

.booking-info {
    text-align: center;
}

.booking-info .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 50px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.booking-info .cta-button:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-links a {
    color: var(--light-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-links a:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-2px);
    text-shadow: 0 0 15px var(--accent-color);
}

/* Video Section */
.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 1rem;
}

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

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

.video-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-info {
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255,20,147,0.3);
}

.video-info p {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.channel-link:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,20,147,0.3);
}

.channel-link i {
    font-size: 1.2rem;
}

.video-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: rgba(255,255,255,0.05);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
}

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

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 10px 10px 0 0;
}

.video-info {
    padding: 1rem;
    color: var(--light-color);
}

.video-info h3 {
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.video-info p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.video-section-header {
    text-align: center;
    margin-bottom: 1rem;
}

.video-section-header p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.channel-link {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.channel-link:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

/* Band Section */
.band-section {
    padding: 2rem 2rem 4rem;
}

.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.band-member {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.band-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.band-member:hover .member-image {
    transform: scale(1.05);
}

.member-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    color: var(--light-color);
    transform: translateY(70%);
    transition: transform 0.3s ease;
}

.band-member:hover .member-info {
    transform: translateY(0);
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.member-info .role {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.member-info p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    color: var(--light-color);
}

.member-info .credentials {
    font-size: 0.85rem;
    color: var(--light-color);
}

.band-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.band-intro p {
    color: var(--dark-color) !important;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 1;
}

/* Custom scrollbar for member info */
.member-info::-webkit-scrollbar {
    width: 6px;
}

.member-info::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.member-info::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: var(--light-color);
    padding: 0.5rem 0 1.5rem;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 4rem;
    position: relative;
}

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

.footer-section h3 {
    color: var(--light-color);
    font-size: 1rem;
    margin: 0 0 0.25rem;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    height: 32px;
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-section:last-child {
    position: absolute;
    bottom: 12px;
    left: 0;
    right: 0;
    text-align: center;
    padding-top: 0.15rem;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    height: auto;
}

.newsletter-form input,
.newsletter-form button {
    height: 32px;
}

.social-links a {
    color: var(--accent-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

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

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 280px;
}

.newsletter-form .form-group {
    flex: 1;
}

.newsletter-form input {
    width: 100%;
    height: 32px;
    padding: 0 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--light-color);
    font-size: 0.9rem;
}

.newsletter-form button {
    height: 32px;
    padding: 0 1.25rem;
    white-space: nowrap;
    background: var(--accent-color);
    color: var(--dark-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.newsletter-form button:hover {
    background: var(--primary-color);
    color: var(--light-color);
}
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid var(--light-color);
    border-radius: 4px;
    background: transparent;
    color: var(--light-color);
}

.newsletter-form button {
    padding: 0.5rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-color);
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-section:last-child {
        text-align: center;
    }

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

    .newsletter-form {
        flex-direction: column;
        margin: 0 auto;
    }
}

/* End of Styles */

/* Mobile Navigation Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light-color);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        padding: 1rem 0;
        z-index: 999;
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

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

    .nav-links a {
        padding: 1rem 2rem;
        color: var(--light-color);
        text-align: center;
        width: 100%;
        font-size: 1.1rem;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: var(--primary-color);
        color: var(--light-color);
    }
}

/* Tablet and Mobile Styles */
@media (max-width: 768px) and (orientation: portrait) {
    /* Hero Section Mobile Portrait Optimization */
    .hero-section {
        min-height: 100vh;
        height: auto;
        padding: 0;
        justify-content: flex-start;
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 75vh;
        background-image: url('../images/LC - Band Photo - Good 4.jpeg');
        background-repeat: no-repeat;
        background-position: center top;
        background-size: contain;
        filter: brightness(0.7);
        z-index: 1;
    }

    @media (max-width: 768px) and (orientation: portrait) {
        .hero-section::before {
            height: 40vh;
            background-position: center top;
            background-size: contain;
            top: var(--navbar-height);
        }

        .hero-content {
            padding: 0 1rem;
            min-height: 100vh;
            justify-content: flex-start;
        }

        .contact-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
            padding: 0 1rem;
            display: flex;
            flex-direction: column;
        }

        .contact-info {
            order: -1;
        }

        .contact-text {
            padding: 1.5rem;
        }

        .contact-text p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 1rem;
            padding: 0 0.5rem;
        }

        .hero-content h1 {
            margin-top: calc(40vh + var(--navbar-height));
            font-size: 2.2rem;
        }

        .hero-content .tagline {
            font-size: 0.9rem;
            margin-top: -0.5rem;
        }

        .hero-content .hero-description {
            margin-top: 2rem;
            font-size: 0.9rem;
            padding: 0 0.5rem;
        }

        .hero-content .cta-buttons {
            margin-top: 1rem;
            transform: none;
            margin-bottom: 3rem;
        }

        .hero-content .social-links-container {
            transform: none;
            padding-bottom: 4rem;
        }
    }

    .hero-content {
        position: relative;
        z-index: 3;
        width: 100%;
        padding: 0 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        min-height: 100vh;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        text-align: center;
        margin: 0;
        margin-top: calc(var(--navbar-height) + 1rem);
        letter-spacing: 1px;
    }

    .hero-content h1::before,
    .hero-content h1::after {
        content: '';
        position: absolute;
        height: 2px;
        width: 100px;
        background-color: var(--accent-color);
        top: 120%;
    }

    .hero-content .tagline {
        font-size: 1rem;
        text-align: center;
        margin: 0;
        margin-top: -1rem;
        white-space: nowrap;
        letter-spacing: 0.5px;
    }

    .hero-content .hero-description {
        font-size: 0.95rem;
        text-align: center;
        max-width: 90%;
        margin: 0;
        margin-top: 7.5rem;
    }

    .hero-content .cta-buttons {
        margin-top: auto;
        padding-bottom: 0;
        transform: translateY(4.5rem);
    }

    .hero-content .social-links-container {
        padding-bottom: 2rem;
        transform: translateY(2.5rem);
    }

    .footer-section:last-child {
        position: absolute;
        bottom: -12px;
        left: 0;
        right: 0;
        text-align: center;
        padding-top: 0.5rem;
        font-size: 0.85rem;
        border-top: 1px solid rgba(255,255,255,0.1);
        height: auto;
    }

    .hero-content .social-links-container {
        margin-top: 0.5rem;
        padding: 1rem 0 2rem;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    /* Hero Section Mobile Landscape Optimization */
    .hero-section::before {
        background-position: center center;
        transform: scale(1.05);
    }

    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: var(--navbar-height);
        left: 0;
        right: 0;
        background: var(--dark-color);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        gap: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        z-index: 1000;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 0.5rem 1rem;
    }

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

    /* General Section Padding */
    .section {
        padding: 1rem 1rem 3rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    /* Band Section */
    .band-members {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Gallery Section */
    .gallery-image {
        max-height: 300px;
    }

    /* Contact Section */
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-text {
        text-align: center;
    }

    /* CTA Buttons */
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        margin: 0.5rem;
        width: 100%;
        max-width: 300px;
    }

    /* Section Titles */
    .section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
}
        order: -1;
        text-align: center;
        padding: 0;
    }

    .booking-form {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Gallery Section */
    .gallery-item img {
        height: 200px;
    }

    /* Band Section */
    .band-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .band-member {
        flex-direction: column;
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }

    /* Form Adjustments */
    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    /* Section Padding */
    .section {
        padding: 1rem;
    }

    #videos, #contact {
        padding: 3rem 1rem;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    .hero-cta .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .logo-image {
        height: 50px;
    }

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

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-links a {
    color: var(--accent-color);
    font-size: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.4);
}

/* Hero Social Section */
.hero-social {
    margin-top: 2rem;
}

.hero-social .social-links a {
    background: rgba(255, 255, 255, 0.1);
}

.hero-social .social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Footer Social Section */
.site-footer {
    background: var(--dark-color);
    padding: 4rem 0;
    margin-top: 0;
    color: var(--light-color);
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-container {
    margin-bottom: 2rem;
}

.social-links-container h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-links-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Newsletter Signup Form */
.newsletter-container {
    text-align: center;
}

.newsletter-container h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.newsletter-container p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

/* Newsletter Form Styles */
.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
    padding: 1rem;
}

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

.newsletter-form .email-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.newsletter-form .email-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .submit-button {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.newsletter-form .submit-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Video Section */
#videos {
    background: var(--dark-color);
    color: var(--light-color);
    padding: 6rem 2rem;
}

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

.video-item {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.video-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

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

.video-info {
    padding: 0.75rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}

.video-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255,20,147,0.3);
}

.video-info p {
    color: var(--light-color);
    font-size: 0.9rem;
    opacity: 0.9;
}

.channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: var(--light-color);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.channel-link:hover {
    background: transparent;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,20,147,0.3);
}

.channel-link i {
    font-size: 1.2rem;
}

.video-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.video-section-header p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.8;
}

@media (max-width: 768px) {
    #videos {
        padding: 3rem 1rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .section {
        padding: 1rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .tagline {
        font-size: 1rem;
    }

    /* Section Titles */
    .section h2 {
        font-size: 1.6rem;
    }

    /* Band Section */
    .band-members {
        grid-template-columns: 1fr;
    }

    /* Gallery Section */
    .gallery-image {
        max-height: 250px;
    }

    /* General Spacing */
    .section {
        padding: 1rem 0.75rem 2rem;
    }

    /* Text Sizes */
    p {
        font-size: 1rem;
        line-height: 1.5;
    }

    /* Navigation */
    .navbar {
        padding: 0 0.75rem;
    }

    /* CTA Buttons */
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        margin: 0.25rem;
    }

    /* Contact Form */
    .contact-form input,
    .contact-form textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
