:root {
    --gold: #c5a059;
    --orange: #ff8c00;
    --black: #050505;
    --dark-grey: #121212;
    --white: #ffffff;
    --text-muted: #888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--black);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* Header & Nav */
header {
    padding: 60px 20px;
    text-align: center;
}

.main-logo {
    width: 100px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(197, 160, 89, 0.3));
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    letter-spacing: 8px;
}

.subtitle {
    letter-spacing: 10px;
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
    margin-top: -10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

nav a {
    text-decoration: none;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: color 0.3s;
}

nav a:hover, nav a.active {
    color: var(--gold);
}

/* Artist Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    padding: 50px 10%;
}

.artist-card {
    background: var(--dark-grey);
    border: 1px solid #222;
    transition: all 0.4s ease;
    overflow: hidden;
}

.artist-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

.img-container {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.artist-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.artist-card:hover .artist-img {
    transform: scale(1.05);
}

.artist-info {
    padding: 30px;
}

.gold-text { color: var(--gold); font-family: 'Cinzel', serif; margin-bottom: 10px; }
.orange-text { color: var(--orange); font-family: 'Cinzel', serif; margin-bottom: 10px; }

.btn-secondary {
    display: inline-block;
    margin-top: 20px;
    color: var(--white);
    text-decoration: none;
    font-size: 0.7rem;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 5px;
}

/* Footer */
footer {
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid #111;
}

.disclaimer {
    color: #444;
    font-size: 10px;
    margin-top: 10px;
}
