/* Main CSS - Additional styles */

/* Press Kit Styles - WCAG AA Compliant */
.press-kit-section {
    padding: 80px 0;
}

.press-kit-section.section-dark {
    background: rgba(0, 0, 0, 0.4);
}

.press-kit-section .section-title {
    font-size: 2.25rem;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    padding-bottom: 1rem;
}

.press-kit-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

/* Tablet and Mobile Responsive Styles */
@media (max-width: 968px) {
    .press-kit-section {
        padding: 70px 0;
    }
}

@media (max-width: 768px) {
    .press-kit-section {
        padding: 60px 0;
    }
    
    .press-kit-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 2rem;
    }
    
    .press-kit-section .section-title::after {
        width: 40px;
        height: 2px;
    }
    
    .press-kit-section .page-title {
        font-size: 2.25rem;
    }
    
    .press-kit-section .page-subtitle {
        font-size: 1.125rem;
    }
}

.press-kit-section .page-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.press-kit-section .page-subtitle {
    font-size: 1.375rem;
    line-height: 1.6;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.press-kit-welcome {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: relative;
    overflow: hidden;
}

.press-kit-welcome::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
}

.press-kit-welcome::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, #ff6b35 50%, transparent 100%);
}

.press-kit-welcome-message {
    max-width: 100%;
    margin: 0;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 16px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    backdrop-filter: blur(10px);
}

.press-kit-welcome-message::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3), rgba(255, 107, 53, 0.1));
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-kit-welcome-message:hover::before {
    opacity: 1;
}

.press-kit-welcome-message p {
    font-size: 1.25rem;
    line-height: 1.9;
    color: #f5f5f5;
    margin-bottom: 1.75rem;
    font-weight: 400;
    letter-spacing: 0.01em;
}


.press-kit-welcome-message p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: #ffffff;
}


.press-facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 968px) and (min-width: 769px) {
    .press-facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.press-fact {
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.press-fact:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 107, 53, 0.45);
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
}

.press-fact h3 {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    line-height: 1.4;
}

.press-fact p {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
}

.press-bio {
    max-width: 75ch;
    margin: 0;
    line-height: 1.8;
    font-size: 1.125rem;
}

.press-bio p {
    margin-bottom: 1.75rem;
    color: #f0f0f0;
    line-height: 1.8;
}

.press-bio p:last-child {
    margin-bottom: 0;
}

.press-bio strong {
    color: #ffffff;
    font-weight: 600;
}

.tech-requirements {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
}

@media (max-width: 968px) {
    .tech-requirements {
        grid-template-columns: 1fr;
    }
}

.tech-section {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.tech-section:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
}

.tech-section h3 {
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
}

.tech-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-section li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #f0f0f0;
}

.tech-section li strong {
    color: #ffffff;
    font-weight: 600;
}

.tech-section li::before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

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

.asset-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    border: 2px solid rgba(255, 107, 53, 0.25);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.asset-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(255, 107, 53, 0.25);
    border-color: rgba(255, 107, 53, 0.45);
}

.asset-card:focus-within {
    outline: 3px solid #ff8c5a;
    outline-offset: 3px;
}

