
@font-face {
    font-family: 'AquilineTwo';
    src: url('fonts/AquilineTwo.ttf');
    font-weight: normal;
    font-style: normal;
}

:root {
    --bg: #000;
    --text: #fff;
    --text-muted: #b3b3b3;
    --accent: #fff;
    --border: #333;
    --max-width: 1000px;
}

* {
    box-sizing: border-box;
}

html {
    background-color: var(--bg);
}

body {
    margin: 0;
    color: var(--text);
    font-family: Georgia, 'Times New Roman', serif;
}

h1, h2 {
    font-family: 'AquilineTwo', Georgia, serif;
    font-weight: normal;
}

/* Nav */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 1rem 2rem;
    gap: 1rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.nav-links a,
.nav-links span {
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links span {
    color: var(--text-muted);
}

.nav-logo img {
    width: auto;
    height: 60px;
}

.nav-logo a {
    display: inline-flex;
    line-height: 0;
}

.nav-links a[aria-current="page"] {
    text-decoration: underline;
    text-underline-offset: 0.3em;
}

/* Hero */

#HomeIMG {
    position: relative;
}

#HomeIMG img {
    width: 100%;
    height: 60vh;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0) 60%);
}

.hero-overlay h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin: 0;
    letter-spacing: 0.05em;
}

.hero-overlay p {
    margin: 0.5rem 0 0;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Sections */

section {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 4rem 2rem;
    border-bottom: 1px solid var(--border);
}

section h1 {
    font-size: 2.75rem;
    margin: 0 0 1rem;
    letter-spacing: 0.05em;
}

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

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

/* Buttons */

.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45em;
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--text);
    border-radius: 2px;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
    background-color: var(--text);
    color: var(--bg);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.12);
}

.btn:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn[target="_blank"]::after {
    content: "\2197";
    font-size: 0.85em;
    line-height: 1;
}

.btn-small {
    padding: 0.4rem 0.9rem;
    font-size: 0.85rem;
}

/* Shows */

.shows-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.show-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-muted);
}

.show-date {
    color: var(--text);
    min-width: 100px;
}

.show-venue {
    flex: 1;
    min-width: 160px;
}

/* Placeholder images */

.placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: repeating-linear-gradient(135deg, #0d0d0d, #0d0d0d 12px, #131313 12px, #131313 24px);
    border: 1px solid var(--border);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    overflow: hidden;
}

.placeholder span {
    padding: 1rem;
}

.placeholder-photo {
    aspect-ratio: 4 / 3;
    width: 100%;
}

.placeholder-avatar {
    aspect-ratio: 1 / 1;
    width: 100%;
    border-radius: 50%;
    font-size: 0.7rem;
}

/* About */

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

/* Meet the band */

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

.band-member {
    text-align: center;
}

.band-member h3 {
    font-family: 'AquilineTwo', Georgia, serif;
    font-weight: normal;
    font-size: 1.2rem;
    margin: 1rem 0 0.25rem;
}

.band-member p {
    margin: 0;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Corporate / private events */

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

/* Responsive */

@media (max-width: 700px) {
    .about-grid,
    .corporate-grid {
        grid-template-columns: 1fr;
    }

    .about-grid .placeholder-photo,
    .corporate-grid .placeholder-photo {
        order: -1;
    }
}

/* Footer */

footer {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

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

.footer-copy {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}
