/* ================= VARIABLES & RESET ================= */
:root {
    --black: #050505;
    --dark: #0a0a0a;
    --gold: #D4AF37;
    --gold-light: #F9E29C;
    --gold-gradient: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --border: rgba(212, 175, 55, .25);
    --header-height: 90px;
    --font-main: 'Montserrat', sans-serif;
    --font-accent: 'Cinzel', serif;
    --transition: all 0.4s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background: var(--black);
    color: #fff;
    font-family: var(--font-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ================= REUSABLE COMPONENTS ================= */
.gold-text { color: var(--gold); }
.brand-highlight { color: var(--gold); font-family: var(--font-accent); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 {
    font-family: var(--font-accent);
    color: var(--gold);
    letter-spacing: 6px;
    font-size: 2.2rem;
}

.section-subtitle {
    font-size: .8rem;
    letter-spacing: 2px;
    color: #777;
    margin-top: 10px;
    text-transform: uppercase;
}

/* ================= NAVIGATION ================= */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-height);
    padding: 0 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(5, 5, 5, .95);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.brand-container {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-img { height: 55px; }

.logo-sub {
    font-family: var(--font-accent);
    font-size: .65rem;
    letter-spacing: 3px;
    color: var(--gold);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    color: #eee;
    text-decoration: none;
    font-family: var(--font-accent);
    font-size: .75rem;
    letter-spacing: 2px;
    transition: var(--transition);
}

nav ul li a:hover { color: var(--gold); }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span { width: 26px; height: 2px; background: var(--gold); }

/* ================= HERO ================= */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.85)), 
                url('https://images.unsplash.com/photo-1634449571010-02389ed0f9b0?q=80&w=2000') center/cover;
}

.pre-title {
    font-family: var(--font-accent);
    font-size: .7rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero h1 {
    font-family: var(--font-accent);
    font-size: clamp(2rem, 6vw, 4.5rem);
    letter-spacing: 8px;
    margin-bottom: 25px;
}

.fancy-services {
    display: flex;
    gap: 12px;
    padding: 10px 20px;
    border: 1px solid var(--border);
}

.fancy-services span {
    font-family: var(--font-accent);
    font-size: .75rem;
    letter-spacing: 3px;
    color: var(--gold-light);
}

.hero-contact {
    margin-top: 25px;
    font-family: var(--font-accent);
    font-size: .7rem;
    letter-spacing: 2px;
}

.hero-contact a { color: var(--gold-light); text-decoration: none; }

.cta-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 45px;
    border: 2px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-family: var(--font-accent);
    letter-spacing: 3px;
    transition: var(--transition);
    border-radius: 6px;
}

.cta-btn:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ================= ABOUT & ARTIST ================= */
section { padding: 100px 5%; scroll-margin-top: var(--header-height); }

/* ================= ABOUT SECTION (CENTERED) ================= */
.about-section {
    background: linear-gradient(to bottom, #050505, #0d0d0d);
    padding: 100px 5%;
}

.about-container {
    max-width: 850px; /* Constrains the width to the middle */
    margin: 0 auto;   /* Centers the block */
    text-align: center;
}

.about-text-block h3 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    line-height: 1.3;
    margin-bottom: 30px;
    text-transform: uppercase;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--gold); /* Fallback */
}

.about-text-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 50px;
}

/* Feature Grid inside the middle block */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: left; /* Keeps list items readable */
}

.feature-item {
    padding: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(212, 175, 55, 0.05);
    transform: translateY(-5px);
}

.feature-item .gold-text {
    display: block;
    font-family: 'Cinzel';
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-container {
        max-width: 100%;
    }
    .feature-list {
        grid-template-columns: 1fr;
    }
}

.artist-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.artist-image-box { border: 1px solid #222; padding: 15px; }
.artist-image-box img { width: 100%; filter: grayscale(1); transition: .5s; }
.artist-image-box:hover img { filter: grayscale(0); }

.artist-card {
    margin-top: 35px;
    padding: 25px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.artist-name { font-family: var(--font-accent); font-size: 1.2rem; letter-spacing: 3px; margin-bottom: 20px; }

.detail-row { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.detail-label { font-weight: 600; color: var(--gold); min-width: 80px; }

/* ================= RATES & CONTACT ================= */
.rate-section { background: #0d0d0d; }
.rate-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 60px; }
.rate-category h3 { font-family: var(--font-accent); letter-spacing: 3px; margin-bottom: 25px; }

.price-row { display: flex; align-items: center; margin-bottom: 16px; font-size: .9rem; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(255,255,255,.25); margin: 0 10px; }
.price-cost { color: var(--gold); white-space: nowrap; }

.contact-form { max-width: 520px; margin: 0 auto; display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea {
    background: transparent;
    border: 1px solid var(--border);
    padding: 14px;
    color: #fff;
    font-size: .85rem;
    width: 100%;
}

.submit-btn {
    padding: 14px;
    border: 1px solid var(--gold);
    background: transparent;
    color: var(--gold);
    font-family: var(--font-accent);
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover { background: var(--gold); color: #000; }

/* ================= GALLERY ================= */
.box-slider { width: 90%; margin: 0 auto; overflow: hidden; }
.box-track { display: flex; gap: 20px; width: max-content; will-change: transform; }
.box { flex: 0 0 260px; height: 360px; border-radius: 14px; overflow: hidden; background: #000; }
.box img { width: 100%; height: 100%; object-fit: cover; }

/* ================= FOOTER ================= */
.footer { width: 100%; padding: 30px 0; background: #000; border-top: 1px solid #333; }
.footer-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-center, .footer-right { font-size: 14px; font-family: 'Georgia', serif; }
.footer-right { color: #b38b59; }

.form-status { margin-top: 15px; font-family: 'Georgia', serif; display: none; }
.form-status.success { color: #b38b59; }
.form-status.error { color: #d9534f; }

/* ================= RESPONSIVE ================= */
@media(max-width: 900px) {
    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--black);
        padding: 25px 0;
        align-items: center;
    }
    nav ul.show { display: flex; }
    .menu-toggle { display: flex; }
    .artist-grid, .rate-grid { grid-template-columns: 1fr; }
}

@media(max-width: 600px) {
    section { padding: 70px 6%; }
    .hero h1 { letter-spacing: 4px; }
    .detail-row { flex-direction: column; gap: 5px; }
    .footer-container { flex-direction: column; gap: 15px; text-align: center; }
}