@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

[id] {
    scroll-margin-top: 120px;
}

.fixed-nav {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 8vw, 18rem);
    padding: 20px 0;
    z-index: 999;
    flex-wrap: wrap;
  
}

.fixed-nav a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 3px;
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    border-radius: 50px;
    padding: 8px 50px;
}

.fixed-nav a:visited {
    color: #00bfff;
}

.fixed-nav a:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.fixed-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(18px);
    z-index: -1;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.page-wrapper {
    position: relative;
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    position: relative;
    z-index: 1;
}

.logo-section {
    text-align: center;
    animation: fadeInDown 1s ease;
}

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

.logo-section img {
    max-width: 700px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    border-radius: 20px;
    opacity: 0.9;
    transition: transform 0.3s ease;
}

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

.card {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeIn 1s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.band-photo {
    text-align: center;
    margin-bottom: 40px;
}

.band-photo img {
    max-width: 75%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    transition: transform 0.3s ease;
}

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

.email b {
    display: none;
}

.booking {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0;
    color: #ff1493;
    text-shadow: 0 2px 10px rgba(255, 20, 147, 0.5);
}

.booking a {
    color: #00bfff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 900;
}

.booking a:hover {
    color: #00ff88;
}

.band-members {
    margin: 30px 0;
    font-size: 1.25rem;
    line-height: 2;
    font-weight: 400;
    text-align: center;
}

.band-members strong {
    color: #ffd700;
    font-weight: 600;
}

.manifesto {
    margin: 40px 0;
    font-size: 20px;
    line-height: 1.8;
    font-weight: 300;
    color: #fff;
    text-align: center;
    font-style: italic;
    text-shadow: 0 2px 20px rgba(0,0,0,0.8);
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    text-align: center;
    color: #ffd700;
    font-size: 48px;
    margin-bottom: 30px;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.gigs-content {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff1493;
    font-family: 'Inter', sans-serif;
    white-space: pre-line;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: center;
}

.gigs-content strong {
    color: #00bfff;
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

.gigs-content a {
    color: #00ff88;
    text-decoration: none;
    word-break: break-all;
    transition: color 0.3s;
}

.gigs-content a:hover {
    color: #ffd700;
}

.video-section {
    margin: 40px 0;
}

.video-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffd700;
    font-size: 32px;
    margin-bottom: 10px; 
    text-align: center;
    letter-spacing: 2px;
}

.subtitle {
    text-align: center;
    margin-bottom: 20px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
}

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

.music-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: #ffd700;
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px; 
    letter-spacing: 2px;
    line-height: 1.4;
}

.track {
    background: rgba(0, 0, 0, 0.5);
    padding: 25px;
    margin: 20px 0;
    border-radius: 15px;
    border-left: 4px solid #9370db;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.track:hover {
    transform: translateX(10px);
    border-color: #ff1493;
}

.track-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #00bfff;
    font-size: 18px;
}

audio {
    width: 50%;
}

.footer {
    text-align: center;
    padding: 40px 0;
}

.footer-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    background: linear-gradient(45deg, #ff1493, #00bfff, #ffd700, #00ff88);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    margin-bottom: 30px;
}

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

.footer-logo img {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
    opacity: 0.8;
    transition: transform 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    padding-top: 30px;
    padding-left: 10rem;
    padding-right: 10rem;
    font-weight: 600;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-name {
    margin: 0;
}

.back-to-top {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
}

.back-to-top:hover {
    color: #ffd700;
    transform: translateY(-2px);
}

.back-to-top,
.back-to-top:visited {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
}


@media (max-width: 1200px) {
    .fixed-nav {
        gap: 5rem;
        padding: 12px 10px;
        flex-wrap: wrap;
    }

    .fixed-nav a {
        font-size: 2rem;
        letter-spacing: 2px;
        padding: 6px 18px;
    }
}


@media (max-width: 800px) {
    .fixed-nav {
        gap: 1.5rem;
        padding: 12px 10px;
        flex-wrap: wrap;
    }

    .fixed-nav a {
        letter-spacing: 2px;
        padding: 6px 18px;
    }

    .fixed-nav::before {
        backdrop-filter: blur(10px);
    }

    [id] {
        scroll-margin-top: 90px;
    }

    audio {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .container {
        padding: 40px 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .manifesto {
        font-size: 18px;
    }
    
    .card {
        padding: 25px;
    }
    
    .footer-text {
        font-size: 36px;
    }
}

@media (max-width: 650px) {

    .fixed-nav {
        gap: 1rem;
        padding: 10px 8px;
    }

    .fixed-nav a {
        letter-spacing: 1px;
        padding: 6px 14px;
        font-size: 1.5rem;
    }

    [id] {
        scroll-margin-top: 80px;
    }

    audio {
        width: 100%;
    }

    .footer-bottom {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 1rem;
    }
}

@media (max-width: 450px) {

    .fixed-nav {
        gap: 0.5rem;
        padding: 10px 8px;
    }

    .fixed-nav a {
        font-size: 1rem;
    }
}