/* ---------- Reset & base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: antiquewhite;
    background-color: #111;
    line-height: 1.4;
    /* space for the fixed navbar */
    padding-top: 60px;
}

/* ---------- Navbar ---------- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: black;
    padding: 12px 0;
    z-index: 100;
}

nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0 30px;
    list-style: none;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 5px;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: antiquewhite;
    letter-spacing: 3px;
    font-size: 0.95rem;
    transition: color 200ms ease;
}

nav ul li a:hover {
    color: slategray;
}


/* ---------- Hero ---------- */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem 0;
}

/* Offset for fixed navbar when scrolling to anchors */
#home,
#music,
#contact {
    scroll-margin-top: 70px;
}

.hero-image {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

/* Album artwork – larger so it commands the screen */
.hero-image > img {
    display: block;
    width: 100%;
    max-width: 540px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.6);
    flex-shrink: 0;
}

/* Right column: text + icons stacked */
.hero-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    max-width: 525px;
}

/* Text to the right of the artwork */
.hero-text {
    text-align: left;
    padding: 2.25rem 2.5rem;
    background: rgba(20, 20, 20, 0.85);
    border-left: 3px solid antiquewhite;
}

.hero-text h3 {
    font-size: clamp(1.4rem, 3.4vw, 1.9rem);
    font-weight: 300;
    letter-spacing: 0.14em;
    line-height: 1.45;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

.hero-text h3 + h3 {
    margin-top: 0.65rem;
    letter-spacing: 0.22em;
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    opacity: 0.9;
    white-space: nowrap;
}


/* ---------- Icons (under the text, centered under the text block) ---------- */
.hero-icons {
    padding: 0 0 0.5rem 0;
    width: 100%;
}

.hero-icons ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    list-style: none;
}

.hero-icons ul li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-icons ul li a {
    text-decoration: none;
    display: block;
    transition: transform 200ms ease, opacity 200ms ease;
}

.hero-icons ul li a:hover {
    transform: scale(1.12);
    opacity: 0.85;
}

.hero-icons ul li img {
    display: block;
    width: 44px;
    height: auto;
    filter: invert(1);
}


/* ---------- Contact section ---------- */
.contact {
    max-width: 560px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3.5rem; /* extra top space from hero on desktop */
    text-align: center;
}

.contact h2 {
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.25em;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: #ccc;
}

.form-group input,
.form-group textarea {
    background: #1c1c1c;
    border: 1px solid #333;
    color: antiquewhite;
    padding: 0.7rem 0.9rem;
    font-family: inherit;
    font-size: 0.95rem;
    border-radius: 3px;
    transition: border-color 200ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: antiquewhite;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.send-btn {
    margin-top: 0.5rem;
    background: antiquewhite;
    color: #111;
    border: none;
    padding: 0.85rem 1.5rem;
    font-family: inherit;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 3px;
    transition: background 200ms ease, transform 150ms ease;
}

.send-btn:hover {
    background: #e8d9c0;
    transform: translateY(-1px);
}

.contact-direct {
    margin-top: 1.75rem;
    font-size: 0.9rem;
    color: #aaa;
}

.contact-direct a {
    color: antiquewhite;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 200ms ease;
}

.contact-direct a:hover {
    color: slategray;
}


/* ---------- Band photo ---------- */
.band-photo {
    max-width: 900px;
    margin: 0 auto 2rem;
    padding: 0 1.5rem;
}

.band-photo img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}


/* ---------- Footer ---------- */
footer {
    text-align: center;
    padding: 2rem 1rem 3rem;
    font-size: 0.9rem;
    color: #ccc;
}

footer a {
    color: antiquewhite;
    transition: color 200ms ease;
}

footer a:hover {
    color: slategray;
}

footer a:active {
    color: darkorange;
}


/* ---------- Mobile ---------- */
@media (max-width: 768px) {

    nav {
        padding: 10px 0;
    }

    nav ul {
        gap: 0 14px;
        padding: 0 12px;
        justify-content: center;
    }

    .logo {
        font-size: 1.2rem;
        margin-right: 8px;
        letter-spacing: 1px;
    }

    nav ul li a {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .hero {
        padding: 1.75rem 1rem 0;
    }

    .hero-image {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-image > img {
        max-width: 320px;
    }

    .hero-right {
        align-items: center;
        max-width: 100%;
        gap: 1.25rem;
    }

    .hero-text {
        text-align: center;
        border-left: none;
        border-top: 3px solid antiquewhite;
        max-width: 100%;
        padding: 1.4rem 1.4rem;
    }

    .hero-text h3 {
        letter-spacing: 0.1em;
        font-size: clamp(1.2rem, 5vw, 1.5rem);
        white-space: normal;
    }

    .hero-text h3 + h3 {
        letter-spacing: 0.16em;
        font-size: clamp(1rem, 4vw, 1.25rem);
        white-space: normal;
    }

    .hero-icons {
        padding: 0 0 2rem 0;
    }

    .hero-icons ul {
        justify-content: center;
        gap: 1.35rem;
    }

    .hero-icons ul li img {
        width: 40px;
    }

    .contact {
        padding: 1.5rem 1.25rem 3rem;
    }

    .contact h2 {
        font-size: 1.35rem;
        letter-spacing: 0.18em;
    }

    .band-photo {
        padding: 0 1rem;
        margin-bottom: 1.5rem;
    }

    footer {
        padding: 1.5rem 1rem 2.5rem;
        font-size: 0.85rem;
        line-height: 1.5;
    }
}
