:root {
    --bg: #0c0c0c;
    --text: #f4f1ea;
    --muted: #c9c4b8;
    --accent: #cfa94b;
    --border: #2a2a2a;
}

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

body {
    background: var(--bg);
    color: var(--text);
    font-family: Inter, Helvetica, Arial, sans-serif;
    line-height: 1.6;
}

a,
a:visited {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    opacity: 0.8;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;

    background:
        linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.75)),
        url("assets/Avus.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    flex-direction: column;
}

.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(207,169,75,0.12),
            transparent 40%
        );
}

.particles {
    position: absolute;
    inset: 0;
    z-index: 2;

    background-image:
        radial-gradient(rgba(255,255,255,0.15) 1px, transparent 1px);

    background-size: 120px 120px;
    opacity: 0.18;
    animation: drift 70s linear infinite;
    pointer-events: none;
}

@keyframes drift {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-120px);
    }
}

nav,
.hero-content {
    position: relative;
    z-index: 5;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 2rem 4rem;
}

.logo {
    color: var(--text);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3rem;
}

.menu {
    display: flex;
    gap: 2rem;
}

.menu a,
.menu a:visited {
    color: var(--text);
    opacity: 0.75;
    transition: 0.3s;
}

.menu a:hover {
    color: var(--accent);
    opacity: 1;
}

.hero-content {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 900px;
    padding: 4rem;
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.95;
    margin-bottom: 1rem;
    font-weight: 800;

    text-shadow:
        0 0 35px rgba(207,169,75,0.22),
        0 0 90px rgba(255,255,255,0.08);
}

.hero p {
    font-size: 1.3rem;
    max-width: 650px;
    color: var(--muted);
    margin-bottom: 2rem;
}

.buttons {
    display: flex;
    gap: 1rem;
}

.btn,
.btn:visited {
    padding: 1rem 2rem;
    border: 1px solid var(--accent);
    color: var(--text);
    transition: 0.3s;
}

.btn:hover {
    background: var(--accent);
    color: #111;
    opacity: 1;
}

.secondary {
    opacity: 0.8;
}

section {
    padding: 8rem 2rem;
}

.container {
    max-width: 900px;
    margin: auto;
}

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

section p {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 1.4rem;
}

#about p:first-of-type {
    font-size: 1.5rem;
    color: var(--text);
    max-width: 750px;
}

.gig {
    display: flex;
    gap: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
}

.mail {
    display: inline-block;
    margin-top: 2rem;
    font-size: 1.2rem;
}

footer {
    padding: 3rem;
    text-align: center;
    color: #777;
}

@media (max-width: 768px) {
    nav {
        padding: 2rem;
        flex-direction: column;
        gap: 1rem;
    }

    .menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-content {
        padding: 2rem;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 18vw, 6rem);
    }

    h2 {
        font-size: 2rem;
    }

    .gig {
        flex-direction: column;
        gap: 0.5rem;
    }

    .buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
.page-header {
    min-height: 70vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.85)),
        url("assets/Avus.jpg");
    background-size: cover;
    background-position: center;
}

.page-title {
    max-width: 900px;
    padding: 8rem 4rem;
}

.page-title h1 {
    font-size: clamp(3.5rem, 10vw, 8rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow:
        0 0 35px rgba(207,169,75,0.22),
        0 0 90px rgba(255,255,255,0.08);
}

.page-title p {
    max-width: 650px;
    color: var(--muted);
    font-size: 1.3rem;
}

.download-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.download-card {
    display: block;
    padding: 1.5rem;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.03);
    transition: 0.3s;
}

.download-card:hover {
    border-color: var(--accent);
    background: rgba(207,169,75,0.08);
    opacity: 1;
}

.download-card span {
    display: block;
    color: var(--text);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.download-card small {
    color: var(--muted);
}

.logo a,
.logo a:visited {
    color: var(--text);
}

@media (max-width: 768px) {
    .page-title {
        padding: 5rem 2rem;
    }

    .download-grid {
        grid-template-columns: 1fr;
    }
}