:root {
    --dark: #1a1a1a;
    --gold: #c9a84c;
    --light: #f5f5f5;
}

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



body {
    font-family: 'Segoe UI', sans-serif;
    background: var(--dark);
    color: #ddd;
}

/* NAV */
nav {
    position: fixed;
    top: 0; width: 100%;
    background: rgba(26,26,26,0.95);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid #333;
}
.logo { color: var(--gold); font-size: 1.4rem; font-weight: 700; letter-spacing: 2px; text-decoration: none; }
.nav-links a { color: #ccc; text-decoration: none; margin-left: 2rem; font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.hamburger { display: none; cursor: pointer; color: var(--gold); font-size: 1.5rem; }

/* HERO */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
            url('../img/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}
.hero h1 { font-size: 3.5rem; color: white; letter-spacing: 4px; text-transform: uppercase; line-height: 1.2; }
.hero .tagline { color: var(--gold); font-size: 1.1rem; margin: 1rem 0 2rem; letter-spacing: 2px; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-gold {
    background: var(--gold);
    color: var(--dark);
    padding: 0.85rem 2.5rem;
    border: none;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.btn-gold:hover { background: #e0ba5c; }
.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 0.85rem 2.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.btn-outline:hover { background: var(--gold); color: var(--dark); }

/* SECTIONS */
section { padding: 5rem 2rem; }
.section-title {
    text-align: center;
    font-size: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
}
.section-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 3rem; }
.container { max-width: 1100px; margin: 0 auto; }

/* ABOUT */
#about { background: #111; }
#about .about-text { max-width: 700px; margin: 0 auto; text-align: center; line-height: 1.8; color: #aaa; font-size: 1.05rem; }
.stats { display: flex; justify-content: center; gap: 4rem; margin-top: 3rem; text-align: center; flex-wrap: wrap; }
.stat-num { font-size: 2.5rem; color: var(--gold); font-weight: 700; }
.stat-label { color: #888; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }

/* ARTISTS */
#artists { background: var(--dark); }
.artists-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.artist-card { background: #222; padding: 2rem; text-align: center; }
.artist-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: #333; margin: 0 auto 1rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; border: 2px solid var(--gold);
    overflow: hidden;
}
.artist-avatar img { width: 100%; height: 100%; object-fit: cover; }
.artist-name { color: white; font-size: 1.2rem; font-weight: 600; margin-bottom: 0.3rem; }
.artist-specialty { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1rem; }
.artist-bio { color: #888; font-size: 0.9rem; line-height: 1.6; }
.artist-social { margin-top: 1rem; }
.artist-social a { color: var(--gold); font-size: 0.85rem; text-decoration: none; }

/* SERVICES */
#services { background: #111; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.service-card { background: #1a1a1a; border: 1px solid #333; padding: 1.5rem; text-align: center; }
.service-icon { font-size: 2rem; margin-bottom: 0.8rem; }
.service-name { color: white; font-weight: 600; margin-bottom: 0.5rem; font-size: 1rem; }
.service-desc { color: #888; font-size: 0.85rem; line-height: 1.5; }

/* BOOKING */
#book { background: var(--dark); }
.book-form { max-width: 650px; margin: 0 auto; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; color: #aaa; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%; background: #111; border: 1px solid #333;
    color: white; padding: 0.8rem 1rem; font-size: 1rem; font-family: inherit;
}
.form-group select option { background: #111; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.success-msg { background: #1a3a1a; border: 1px solid #2d6a2d; color: #7dba7d; padding: 1rem; margin-bottom: 1.5rem; text-align: center; }
.error-msg { background: #3a1a1a; border: 1px solid #6a2d2d; color: #ba7d7d; padding: 1rem; margin-bottom: 1.5rem; text-align: center; }

/* CONTACT */
#contact { background: #111; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-label { color: var(--gold); font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 0.3rem; margin-top: 1.2rem; }
.contact-label:first-child { margin-top: 0; }
.contact-value { color: #ccc; line-height: 1.6; }
.contact-value a { color: #ccc; text-decoration: none; }
.contact-value a:hover { color: var(--gold); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; color: #aaa; font-size: 0.95rem; }
.hours-table td:last-child { text-align: right; color: #ccc; }
.hours-table tr.today td { color: var(--gold); }

/* FOOTER */
footer {
    background: #0d0d0d; text-align: center;
    padding: 2rem; color: #555; font-size: 0.85rem;
    border-top: 1px solid #222;
}
footer a { color: var(--gold); text-decoration: none; }
.social-links { margin-bottom: 1rem; }
.social-links a { color: #888; text-decoration: none; margin: 0 0.8rem; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; }
.social-links a:hover { color: var(--gold); }

/* MOBILE */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: #1a1a1a; padding: 1rem 2rem; }
    .nav-links.open { display: flex; }
    .nav-links a { margin: 0.5rem 0; }
    .hamburger { display: block; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .stats { gap: 2rem; }
}
