/* Focus indicators for accessibility */
a:focus,button:focus,input:focus,textarea:focus,select:focus{outline:2px solid #00ff88;outline-offset:2px;box-shadow:0 0 0 4px rgba(0,255,136,0.3);}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-green: #ffffff;
        --secondary-green: #ffffff;
        --dark-bg: #000000;
        --dark-accent: #000000;
        --text-light: #ffffff;
        --text-muted: #cccccc;
    }
}

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

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #001a0d 50%, #0a0a0a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    letter-spacing: 2px;
}

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

a {
    color: #e0e0e0;
}

a:hover {
    color: #00ff88;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff88;
    transition: width 0.3s ease;
    box-shadow: 0 0 5px rgba(0, 255, 136, 0.8);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(0, 255, 136, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 10%, rgba(64, 255, 128, 0.2) 0%, transparent 60%),
        linear-gradient(180deg, #000 0%, #001a0d 30%, #000 70%, #001a0d 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-left: 2rem;
    padding-right: 2rem;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(0, 255, 136, 0.4) 0%, transparent 100%),
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 136, 0.1) 30%, rgba(64, 255, 128, 0.15) 50%, rgba(0, 255, 136, 0.1) 70%, transparent 100%);
    animation: aurora 6s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background:
        radial-gradient(ellipse 30% 80% at 20% 50%, rgba(0, 255, 136, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 25% 60% at 80% 30%, rgba(64, 255, 128, 0.1) 0%, transparent 70%);
    animation: auroraShift 12s ease-in-out infinite;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    color: #00ff88;
    text-shadow:
        0 0 20px rgba(0, 255, 136, 0.8),
        0 0 40px rgba(0, 255, 136, 0.6),
        0 0 60px rgba(0, 255, 136, 0.4);
    animation: northernGlow 4s ease-in-out infinite alternate;
    letter-spacing: 4px;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-content img {
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    text-decoration: none;
    border: 2px solid #00ff88;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
    box-shadow:
        0 10px 25px rgba(0, 255, 136, 0.3),
        0 0 30px rgba(0, 255, 136, 0.5);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

@keyframes northernGlow {
    from {
        text-shadow:
            0 0 20px rgba(0, 255, 136, 0.8),
            0 0 40px rgba(0, 255, 136, 0.6),
            0 0 60px rgba(0, 255, 136, 0.4);
    }
    to {
        text-shadow:
            0 0 30px rgba(0, 255, 136, 1),
            0 0 60px rgba(0, 255, 136, 0.8),
            0 0 90px rgba(64, 255, 128, 0.6);
    }
}

@keyframes aurora {
    0% { opacity: 0.5; transform: translateY(0px) scale(1); }
    50% { opacity: 0.8; transform: translateY(-10px) scale(1.05); }
    100% { opacity: 0.6; transform: translateY(-5px) scale(1.02); }
}

@keyframes auroraShift {
    0% { transform: translateX(-10%) rotate(0deg); }
    25% { transform: translateX(5%) rotate(1deg); }
    50% { transform: translateX(-5%) rotate(-0.5deg); }
    75% { transform: translateX(8%) rotate(0.8deg); }
    100% { transform: translateX(-10%) rotate(0deg); }
}

/* Section Styling */
.section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #00ff88;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Band Members */
.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.member-card {
    background: linear-gradient(145deg, rgba(0, 26, 13, 0.8), rgba(0, 0, 0, 0.9));
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.member-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.member-card:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

.member-card:hover {
    transform: translateY(-10px);
    border-color: #00ff88;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 136, 0.3);
}

.member-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.2) 0%, rgba(0, 26, 13, 0.8) 100%);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #00ff88;
    border: 3px solid #00ff88;
    box-shadow:
        0 0 20px rgba(0, 255, 136, 0.4),
        inset 0 0 20px rgba(0, 255, 136, 0.1);
    overflow: hidden;
}

.member-card h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.member-role {
    color: #888;
    font-style: italic;
    margin-bottom: 1rem;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

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

.album-card {
    background: linear-gradient(145deg, rgba(0, 26, 13, 0.8), rgba(0, 0, 0, 0.9));
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.album-card:hover {
    transform: scale(1.05);
    border-color: #00ff88;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 255, 136, 0.4);
}

.album-cover {
    height: 200px;
    background:
        radial-gradient(circle at 30% 30%, rgba(0, 255, 136, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(64, 255, 128, 0.2) 0%, transparent 50%),
        linear-gradient(45deg, rgba(0, 26, 13, 0.9), rgba(0, 51, 26, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #00ff88;
    position: relative;
    overflow: hidden;
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.album-year {
    color: #888;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.95);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 255, 136, 0.3);
}

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

.footer h3 {
    color: #00ff88;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.footer p {
    color: #888;
    line-height: 1.8;
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    display: inline-block;
    margin: 0 1rem;
    padding: 10px;
    background: rgba(0, 26, 13, 0.8);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    border: 2px solid #00ff88;
    align-items: center;
    justify-content: center;
}

.social-links a img {
    max-width: 24px;
    max-height: 24px;
    filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(120deg); /* Green tint to match theme */
}

.social-links a:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.4);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

/* Mobile Navigation */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: rgba(0, 255, 136, 0.1);
    border-radius: 5px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(0, 255, 136, 0.2);
    border-color: #00ff88;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background: #00ff88;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-links.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0, 26, 13, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid rgba(0, 255, 136, 0.2);
    border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-links.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-links.mobile-menu a {
    padding: 15px 2rem;
    border-bottom: 1px solid rgba(0, 255, 136, 0.1);
    text-align: center;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar .nav-links:not(.mobile-menu) {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .nav-container {
        justify-content: space-between;
        padding: 0 1rem;
    }

    .nav-container img {
        max-width: 200px;
        height: auto;
    }

    .hero {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section {
        padding: 60px 1rem;
    }

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

    .section h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        margin-top: 1.5rem;
    }

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

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

    .member-card,
    .album-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .cta-button {
        padding: 18px 40px;
        font-size: 1.1rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .social-links a {
        margin: 1rem 1rem;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .album-info {
        padding: 1rem;
    }

    .album-cover {
        height: 250px;
    }
}

/* Touch-friendly improvements */
@media (max-width: 768px) and (pointer: coarse) {
    .member-card,
    .album-card {
        min-height: 44px;
    }

    .cta-button {
        min-width: 120px;
    }

    .nav-links.mobile-menu a {
        min-height: 48px;
    }
}
