* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #121212;
    color: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: rgba(18, 18, 18, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #e0a96d; /* Gold accent */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #e0a96d;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1598387181032-a3103a2db5b3?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 3px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #cccccc;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #e0a96d;
    color: #121212;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: transform 0.3s, background-color 0.3s;
}

.btn:hover {
    background-color: #c9955d;
    transform: translateY(-3px);
}

/* General Sections */
.section-container {
    padding: 100px 50px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #e0a96d;
}

.bg-dark {
    background-color: #0a0a0a;
}

/* Artists Grid */
.artist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.artist-card {
    background-color: #1e1e1e;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.artist-card:hover {
    transform: translateY(-10px);
}

.placeholder-img {
    height: 250px;
    background-color: #333;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #777;
    font-weight: bold;
}

.artist-card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.artist-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-item {
    border-left: 4px solid #e0a96d;
    padding-left: 20px;
}

.service-item h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-item p {
    color: #aaa;
}

/* Footer */
footer {
    background-color: #1e1e1e;
    padding: 60px 20px;
    text-align: center;
}

.footer-content h2 {
    margin-bottom: 15px;
}

.footer-content p {
    color: #aaa;
    margin-bottom: 30px;
}

.copyright {
    margin-top: 50px;
    font-size: 0.8rem;
    color: #555 !important;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .nav-links {
        display: none; /* Add a hamburger menu here later if needed */
    }
}