/* --- LUXURY DESIGN SYSTEM --- */
:root {
    --bg-white: #FFFFFF;
    --bg-offwhite: #F9F9F9;
    --bg-dark: #111111;
    --text-main: #222222;
    --gold: #D4AF37;
    --gold-hover: #b5952f;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text-main); background: var(--bg-white); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
a:hover { color: var(--gold); }

.page-content { padding-top: 100px; min-height: 60vh; animation: fadeIn 0.4s forwards; }
.home-page { padding-top: 0; }
.home-page .hero { margin-top: 0; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

/* --- NAVIGATION --- */
header { position: fixed; top: 0; width: 100%; background: rgba(255,255,255,0.98); z-index: 999; box-shadow: 0 2px 20px rgba(0,0,0,0.05); padding: 15px 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 25px; }

nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--bg-dark); letter-spacing: 1px; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-item { color: var(--bg-dark); font-weight: 500; font-size: 0.9rem; text-transform: uppercase; transition: 0.3s; }
.nav-item:hover, .nav-item.active { color: var(--gold); }
.btn-nav { color: var(--gold) !important; border: 1px solid var(--gold); padding: 8px 20px; font-weight: 700; }

.hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--bg-dark); background: none; border: none; }

.dropdown { position: relative; display: inline-block; }
.dropdown-content { display: none; position: absolute; background-color: white; min-width: 220px; box-shadow: 0px 8px 16px rgba(0,0,0,0.1); z-index: 1; top: 100%; left: 0; border-top: 2px solid var(--gold); }
.dropdown-content a { color: var(--bg-dark); padding: 12px 16px; text-decoration: none; display: block; font-size: 0.85rem; text-transform: uppercase; }
.dropdown-content a:hover { background-color: var(--bg-offwhite); color: var(--gold); }
.dropdown:hover .dropdown-content { display: block; }