.asset-preview {
    width: 100%;
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.asset-preview img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.asset-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.asset-info {
    padding: 2rem;
}

.asset-name {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.4;
}

.asset-description {
    color: #e0e0e0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
}

.asset-type {
    color: #c0c0c0;
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    min-height: 44px;
    min-width: 120px;
}

.btn-small:focus {
    outline: 3px solid #ff8c5a;
    outline-offset: 2px;
}

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

@media (max-width: 968px) and (min-width: 769px) {
    .quotes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.press-quote {
    background: rgba(255, 255, 255, 0.08);
    border-left: 5px solid #ff6b35;
    padding: 2rem;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.press-quote:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    transform: translateX(4px);
}

.press-quote p {
    margin: 0;
    font-style: italic;
    line-height: 1.8;
    font-size: 1.125rem;
    color: #f0f0f0;
}

.setlist-info {
    max-width: 75ch;
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.8;
}

.setlist-info h3 {
    color: #ff6b35;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.setlist-info h3:first-child {
    margin-top: 0;
}

.setlist-info p {
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.setlist-info ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.setlist-info .btn {
    display: inline-block;
    margin-top: 0.5rem;
}

.setlist-info li {
    color: #f0f0f0;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.setlist-info strong {
    color: #ffffff;
    font-weight: 600;
}

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

.contact-info-item {
    background: rgba(255, 255, 255, 0.06);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 107, 53, 0.25);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 4px 16px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.contact-info-item h3 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.375rem;
    font-weight: 600;
    line-height: 1.4;
}

.contact-info-item p {
    margin: 0.75rem 0;
    font-size: 1.125rem;
    color: #f0f0f0;
    line-height: 1.7;
}

.contact-info-item a {
    color: #ff6b35;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.contact-info-item a:hover,
.contact-info-item a:focus {
    color: #ff8c5a;
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

.contact-info-item .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.75rem;
}

.contact-info-item .social-links a {
    color: #ff6b35;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    border: 2px solid #ff6b35;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 0.9375rem;
    font-weight: 500;
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.contact-info-item .social-links a:hover,
.contact-info-item .social-links a:focus {
    background: #ff6b35;
    color: #000000;
    outline: 3px solid #ff8c5a;
    outline-offset: 2px;
}

.contact-cta {
    text-align: left;
    margin-top: 2.5rem;
}

.contact-cta .btn {
    min-height: 48px;
    padding: 0.875rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-block;
}

.contact-cta .btn:focus {
    outline: 3px solid #ff8c5a;
    outline-offset: 3px;
}

.section-intro {
    text-align: left;
    max-width: 75ch;
    margin: 0 0 2.5rem 0;
    color: #e0e0e0;
    font-size: 1.1875rem;
    line-height: 1.8;
}

/* Tablet breakpoint (768px - 968px) */
@media (max-width: 968px) and (min-width: 769px) {
    .press-kit-section {
        padding: 70px 0;
    }
    
    .press-kit-section .section-title {
        font-size: 2rem;
    }
    
    .press-facts-grid {
        gap: 1.25rem;
    }
    
    .press-fact {
        padding: 1.5rem;
    }
    
    .tech-section,
    .contact-info-item {
        padding: 1.75rem;
    }
    
    .press-kit-welcome-message {
        padding: 2.5rem 2rem;
    }
}

/* Mobile breakpoint (max-width: 768px) */
@media (max-width: 768px) {
    .press-facts-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .tech-requirements,
    .assets-grid,
    .quotes-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .asset-preview {
        height: 150px;
    }
    
    .press-fact {
        padding: 1.5rem;
    }
    
    .tech-section,
    .contact-info-item {
        padding: 1.5rem;
    }
    
    .press-bio,
    .setlist-info {
        font-size: 1rem;
    }
    
    .section-intro {
        font-size: 1.0625rem;
    }
    
    .contact-info-item .social-links {
        flex-direction: column;
    }
    
    .contact-info-item .social-links a {
        width: 100%;
        min-width: auto;
    }
    
    .press-kit-welcome-message {
        padding: 2rem 1.5rem;
    }
    
    .press-kit-welcome-message p {
        font-size: 1.0625rem;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .press-kit-section {
        padding: 50px 0;
    }
    
    .press-kit-section .section-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .press-kit-section .section-title::after {
        width: 35px;
        height: 2px;
    }
    
    .press-fact {
        padding: 1.25rem;
    }
    
    .press-fact h3 {
        font-size: 0.8125rem;
    }
    
    .press-fact p {
        font-size: 1rem;
    }
    
    .tech-section,
    .contact-info-item,
    .asset-info {
        padding: 1.25rem;
    }
    
    .tech-section h3,
    .contact-info-item h3 {
        font-size: 1.25rem;
    }
    
    .press-bio,
    .setlist-info {
        font-size: 0.9375rem;
    }
    
    .section-intro {
        font-size: 1rem;
    }
    
    .press-kit-welcome {
        padding: 40px 0;
    }
    
    .press-kit-welcome-message {
        padding: 1.75rem 1.25rem;
        border-radius: 12px;
    }
    
    .press-kit-welcome-message p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .asset-preview {
        height: 120px;
    }
    
    .asset-name {
        font-size: 1.125rem;
    }
    
    .asset-description {
        font-size: 0.9375rem;
    }
    
    .press-quote {
        padding: 1.5rem;
    }
    
    .press-quote p {
        font-size: 1rem;
    }
    
    .setlist-info h3 {
        font-size: 1.25rem;
        margin-top: 2rem;
    }
    
    .contact-cta .btn {
        width: 100%;
    }
    
    .press-kit-section .members-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .member-card {
        padding: 0;
    }
    
    .member-info {
        padding: 1.25rem;
    }
}

/* Extra small mobile (max-width: 360px) */
@media (max-width: 360px) {
    .press-kit-section {
        padding: 40px 0;
    }
    
    .press-kit-section .section-title {
        font-size: 1.5rem;
    }
    
    .press-fact,
    .tech-section,
    .contact-info-item,
    .asset-info {
        padding: 1rem;
    }
    
    .press-kit-welcome-message {
        padding: 1.5rem 1rem;
    }
    
    .press-kit-welcome-message p {
        font-size: 0.9375rem;
    }
    
    .asset-preview {
        height: 100px;
    }
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Import Metal Mania font */
@font-face {
    font-family: 'Metal Mania';
    src: url('../fonts/metal-mania.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Fallback for Metal Mania font */
@font-face {
    font-family: 'Metal Mania';
    src: local('Metal Mania'), local('Arial Black'), local('Impact');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Custom Maiden Font */
@font-face {
    font-family: 'MaidenFont';
    src: url('../fonts/maidenfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    margin-bottom: 40px;
}

/* Section Styles */
.gigs-preview,
.band-intro,
.news-preview,
.newsletter,
.section {
    padding: 60px 0;
}

.section-dark {
    background: rgba(0, 0, 0, 0.3);
}

/* Quick Links CTA */
.quick-links-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(30, 58, 138, 0.2));
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: block;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.quick-link-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.quick-link-card:hover::before {
    opacity: 1;
}

.quick-link-card h3 {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.quick-link-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Button Large */
.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Override section padding for dark/photo gallery sections */
.section.section-dark,
.photo-gallery-section {
    padding: 30px 0 !important;
}

.photo-gallery-controls-section {
    padding: 20px 0 !important;
}

/* Grid Layouts */
.gigs-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .gigs-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }
}

@media (min-width: 1200px) {
    .gigs-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    }
}

/* Gig Cards */
.gig-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 1;
    transform: scale(1);
}

.gig-card.hidden {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
    max-height: 0;
    margin: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}

.gig-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gig-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(0, 123, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.gig-card:hover::before {
    transform: scaleX(1);
}

.gig-card:hover::after {
    opacity: 1;
}

.gig-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.gig-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
    border-color: var(--primary-color);
}

.gig-date {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
}

.gig-venue {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-color);
    line-height: 1.3;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
}

.gig-location {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1rem;
}

.gig-description {
    margin-bottom: 20px;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

/* Expandable description styles */
.gig-description-container {
    margin-bottom: 20px;
}

.gig-description-container .gig-description {
    margin-bottom: 10px;
}

.description-toggle {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 6px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    z-index: 1;
    margin-top: 10px;
}

.description-toggle:hover {
    background: rgba(196, 30, 58, 0.2);
    border-color: var(--primary-color);
    color: var(--accent-blue);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.description-toggle .toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.description-toggle.expanded .toggle-icon {
    transform: rotate(180deg);
}

.description-short,
.description-full {
    line-height: 1.6;
}

.gig-actions {
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.gig-ticket {
    display: block;
    width: 100%;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
    position: relative;
    overflow: hidden;
}

.gig-ticket::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gig-ticket:hover::before {
    width: 300px;
    height: 300px;
}

.gig-ticket:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.gig-ticket:active {
    transform: translateY(-1px);
}

.gig-ticket:focus-visible {
    outline: 3px solid var(--accent-blue);
    outline-offset: 2px;
}

/* Free entry display */
.gig-free-entry {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-top: 0;
    font-size: 1rem;
    border: 2px solid #218838;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    position: relative;
    overflow: hidden;
}

/* Ticket button variations */
.gig-ticket-free {
    background: linear-gradient(135deg, #28a745, #218838) !important;
    color: white !important;
    border-color: #218838 !important;
}

.gig-ticket-free:hover {
    background: linear-gradient(135deg, #218838, #1e7e34) !important;
    border-color: #1e7e34 !important;
}

.gig-ticket-paid {
    background: var(--primary-color) !important;
    color: var(--darker-bg) !important;
    border-color: var(--primary-color) !important;
}

.gig-ticket-paid:hover {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
}

.gig-ticket-unavailable {
    background: linear-gradient(135deg, #6c757d, #5a6268) !important;
    color: white !important;
    cursor: not-allowed;
    opacity: 0.8;
    border-color: #5a6268 !important;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2) !important;
}

.gig-ticket-unavailable:hover {
    background: linear-gradient(135deg, #6c757d, #5a6268) !important;
    transform: none !important;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.2) !important;
}

.artist-stats {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(196, 30, 58, 0.15);
    padding: 30px 0;
    margin: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.artist-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.02) 0%, rgba(0, 123, 255, 0.02) 100%);
    pointer-events: none;
}

.artist-stats .container {
    position: relative;
    z-index: 1;
}

.artist-stats-header {
    text-align: center;
    margin-bottom: 25px;
}

.artist-stats-title {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.4rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 600;
}

.artist-stats-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    opacity: 0.8;
}

.artist-stats .stats-grid-large {
    max-width: 400px;
    margin: 0 auto;
    gap: 20px;
}

.artist-stats .stat-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.artist-stats .stat-number {
    font-size: 1.8rem;
}

.artist-stats .stat-label {
    font-size: 0.85rem;
}

.artist-stats-cta {
    text-align: center;
    margin-top: 25px;
}

.artist-stats-cta .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    text-align: center;
}

.bandsintown-widget-container {
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    padding: 40px 0;
    margin: 40px 0;
}

.bandsintown-widget {
    text-align: center;
    color: var(--text-color);
}

.bandsintown-widget h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
}

.bandsintown-widget p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.bandsintown-widget .btn {
    background: var(--primary-color);
    color: var(--darker-bg);
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.bandsintown-widget .btn:hover {
    background: var(--accent-blue);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(196, 30, 58, 0.2);
    border-color: var(--accent-blue);
}

/* Featured Tour Section */
.featured-tour {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.3), rgba(26, 0, 0, 0.5));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.featured-tour::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(196,30,58,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.featured-tour-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.tour-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.tour-logo {
    margin: 20px 0 30px;
    text-align: center;
}

.tour-logo-image {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.tour-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--text-light);
}

.tour-highlights {
    list-style: none;
    margin-bottom: 40px;
}

.tour-highlights li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
    color: var(--text-light);
}

.tour-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.tour-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.album-artwork-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

.album-art {
    aspect-ratio: 1;
    border-radius: 10px;
    border: 3px solid rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    background: var(--dark-bg);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.album-art:hover {
    transform: translateY(-10px) rotateY(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
}

/* Section Headers */
.section-header-centered {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 10px;
    font-weight: 300;
}

/* Band Stats Section */
.band-stats-section {
    padding: 60px 0;
    background: rgba(196, 30, 58, 0.05);
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
}

.stat-label {
    display: block;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Band Introduction */
.band-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.band-intro-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.band-intro-text .lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.band-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    border: 3px solid rgba(196, 30, 58, 0.3);
    transition: all 0.3s ease;
}

.band-intro-image:hover img {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    transform: scale(1.02);
}

.band-intro-cta {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.band-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.band-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* News Cards */
.news-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.news-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(30, 58, 138, 0.2));
}

.testimonials-page-section {
    padding: 60px 0;
}

.testimonials-intro {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.testimonial-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    margin-bottom: 20px;
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    letter-spacing: 2px;
    display: block;
}

.testimonial-text {
    flex: 1;
    margin: 0 0 25px 0;
    padding: 0;
    border: none;
}

.testimonial-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

.testimonial-author {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.testimonial-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
    margin-bottom: 5px;
}

.testimonial-venue {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: normal;
}

.testimonials-cta {
    text-align: center;
    margin-top: 40px;
}

.testimonials-cta-section {
    padding: 60px 0;
}

.testimonials-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonials-cta-content .section-title {
    margin-bottom: 20px;
}

.testimonials-cta-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.testimonials-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Newsletter */
.newsletter {
    background: linear-gradient(45deg, var(--secondary-color), var(--darker-bg));
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-muted);
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

/* Unified Form Styles */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-input,
input[type="text"],
input[type="email"],
input[type="file"],
input[type="password"],
input[type="number"],
textarea,
select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-input:focus,
.form-input:focus-visible,
input[type="text"]:focus,
input[type="text"]:focus-visible,
input[type="email"]:focus,
input[type="email"]:focus-visible,
input[type="file"]:focus,
input[type="file"]:focus-visible,
input[type="password"]:focus,
input[type="password"]:focus-visible,
input[type="number"]:focus,
input[type="number"]:focus-visible,
textarea:focus,
textarea:focus-visible,
select:focus,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(196, 30, 58, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-input::placeholder,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="password"]::placeholder,
input[type="number"]::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 6px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 20px;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    min-width: 44px;
    min-height: 44px;
    border: 2px solid transparent;
}

.social-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

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

.icon {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* Loading states */
.loading {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
    font-size: 1.1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    position: relative;
    font-style: normal;
}

.loading::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

/* Error states */
.error {
    text-align: center;
    padding: 2rem;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    margin: 1rem 0;
    font-size: 1.1rem;
}

/* Optimize gig card loading */
.gigs-grid {
    min-height: 200px;
    position: relative;
}

/* Skeleton loading state */
.gig-card-skeleton {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.gig-card-skeleton::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.gig-card-skeleton .skeleton-line {
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 12px;
    animation: pulse 1.5s ease-in-out infinite;
}

.gig-card-skeleton .skeleton-line:nth-child(1) {
    width: 40%;
    height: 20px;
}

.gig-card-skeleton .skeleton-line:nth-child(2) {
    width: 80%;
    height: 24px;
}

.gig-card-skeleton .skeleton-line:nth-child(3) {
    width: 60%;
}

.gig-card-skeleton .skeleton-line:nth-child(4) {
    width: 100%;
    height: 80px;
}

.gig-card.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s ease-out forwards;
}

.gig-card.fade-in-up:nth-child(1) { animation-delay: 0.05s; }
.gig-card.fade-in-up:nth-child(2) { animation-delay: 0.1s; }
.gig-card.fade-in-up:nth-child(3) { animation-delay: 0.15s; }
.gig-card.fade-in-up:nth-child(4) { animation-delay: 0.2s; }
.gig-card.fade-in-up:nth-child(5) { animation-delay: 0.25s; }
.gig-card.fade-in-up:nth-child(6) { animation-delay: 0.3s; }
.gig-card.fade-in-up:nth-child(n+7) { animation-delay: 0.35s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation for multiple cards */
.gig-card:nth-child(1) { animation-delay: 0.1s; }
.gig-card:nth-child(2) { animation-delay: 0.2s; }
.gig-card:nth-child(3) { animation-delay: 0.3s; }
.gig-card:nth-child(4) { animation-delay: 0.4s; }
.gig-card:nth-child(5) { animation-delay: 0.5s; }
.gig-card:nth-child(6) { animation-delay: 0.6s; }

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }

.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }

.hidden { display: none; }
.visible { display: block; }

/* Page Header */
.page-header {
    background: linear-gradient(45deg, var(--secondary-color), var(--darker-bg));
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    animation: fadeInDown 0.8s ease-out;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

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

.page-title {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.page-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Gigs Filter */
.gigs-filter {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-controls {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(196, 30, 58, 0.1);
    border: 2px solid rgba(196, 30, 58, 0.3);
    color: var(--text-light);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.filter-btn:hover::before {
    width: 200px;
    height: 200px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.2);
}

.filter-btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #d6283a);
    border-color: var(--primary-color);
    color: var(--darker-bg);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    font-weight: 700;
}

.filter-btn.active::before {
    display: none;
}

.search-box {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

.search-box input:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

.search-box .search-clear:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

.search-box .search-clear {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    line-height: 1;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.search-box input:not(:placeholder-shown) ~ .search-clear,
.search-box.has-value .search-clear {
    opacity: 1;
    pointer-events: all;
}

.search-box .search-clear:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.search-results-count {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.search-box.has-results .search-results-count {
    opacity: 1;
}

/* Gigs Section */
.gigs-section {
    margin-bottom: 80px;
    padding: 40px 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gigs-section:nth-child(1) {
    animation-delay: 0.1s;
}

.gigs-section:nth-child(2) {
    animation-delay: 0.2s;
}

.gigs-section:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 50px 0;
}

.gigs-section .section-title {
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.gigs-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue));
    border-radius: 2px;
    animation: expandWidth 0.6s ease-out 0.3s both;
}

@keyframes expandWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.no-gigs-message {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-muted);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(196, 30, 58, 0.2);
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    animation: fadeIn 0.6s ease-out;
}

.no-gigs-message::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 3px solid rgba(196, 30, 58, 0.3);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.no-gigs-message p {
    margin-bottom: 20px;
}

.no-gigs-message a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 10px;
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.no-gigs-message a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(196, 30, 58, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.no-gigs-message a:hover::before {
    width: 300px;
    height: 300px;
}

.no-gigs-message a:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 30, 58, 0.3);
}

/* Gig Card Variations */
.gig-card.upcoming {
    border-color: rgba(196, 30, 58, 0.4);
}

.gig-card.upcoming:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
}

.gig-card.past {
    opacity: 0.75;
    border-color: rgba(255, 255, 255, 0.1);
}

.gig-card.past:hover {
    opacity: 0.9;
    border-color: rgba(255, 255, 255, 0.2);
}

.gig-status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gig-card.upcoming .gig-status {
    background: linear-gradient(135deg, var(--primary-color), #d6283a);
    color: var(--darker-bg);
    box-shadow: 0 2px 10px rgba(196, 30, 58, 0.4);
}

.gig-card.past .gig-status {
    background: linear-gradient(135deg, #6c757d, #5a6268);
    color: white;
}

.support-acts {
    margin-top: 20px;
    padding-top: 18px;
    border-top: 2px solid rgba(196, 30, 58, 0.2);
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

.support-acts strong {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.gig-setlist {
    display: inline-block;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.gig-setlist:hover {
    background: var(--primary-color);
    color: var(--darker-bg);
}

/* Booking CTA */
.booking-cta {
    background: linear-gradient(45deg, var(--secondary-color), var(--darker-bg));
    padding: 80px 0;
    text-align: center;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.booking-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature p {
    color: var(--text-muted);
    line-height: 1.6;
}

.booking-cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Featured Setlist */
.featured-setlist {
    margin-bottom: 60px;
}

.featured-setlist-card {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15) 0%, rgba(0, 123, 255, 0.1) 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.4);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-setlist-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

.featured-setlist-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(196, 30, 58, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: var(--primary-color);
}

.featured-setlist-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}

.badge-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--darker-bg);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.featured-setlist-content {
    padding: 50px 40px;
    position: relative;
}

.featured-setlist-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(196, 30, 58, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.featured-setlist-title-group {
    flex: 1;
    min-width: 300px;
}

.featured-setlist-title {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 3rem;
    color: var(--text-light);
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.featured-setlist-year {
    display: inline-block;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), rgba(196, 30, 58, 0.2));
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(196, 30, 58, 0.4);
}

.featured-setlist-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.featured-setlist-duration {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25), rgba(196, 30, 58, 0.15));
    color: var(--primary-color);
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 700;
    border: 1px solid rgba(196, 30, 58, 0.4);
}

.featured-setlist-description {
    margin-bottom: 35px;
    padding: 20px 25px;
    background: rgba(196, 30, 58, 0.15);
    border-left: 4px solid var(--primary-color);
    border-radius: 0 8px 8px 0;
}

.featured-setlist-description p {
    margin: 0;
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.7;
    font-style: italic;
}

.featured-setlist-songs {
    margin-bottom: 30px;
}

.songs-heading {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(196, 30, 58, 0.3);
}

.featured-songs-list {
    list-style: none;
    counter-reset: featured-song-counter;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.featured-song-item {
    counter-increment: featured-song-counter;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.featured-song-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.song-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-blue));
    color: var(--darker-bg);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.song-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.song-details .song-title {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1rem;
}

.song-details .song-album {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
}

.featured-setlist-notes {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 12px;
}

.featured-setlist-notes p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .featured-setlist-content {
        padding: 40px 30px;
    }
    
    .featured-setlist-title {
        font-size: 2.25rem;
    }
    
    .featured-setlist-header {
        flex-direction: column;
    }
    
    .featured-setlist-meta {
        align-items: flex-start;
    }
    
    .featured-songs-list {
        grid-template-columns: 1fr;
    }
    
    .featured-setlist-badge {
        position: relative;
        top: 0;
        right: 0;
        margin-bottom: 20px;
    }
}

/* Setlist Grid */
.setlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.setlist-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 30, 58, 0.15);
    backdrop-filter: blur(5px);
}

.setlist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
    border-color: rgba(196, 30, 58, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.setlist-card-featured {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.15), rgba(59, 130, 246, 0.1));
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.3);
    position: relative;
}

.setlist-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--primary-color));
    border-radius: 10px 10px 0 0;
}

