/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #fff;
    font-weight: 100;
    background-color: #000;
}

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

/* Header and Navigation */
header {
    background-color: #000;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #fff;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.1);
}

.logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.band-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.25rem;
    color: #fff;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}

.band-name.visible {
    opacity: 1;
    transform: translateX(0);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 8px 16px;
    border: 2px solid #fff;
    border-radius: 25px;
    background-color: #000;
    transition: all 0.3s;
    text-decoration: none;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    white-space: nowrap;
}

.social-icon:hover {
    background-color: #fff;
    color: #000;
}

.social-icon .icon-svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.social-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    display: none;
}

/* Show text for contact button on wide screens */
.social-icon[aria-label="Contact"] .social-text {
    display: block;
}

/* On wide screens, make buttons circular (icon only) except contact */
@media (min-width: 769px) {
    .social-icon {
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        gap: 0;
    }

    .social-icon[aria-label="Contact"] {
        width: auto;
        height: 40px;
        padding: 8px 16px;
        border-radius: 25px;
        gap: 0.5rem;
    }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s;
}

/* Hero Section - Band Image */
.hero {
    width: 100%;
    padding: 0;
    margin-top: 0;
}

.band-image-container {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    max-height: 700px;
    background-color: #000000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.band-image {
    width: 100%;
    height: 110%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: opacity 0.1s ease, transform 0.1s ease-out;
    will-change: transform;
    transform: translateY(-20px);
}

.hero-title {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 10vw, 10rem);
    color: #fff;
    text-align: center;
    z-index: 10;
    white-space: nowrap;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    opacity: 0.8;
    margin: 0;
}

/* Sections */
section {
    padding: 5px;
    background-color: #000;
}

h2 {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    text-align: center;
    color: #fff;
    padding: 1rem 2rem;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about {
    text-align: center;
}

.about .container {
    padding: 2rem 2rem;
    background-color: #000;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1000px;
    margin: 1rem auto 0;
    text-align: left;
}

.about-image {
    width: 250px;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 4px;
}

.about-text {
    flex: 1;
}

.about p {
    max-width: 800px;
    margin: 0 auto 1rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 400;
}

.about-text p {
    margin: 0 0 1rem 0;
    max-width: none;
}

/* Music Section */
.music {
    text-align: center;
}

.music .container {
    padding: 2rem 2rem;
    background-color: #000;
}

.spotify-embed {
    padding: 1rem;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spotify-embed iframe {
    max-width: 100%;
    border: none;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #fff;
}

footer p {
    color: #888;
    font-weight: 300;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: calc(100% + 3px);
        left: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        text-align: center;
        transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease;
        padding: 0;
        gap: 1rem;
        border-bottom: 3px solid #fff;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
    }

    .nav-links.active {
        max-height: 500px;
        padding: 2rem 0;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links .social-icon {
        min-width: 300px;
        width: 100%;
        margin: 0 auto;
        justify-content: center;
        padding: 8px 16px;
        border-radius: 25px;
        gap: 0.5rem;
    }

    .nav-links .social-text {
        display: block;
    }

    .menu-toggle {
        display: flex;
    }

    .band-image-container {
        height: 50vh;
        min-height: 300px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 8rem);
        bottom: 30px;
    }

    h2 {
        font-size: 1.5rem;
        padding: 0.75rem 1rem;
    }

    .about .container,
    .music .container {
        padding: 2rem 1rem;
    }

    .about-content {
        flex-direction: row;
        text-align: left;
        gap: 1.5rem;
    }

    .about-image {
        width: 180px;
        aspect-ratio: 9 / 20;
        margin-top: 5px;
    }

    .about-text {
        text-align: left;
    }

    section {
        padding: 10px 0;
    }
}

@media (max-width: 480px) {
    .band-image-container {
        height: 40vh;
        min-height: 250px;
    }

    .hero-title {
        font-size: clamp(1rem, 10vw, 2rem);
        bottom: 20px;
        padding: 0 20px;
        width: 100%;
        left: 50%;
        transform: translateX(-50%);
    }

    .about-image {
        display: none;
    }

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