/* --- COMPONENTS --- */
h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--bg-dark); margin-bottom: 15px; }
.section-padding { padding: 80px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.bg-offwhite { background: var(--bg-offwhite); }

.btn { display: inline-block; padding: 18px 40px; background: var(--gold); color: white; font-weight: 700; text-transform: uppercase; border: none; cursor: pointer; transition: 0.3s; letter-spacing: 1px; font-family: var(--font-body); font-size: 0.9rem; }
.btn:hover { background: #000; color: var(--gold); }
.btn-outline { display: inline-block; padding: 15px 35px; border: 2px solid white; color: white; font-weight: 700; text-transform: uppercase; cursor: pointer; background: rgba(0,0,0,0.3); backdrop-filter: blur(5px); font-family: var(--font-body); font-size: 0.9rem; }
.btn-outline:hover { background: var(--gold); border-color: var(--gold); color: white; }

/* --- HERO & HOME --- */
.hero {
    height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; color: white; margin-top: -100px;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('/vocal-recording-room.avif'); background-size: cover; background-position: center;
    padding-top: 80px;
}

/* --- HOME BIO & LAYOUTS --- */
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-img { width: 100%; display: block; border-radius: 2px; }

.portrait-container { position: relative; border-radius: 5px; overflow: hidden; box-shadow: 20px 20px 0 var(--gold); }
.portrait-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    background: linear-gradient(transparent, rgba(0,0,0,0.8)); padding: 30px 20px; color: white; text-align: center;
}
.portrait-overlay h2 { color: var(--gold); margin: 0; font-size: 2rem; line-height: 1; }
.portrait-overlay p { margin: 5px 0 0; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

.info-boxes { display: flex; gap: 20px; margin-top: 30px; }
.info-box { flex: 1; background: var(--bg-offwhite); padding: 20px; border-left: 3px solid var(--gold); }
.info-box h4 { font-size: 1rem; margin-bottom: 10px; color: var(--bg-dark); font-weight: 700; text-transform: uppercase; }
.info-box p { font-size: 0.85rem; margin: 0; line-height: 1.4; color: #555; }

/* --- CREDENTIALS GRID --- */
.cred-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 50px; align-items: start; }
.cred-card { background: white; border: 1px solid #eee; padding: 40px 30px; text-align: center; transition: 0.3s; display: flex; flex-direction: column; height: 100%; }
.cred-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
.logo-box { height: 120px; display: flex; align-items: center; justify-content: center; margin-bottom: 25px; width: 100%; }
.cred-img { max-height: 100%; max-width: 100%; object-fit: contain; filter: drop-shadow(0 0 2px rgba(0,0,0,0.1)); }
.cred-card h3 { font-size: 1.2rem; min-height: 3rem; display: flex; align-items: center; justify-content: center; }

/* --- ABOUT PAGE --- */
.about-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; margin-bottom: 60px; }

.widget-row { display: flex; gap: 20px; margin-top: 30px; }
.widget-box { flex: 1; background: var(--bg-offwhite); border-top: 3px solid var(--gold); padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.03); }
.widget-box h5 { font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; color: #555; font-family: var(--font-body); font-weight: 700; }
.tag { display: inline-block; background: white; border: 1px solid #ddd; padding: 4px 10px; font-size: 0.8rem; margin: 0 3px 5px 0; color: #444; }

.timeline { position: relative; margin-top: 40px; padding-left: 20px; border-left: 2px solid #eee; }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot { position: absolute; left: -29px; top: 5px; width: 16px; height: 16px; background: var(--gold); border-radius: 50%; border: 3px solid white; box-shadow: 0 0 0 1px #eee; }
.timeline-content { display: flex; gap: 20px; align-items: flex-start; }
.timeline-content img { width: 60px; height: 60px; object-fit: contain; background: white; padding: 5px; border: 1px solid #eee; }
.timeline-text h4 { margin: 0 0 5px 0; font-size: 1.1rem; line-height: 1.2; }
.timeline-text p { margin: 0; font-size: 0.9rem; color: #666; }
.timeline-text span { font-size: 0.75rem; text-transform: uppercase; color: var(--gold); font-weight: 700; letter-spacing: 1px; display: block; margin-bottom: 5px; }

.mentor-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.mentor-block { background: white; border: 1px solid #eee; padding: 25px; transition: 0.3s; border-left: 4px solid transparent; box-shadow: 0 5px 15px rgba(0,0,0,0.02); }
.mentor-block:hover { transform: translateY(-5px); border-left-color: var(--gold); box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
.mentor-block h4 { color: var(--bg-dark); margin-bottom: 10px; font-size: 1.1rem; }
.mentor-block p { font-size: 0.9rem; color: #666; margin: 0; }

.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 30px; margin-top: 40px; }
.step-card { text-align: center; padding: 30px; border: 1px solid #eee; background: white; }
.step-num { font-family: var(--font-head); font-size: 3rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }

/* --- GIGS & VENUES --- */
.venue-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: center; margin-top: 30px; }
.venue-img { width: 100%; height: 100px; object-fit: cover; opacity: 0.9; transition: 0.3s; border-radius: 4px; filter: grayscale(100%); }
.venue-img:hover { filter: grayscale(0%); opacity: 1; }

.gigs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 15px; margin-top: 30px; }
.gig-item { position: relative; overflow: hidden; border-radius: 4px; height: 150px; }
.gig-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gig-item:hover img { transform: scale(1.1); }
.gig-caption { position: absolute; bottom: 0; left: 0; width: 100%; background: rgba(0,0,0,0.7); color: white; font-size: 0.75rem; padding: 5px 10px; }

/* --- PRICING CARDS --- */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.price-card { background: white; border: 1px solid #eee; padding: 40px; text-align: center; position: relative; transition: 0.3s; display: flex; flex-direction: column; }
.price-card:hover { transform: translateY(-5px); box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-color: var(--gold); }
.price-card.featured { border: 2px solid var(--gold); }
.price-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: var(--gold); color: white; padding: 5px 20px; font-weight: 700; text-transform: uppercase; font-size: 0.8rem; letter-spacing: 1px; }
.price-amount { font-size: 3rem; font-weight: 700; color: var(--bg-dark); margin: 15px 0; }
.price-sub { color: #888; font-size: 0.9rem; margin-bottom: 20px; display: block; }
.price-list { list-style: none; padding: 0; margin: 20px 0; text-align: left; }
.price-list li { margin-bottom: 12px; padding-left: 25px; position: relative; font-size: 0.9rem; color: #555; }
.price-list li::before { content: '\f00c'; font-family: 'Font Awesome 5 Free'; font-weight: 900; color: var(--gold); position: absolute; left: 0; }
.price-features-row { display: flex; justify-content: center; gap: 30px; margin-top: 50px; flex-wrap: wrap; }
.feature-item { text-align: center; font-size: 0.9rem; max-width: 200px; }
.feature-item h4 { color: var(--gold); margin-bottom: 5px; }

/* --- BLOG & ARTICLES --- */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.blog-card { background: white; border: 1px solid #eee; padding: 30px; transition: 0.3s; display: flex; flex-direction: column; }
.blog-card:hover { border-color: var(--gold); transform: translateY(-5px); }
.blog-card h3 { font-size: 1.2rem; }

.article-container { max-width: 800px; margin: 0 auto; padding: 40px 20px; }
.article-body { font-size: 1.1rem; line-height: 1.8; color: #333; font-family: var(--font-body); }
.article-body h2 { margin-top: 50px; border-bottom: 2px solid var(--gold); display: inline-block; padding-bottom: 5px; color: var(--bg-dark); font-family: var(--font-head); }
.article-body h3 { margin-top: 35px; color: var(--gold); font-family: var(--font-head); font-size: 1.4rem; }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin-left: 20px; margin-bottom: 25px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { color: var(--bg-dark); font-weight: 700; }
.back-link { color: var(--bg-dark); font-weight: 600; margin-bottom: 30px; display: inline-block; border-bottom: 1px solid var(--gold); }
.breadcrumb { font-size: 0.85rem; color: #888; margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }

/* --- CTA & FORM --- */
.cta-section { background: var(--bg-offwhite); border-top: 1px solid #eee; }
.form-box { max-width: 500px; margin: 0 auto; background: white; padding: 40px; border: 1px solid #ddd; box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
input, select, textarea { width: 100%; padding: 15px; margin-bottom: 15px; border: 1px solid #ccc; font-family: var(--font-body); }
textarea { resize: vertical; }

/* --- FOOTER --- */
footer { background: #000; color: #888; padding: 50px 0; font-size: 0.9rem; }
.footer-flex { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-col h4 { color: white; margin-bottom: 20px; font-family: var(--font-body); text-transform: uppercase; letter-spacing: 1px; }
.footer-col a:hover { color: var(--gold); }

/* --- THANK YOU PAGE --- */
.thank-you-card {
    max-width: 600px; margin: 0 auto; text-align: center;
    background: white; border: 1px solid #eee; padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.thank-you-icon {
    width: 80px; height: 80px; margin: 0 auto 30px;
    background: rgba(212, 175, 55, 0.1); border: 2px solid var(--gold);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--gold);
}

/* MOBILE */
@media(max-width: 768px) {
    .hamburger { display: block; }
    .nav-links { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 5px 10px rgba(0,0,0,0.1); }
    .nav-links.active { display: flex; }

    .split-layout, .about-split { grid-template-columns: 1fr; }
    .venue-logos { grid-template-columns: repeat(2, 1fr); }
    .info-boxes, .widget-row, .mentor-grid { flex-direction: column; display: flex; }
    .mentor-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.2rem; }
    .portrait-container { margin-bottom: 40px; }
}
