/* ---- Base ---- */
body {
    margin: 0;
    padding: 0;
    background: #0a0a0a;
    color: #e6e6e6;
    font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.3px;
}

/* ---- Layout ---- */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

/* ---- Header ---- */
h1 {
    font-size: clamp(2.5rem, 6vw, 6rem);
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #fff 0%, #a6a6a6 40%, #444 100%);
    -webkit-background-clip: text;
    color: transparent;
    <link rel="stylesheet" href="style.css?v=3">
}

/* ---- Subtext ---- */
.tagline {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 40px;
}

/* ---- Booking Link ---- */
.booking {
    margin-top: 20px;
    display: inline-block;
    font-size: 1rem;
    letter-spacing: 1px;
    color: #e6e6e6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.booking:hover {
    opacity: 0.6;
}

/* ---- DJ Photo ---- */
.djphoto {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.djphoto img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* ---- Gig Flyers ---- */
.flyers {
    margin-top: 70px;
}

.flyers-title {
    text-transform: lowercase;
    font-size: 1rem;
    letter-spacing: 2px;
    opacity: 0.6;
    margin-bottom: 30px;
}

.flyer {
    margin-bottom: 40px;
}

.flyer img {
    width: 100%;
    max-width: 500px;
    border: 1px solid #333;
    border-radius: 6px;
    display: block;
    margin: 0 auto;
}

/* ---- Footer ---- */
footer {
    margin-top: 80px;
    font-size: 0.8rem;
    opacity: 0.4;
}