.setlist-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--darker-bg);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 10px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

.setlist-card-featured:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.4);
    border-color: var(--accent-blue);
}

.setlist-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.setlist-header h3 {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    display: inline-block;
    margin-bottom: 0;
    font-size: 1.3rem;
    color: var(--text-light);
}

.setlist-duration {
    background: rgba(196, 30, 58, 0.1);
    color: var(--text-muted);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.setlist-songs ol {
    list-style: none;
    counter-reset: song-counter;
}

.setlist-songs li {
    counter-increment: song-counter;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 30px;
}

.setlist-songs li::before {
    content: counter(song-counter);
    position: absolute;
    left: 0;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
}

.setlist-songs .song-title {
    color: var(--text-light);
    font-weight: 500;
}

.setlist-songs .song-album {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-style: italic;
    margin-left: 8px;
}

.setlist-description {
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(196, 30, 58, 0.08);
    border-left: 3px solid rgba(196, 30, 58, 0.3);
    border-radius: 0 5px 5px 0;
}

.setlist-description p {
    margin: 0;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.5;
    font-size: 0.95rem;
}

.setlist-notes {
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 5px;
}

.setlist-notes p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.song-title {
    font-weight: 600;
    color: var(--text-color);
}

.song-album {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 8px;
}

/* Repertoire Controls */
.repertoire-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 200px;
    padding: 12px 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.search-input::placeholder {
    color: var(--text-muted);
}

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

.filter-select {
    padding: 12px 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

/* Fix select dropdown options */
.filter-select option {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 8px;
}

/* General select styling for all select elements */
select {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    padding: 8px 12px;
    font-size: 1rem;
}

select option {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 8px;
}

select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

/* Song Grid */
.song-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.song-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 30, 58, 0.1);
    overflow: hidden;
    min-height: 150px;
}

.song-info {
    flex: 2 1 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.song-album-art {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    background: #111;
}

.song-album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.song-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.song-card h4 {
    color: var(--text-light);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.song-album {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-left: 0;
}

/* Setlist Builder */
.setlist-builder {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.builder-info h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
}

.builder-info ul {
    list-style: none;
    margin-bottom: 20px;
}

.builder-info li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 25px;
}

.builder-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

/* Featured Article */
.featured-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(0, 123, 255, 0.05) 100%);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 60px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--primary-color));
    background-size: 200% 100%;
    animation: shimmer 3s ease-in-out infinite;
}

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

.featured-article:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(196, 30, 58, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: var(--primary-color);
}

.article-image {
    position: relative;
    overflow: hidden;
}

.article-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.article-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-article:hover .article-image img {
    transform: scale(1.08);
}

.article-content {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
    align-items: center;
}

.article-date {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date::before {
    content: '📅';
    font-size: 1rem;
}

.article-category {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(196, 30, 58, 0.1));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    box-shadow: 0 2px 8px rgba(196, 30, 58, 0.2);
}

.article-content h2 {
    color: var(--text-light);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 2rem;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.featured-article:hover .article-content h2 {
    transform: translateX(4px);
}

.article-content p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 1.05rem;
}

@media (max-width: 968px) {
    .featured-article {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .article-image img {
        min-height: 300px;
    }
    
    .article-content {
        padding: 40px 30px;
    }
    
    .article-content h2 {
        font-size: 1.75rem;
    }
}

/* Article Body Content (for full article pages) */
.article-body {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-body h2 {
    color: var(--text-light);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-body h3 {
    color: var(--text-light);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-body p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin-left: 30px;
    margin-bottom: 20px;
    color: var(--text-muted);
}

.article-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-body strong {
    color: var(--text-light);
    font-weight: 600;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-body a:hover {
    color: var(--accent-blue);
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
    transition: all 0.3s ease;
    align-items: stretch;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 36px;
    }
}

@media (min-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
    }
}

.news-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 2px solid rgba(196, 30, 58, 0.25);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    margin: 0;
    height: 100%;
    min-height: 480px;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-blue), var(--primary-color));
    background-size: 200% 100%;
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.news-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(0, 123, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.news-card:hover::before {
    transform: scaleX(1);
    animation: shimmer 2s ease-in-out infinite;
}

.news-card:hover::after {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(196, 30, 58, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.news-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 2;
}

.news-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.2), rgba(0, 123, 255, 0.1));
}

.news-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
    z-index: 1;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 0;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    z-index: 2;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 18px;
    align-items: center;
}

.news-date {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.news-category {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.25), rgba(196, 30, 58, 0.15));
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(196, 30, 58, 0.4);
    box-shadow: 0 2px 6px rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.news-card:hover .news-category {
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.35), rgba(196, 30, 58, 0.25));
    transform: scale(1.05);
}

.news-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    margin-left: auto;
}

.news-content h3 {
    color: var(--text-light);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    transform: none;
    display: inline-block;
    margin-bottom: 16px;
    font-size: 1.4rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.news-card:hover .news-content h3 {
    color: var(--primary-color);
}

.news-content p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.95rem;
}

.news-excerpt {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-card-link::after {
    content: 'Read More →';
    display: block;
    margin-top: auto;
    padding-top: 16px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.news-card:hover .news-card-link::after {
    opacity: 1;
    transform: translateY(0);
}

/* Section Header Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 30px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.section-header h2 {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 2.5rem;
    color: var(--text-light);
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--text-light) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-header {
        margin-bottom: 40px;
        padding-bottom: 24px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

.news-content-container {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(196, 30, 58, 0.2);
    width: 100%;
    box-sizing: border-box;
}

.news-content-container p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-content-container h2,
.news-content-container h3,
.news-content-container h4 {
    color: var(--text-light);
    margin-top: 20px;
    margin-bottom: 10px;
}

.news-content-container ul,
.news-content-container ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.news-content-container li {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 5px;
}

.news-card.expanded .news-content-container {
    display: block;
    width: 100%;
    box-sizing: border-box;
}

/* Make expanded cards take full width */
.news-card.expanded {
    grid-column: 1 / -1;
    max-width: none;
    transform: none;
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    border-color: var(--accent-blue);
    z-index: 10;
    position: relative;
    margin-top: 30px;
    margin-bottom: 30px;
    height: auto;
    min-height: unset;
}

/* Newsletter Signup */
.newsletter-signup {
    background: linear-gradient(45deg, var(--secondary-color), var(--darker-bg));
    padding: 60px 0;
    text-align: center;
}

.newsletter-content h2 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 20px;
}

.newsletter-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

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

.newsletter-form .form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.newsletter-form .form-input::placeholder {
    color: var(--text-muted);
}

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

/* Gallery Controls */
.gallery-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.gallery-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    background: rgba(196, 30, 58, 0.1);
    border: 1px solid rgba(196, 30, 58, 0.3);
    color: var(--text-light);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--darker-bg);
}

.gallery-search {
    flex: 1;
    min-width: 200px;
}

/* Photo Gallery */
.photo-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.photo-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    color: var(--text-light);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 5px;
}

.photo-overlay p {
    color: var(--text-muted);
    font-size: 0.9rem;
}


@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

/* Featured Album */
.featured-album {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.album-preview {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    align-items: center;
}

.album-cover img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.album-info h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 10px;
}

.album-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.album-stats {
    display: flex;
    gap: 30px;
}

.album-stats span {
    display: block;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 600;
}

.album-stats span::after {
    content: attr(data-label);
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 5px;
}

/* Photo Upload */
.photo-upload {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.upload-content {
    text-align: center;
    margin-bottom: 30px;
}

.share-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.share-option {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 25px;
    text-align: left;
}

.share-option h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.share-option p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-share-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    vertical-align: middle;
}

.btn-social .social-icon {
    width: 22px;
    height: 22px;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
    /* filter removed for original brand color */
}

.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

.btn-tiktok {
    background: #000;
    color: white;
}

.btn-tiktok:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-social .social-icon {
    width: 20px;
    height: 20px;
    fill: var(--text-light);
}

.dm-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.story-tips ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.story-tips li {
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.story-tips li::before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.photo-guidelines {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 25px;
    margin-top: 30px;
    text-align: left;
}

.photo-guidelines h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.photo-guidelines p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.photo-guidelines ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.photo-guidelines li {
    color: var(--text-muted);
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.photo-guidelines li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.upload-content h2 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
}

.upload-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.upload-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.upload-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 600;
}

.upload-form .form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(196, 30, 58, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

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

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

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

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

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: var(--primary-color);
    color: var(--darker-bg);
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    text-align: center;
    color: var(--text-light);
    background: rgba(0, 0, 0, 0.8);
    padding: 15px;
    border-radius: 5px;
}

.lightbox-caption h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 5px;
}

.lightbox-caption p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(196, 30, 58, 0.2);
    color: var(--darker-bg);
    border: none;
    padding: 15px 20px;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

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

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

/* Hero title main image */
.hero-title-main {
    display: block;
    max-width: 800px;
    height: auto;
    margin: 0 auto 20px auto;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* Hero title styling */
.hero-title {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    display: inline-block;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title-sub {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-motto {
    font-size: 1.2rem;
    color: var(--accent-blue);
    margin-top: 15px;
    display: block;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-fullwidth {
    margin-bottom: 60px;
}

.contact-form-fullwidth {
    width: 100%;
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.contact-form-section .section-title {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form validation styles */
.form-input.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.field-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

/* Form messages */
.form-message {
    padding: 15px 20px;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
}

.form-message-success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.form-message-error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

/* Loading state */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Shop Page Styles */
.shop-section {
    padding: 80px 0;
    min-height: calc(100vh - 200px);
}

.shop-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 100%;
}

.shop-images {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.shop-image-wrapper {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    border: 2px solid rgba(196, 30, 58, 0.25);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.shop-image-wrapper:hover {
    border-color: rgba(196, 30, 58, 0.5);
    box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
}

.shop-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: var(--dark-bg);
}

.shop-image-thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.thumbnail-button {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 8px;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.thumbnail-button:hover {
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.thumbnail-button.active {
    border-color: var(--primary-color);
    background: rgba(196, 30, 58, 0.2);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.4);
}

.thumbnail-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.shop-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.product-title {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 0;
}

.shop-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 8px;
    display: block;
}

.form-select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(196, 30, 58, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-select:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(196, 30, 58, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-select.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.2);
}

.form-select option {
    background: var(--darker-bg);
    color: var(--text-light);
    padding: 12px;
}

.form-error {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    display: block;
    min-height: 20px;
}

.shop-messages {
    padding: 15px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-messages.success {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
}

.shop-messages.error {
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.shop-messages.warning {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border: 1px solid rgba(243, 156, 18, 0.3);
}

.button-loader {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--text-light);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    margin-left: 10px;
    vertical-align: middle;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.button-text {
    display: inline-block;
}

@media (max-width: 968px) {
    .shop-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .shop-images {
        position: static;
    }

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

@media (max-width: 768px) {
    .shop-section {
        padding: 60px 0;
    }

    .shop-container {
        gap: 40px;
    }

    .shop-image-wrapper {
        padding: 16px;
    }

    .shop-image-thumbnails {
        gap: 12px;
    }

    .thumbnail-button {
        width: 80px;
        height: 80px;
    }

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

    .product-description {
        font-size: 1rem;
    }
}

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

.contact-info-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.contact-info-section .section-title {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 30px;
    font-size: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-method h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-method p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

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

.contact-method .email-button {
    margin-top: 10px;
    display: inline-block;
    font-size: 1.2rem;
    padding: 18px 40px;
    min-width: 200px;
    text-align: center;
    text-decoration: none;
    color: var(--text-light);
}

.contact-method .email-button:hover {
    color: var(--darker-bg);
}

.contact-method .email-address-display {
    margin-top: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
}

.band-info {
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.band-info h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.band-info ul {
    list-style: none;
    padding: 0;
}

.band-info li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.band-info li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.social-contact h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.social-contact .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    width: 100%;
}

.social-contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    height: 110px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    padding: 10px;
}

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

.social-contact .social-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.15);
    border-color: var(--primary-color);
}

.faq-item h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Videos Section */
.videos-section {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.video-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    border-color: var(--primary-color);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

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

.video-description {
    padding: 25px;
}

.video-description h3 {
    color: var(--primary-color);
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.video-description p {
    color: var(--text-muted);
    line-height: 1.6;
}

.videos-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(196, 30, 58, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(196, 30, 58, 0.2);
}

.videos-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.videos-cta a {
    color: var(--primary-color);
    text-decoration: underline;
}

.videos-cta a:hover {
    color: var(--accent-blue);
}

.videos-social {
    margin-top: 20px;
}

/* Videos Preview Section */
.videos-preview {
    padding: 80px 0;
}

.videos-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-preview-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(196, 30, 58, 0.2);
    transition: all 0.3s ease;
}

.video-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(196, 30, 58, 0.3);
    border-color: var(--primary-color);
}

.videos-preview .videos-cta {
    text-align: center;
    margin-top: 0;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.videos-preview .videos-cta p {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Enhanced touch targets and spacing */
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-link {
        padding: 16px 12px;
        min-height: 48px;
    }
    
    .band-intro-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .band-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 16px;
    }
    
    .form-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-input,
    input[type="text"],
    input[type="email"],
    input[type="file"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        padding: 16px;
        min-height: 48px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .gigs-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gig-card,
    .news-card {
        padding: 24px;
    }
    
    .filter-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }


    .bandsintown-widget h3 {
        font-size: 1.5rem;
    }

    .bandsintown-widget p {
        font-size: 1rem;
    }

    .gig-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .filter-btn {
        padding: 16px 24px;
        min-height: 48px;
        font-size: 16px;
    }
    
    .search-box {
        width: 100%;
    }
    
    .search-box input {
        padding: 16px;
        min-height: 48px;
        font-size: 16px;
    }
    
    .booking-features {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .booking-cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    /* Make all buttons full width on mobile */
    .btn {
        width: 100%;
        max-width: none;
    }
    
    .booking-cta-buttons .btn {
        width: 100%;
        max-width: none;
        padding: 16px 24px;
        min-height: 48px;
    }
    
    .setlist-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .repertoire-controls {
        flex-direction: column;
        gap: 16px;
    }
    
    .song-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .videos-preview-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .gallery-controls {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .gallery-filters {
        justify-content: center;
        gap: 12px;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
    
    .album-preview {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .album-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .lightbox-prev,
    .lightbox-next {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        transform: none;
        margin: 10px;
        min-width: 48px;
        min-height: 48px;
    }
    
    .lightbox-content {
        max-width: 95%;
        max-height: 80%;
    }
    
    /* Contact page responsive */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section,
    .contact-info-section {
        padding: 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .social-contact .social-links {
        justify-content: center;
        gap: 12px;
    }
    
    .social-contact .social-links a {
        flex: 0 1 calc(50% - 6px);
        min-width: 120px;
        height: 60px;
    }
    
    /* Share options mobile optimization */
    .share-options {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 30px 0;
    }
    
    .share-option {
        padding: 20px;
        text-align: center;
    }
    
    .share-option h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .share-option p {
        margin-bottom: 16px;
    }
    
    .social-share-buttons {
        gap: 10px;
    }
    
    .btn-social {
        padding: 14px 16px;
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .dm-buttons {
        gap: 10px;
    }
    
    .btn-secondary {
        padding: 14px 16px;
        font-size: 0.9rem;
    }
    
    .story-tips li {
        padding: 6px 0;
        padding-left: 18px;
        text-align: left;
    }
    
    .photo-guidelines {
        padding: 20px;
        margin-top: 20px;
        text-align: center;
    }
    
    .photo-guidelines h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .photo-guidelines li {
        padding: 6px 0;
        padding-left: 22px;
        text-align: left;
    }
    
    /* Enhanced footer for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-section ul li a {
        padding: 8px 0;
        min-height: 32px;
        display: flex;
        align-items: center;
    }
}

@media (max-width: 480px) {
    /* Extra small mobile optimizations */
    .container {
        padding: 0 16px;
    }
    
    .hero-title-main {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: 6px;
        
        padding: 6px 0;
        margin: 6px 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-title-sub {
        font-size: clamp(0.8rem, 2vw, 1.2rem);
        letter-spacing: 0.5px;
        
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 16px 24px;
        font-size: 16px;
        min-height: 48px;
        width: 100%;
        max-width: none;
    }
    
    .hero-cta {
        gap: 16px;
    }
    
    .setlist-card,
    .news-card,
    .photo-item {
        margin-bottom: 20px;
    }
    
    .song-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .photo-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .gallery-filters {
        flex-direction: column;
        gap: 12px;
    }
    
    .filter-btn {
        text-align: center;
        padding: 16px 20px;
        min-height: 48px;
    }
    
    /* Enhanced form inputs for small screens */
    .form-input,
    input[type="text"],
    input[type="email"],
    input[type="file"],
    input[type="password"],
    input[type="number"],
    textarea,
    select {
        padding: 16px;
        min-height: 48px;
        font-size: 16px;
    }
    
    /* Better spacing for small screens */
    .gigs-preview,
    .band-intro,
    .news-preview,
    .newsletter,
    .section {
        padding: 30px 0;
    }
    
    /* Hero content overflow protection */
    .hero-content {
        padding: 0 12px;
        max-width: 100%;
        overflow: visible;
        text-align: center;
        width: 100%;
    }
    
    .hero-title-main,
    .hero-title-sub {
        max-width: 100%;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .gig-card,
    .news-card {
        padding: 20px;
    }
    
    /* Share options extra small mobile optimization */
    .share-options {
        gap: 16px;
        margin: 25px 0;
    }
    
    .share-option {
        padding: 16px;
    }
    
    .share-option h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .btn-social,
    .btn-secondary {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .photo-guidelines {
        padding: 16px;
        margin-top: 16px;
    }
    
    /* Improved navigation for small screens */
    .nav-menu {
        padding: 16px;
    }
    
    .nav-link {
        padding: 16px 12px;
        min-height: 48px;
        font-size: 16px;
    }
}

@media (max-width: 360px) {
    /* Extra small mobile devices */
    .hero-title-main {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
        margin-bottom: 4px;
        transform: none;
        padding: 4px 0;
        margin: 4px 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-title-sub {
        font-size: clamp(0.7rem, 1.5vw, 1rem);
        letter-spacing: 0.3px;
        transform: none;
    }
    
    .hero-content {
        padding: 0 8px;
        overflow: visible;
        text-align: center;
        width: 100%;
    }
    
    .hero-cta {
        gap: 12px;
    }
    
    .btn {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 320px) {
    /* Very small mobile devices */
    .hero-title-main {
        font-size: clamp(1rem, 2.5vw, 1.5rem);
        transform: none;
        padding: 2px 0;
        margin: 2px 0;
        text-align: center;
        width: 100%;
    }
    
    .hero-title-sub {
        font-size: clamp(0.6rem, 1.5vw, 0.9rem);
        transform: none;
    }
    
    .hero-content {
        padding: 0 4px;
        text-align: center;
        width: 100%;
    }
}

/* About Page Styles */
.band-story {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

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

.band-story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.member-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(196, 30, 58, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.2);
    border-color: var(--primary-color);
}

.member-image {
    width: 100%;
    min-height: 250px;
    height: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
}

.member-image img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.3s ease;
    display: block;
}

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

.member-info {
    padding: 25px;
}

.member-name {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member-role {
    font-size: 1.1rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.member-tribute {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
    font-style: italic;
}

.member-description {
    color: var(--text-light);
    line-height: 1.6;
}

.musical-focus {
    padding: 80px 0;
}

.focus-content {
    max-width: 800px;
    margin: 0 auto;
}

.focus-content h3 {
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    display: inline-block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.focus-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.focus-content li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.focus-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.community {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.02);
}

.community .section-title,
.band-members .section-title,
.musical-focus .section-title {
    text-align: center;
    display: block;
    width: 100%;
    transform: none;
    margin-left: auto;
    margin-right: auto;
}

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

.community-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.community-content ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.community-content li {
    color: var(--text-light);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    padding-left: 25px;
}

.community-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.page-motto {
    font-size: 1.3rem;
    color: var(--accent-blue);
    margin-top: 20px;
    font-weight: 600;
    font-family: 'MaidenFont', 'Metal Mania', cursive, sans-serif;
    
    animation: pulse 2s infinite;
}

@media print {
    .header,
    .footer,
    .nav-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
    }
    
    .hero-video {
        display: none;
    }
}

/* Privacy Policy Page Styles */
.content-container {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-container h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-container h3 {
    color: var(--text-light);
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.content-container p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.content-container ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-container li {
    margin-bottom: 8px;
    color: var(--text-color);
}

.content-container .last-updated {
    background: rgba(196, 30, 58, 0.1);
    border-left: 3px solid var(--accent-gold);
    padding: 15px;
    margin-bottom: 30px;
    border-radius: 0 5px 5px 0;
}

.content-container strong {
    color: var(--primary-color);
}

/* Cookie Notice Styles */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid var(--accent-gold);
    color: var(--text-color);
    padding: 15px 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-notice-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

.cookie-text a {
    color: var(--accent-blue);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.cookie-text a:hover {
    color: var(--primary-color);
}

.cookie-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cookie-btn {
    background: transparent;
    border: 1px solid var(--accent-gold);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-btn:hover {
    background: var(--accent-blue);
    color: var(--bg-dark);
}

.cookie-btn.cookie-btn-primary {
    background: var(--accent-blue);
    color: var(--bg-dark);
}

.cookie-btn.cookie-btn-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

.cookie-close {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cookie-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--accent-blue);
}

/* Adjust body padding when cookie notice is shown */
body.cookie-notice-active {
    padding-bottom: 80px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-notice-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        padding: 10px 16px;
    }
    
    body.cookie-notice-active {
        padding-bottom: 120px;
    }
}

/* Responsive styles for new homepage sections */
@media (max-width: 968px) {
    .featured-tour-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .album-artwork-grid {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .band-intro-content {
        grid-template-columns: 1fr;
    }
    
    .band-intro-image {
        order: -1;
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .featured-tour {
        padding: 60px 0;
    }
    
    .tour-cta {
        flex-direction: column;
    }
    
    .tour-cta .btn {
        width: 100%;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
    
    .band-intro-cta {
        flex-direction: column;
    }
    
    .band-intro-cta .btn {
        width: 100%;
    }
    
    .section-header-centered {
        margin-bottom: 30px;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 25px;
    }
    
    .testimonials-cta-buttons {
        flex-direction: column;
    }
    
    .testimonials-cta-buttons .btn {
        width: 100%;
    }
    
    /* News page responsive */
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .news-card {
        min-height: auto;
    }
    
    .news-image {
        height: 200px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-content h3 {
        font-size: 1.2rem;
    }
    
    .featured-article {
        margin-bottom: 40px;
    }
    
    .article-content {
        padding: 30px 24px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
}

 
