/* === Base === */
:root {
    --bg: #0a0a0a;
    --bg2: #111;
    --bg3: #1a1a1a;
    --text: #e0e0e0;
    --text-dim: #888;
    --accent: #c4a35a;
    --accent2: #e63946;
    --radius: 8px;
}

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

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }

.accent { color: var(--accent); }

h1, h2, h3 { font-family: 'Bebas Neue', sans-serif; letter-spacing: 2px; }

/* === Nav === */
.navbar {
    position: fixed; top: 0; width: 100%; z-index: 100;
    display: flex; justify-content: space-between; align-items: center;
    padding: 1rem 2rem;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
}

.logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.8rem; color: #fff; }
.logo span { color: var(--accent); }

.nav-links {
    list-style: none; display: flex; gap: 2rem;
}

.nav-links a {
    color: var(--text); font-size: 0.9rem; text-transform: uppercase;
    letter-spacing: 1px; transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

.nav-toggle { display: none; background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; }

/* === Buttons === */
.btn {
    display: inline-block; padding: 0.8rem 2rem; border-radius: var(--radius);
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; transition: all 0.3s; cursor: pointer; border: none;
}

.btn-primary { background: var(--accent); color: #000; }
.btn-primary:hover { background: #d4b36a; transform: translateY(-2px); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); background: transparent; }
.btn-outline:hover { background: var(--accent); color: #000; }

/* === Hero === */
.hero {
    position: relative; height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    overflow: hidden;
}

.hero::before {
    content: ''; position: absolute; inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><text y="50" font-size="80" opacity="0.03">⚡</text></svg>') repeat;
    background-size: 200px;
}

.hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(196,163,90,0.1), transparent 60%);
}

.hero-content {
    position: relative; text-align: center; padding: 2rem; max-width: 800px;
}

.hero-content h1 {
    font-size: clamp(3rem, 10vw, 7rem);
    line-height: 1;
    margin-bottom: 1.5rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.1rem; color: var(--text-dim); max-width: 500px; margin: 0 auto 2rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === Sections === */
.section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }

.section-title {
    font-size: 2.5rem; text-align: center; margin-bottom: 0.5rem; color: #fff;
}

.section-sub {
    text-align: center; color: var(--text-dim); margin-bottom: 3rem;
}

/* === Gallery === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    grid-auto-rows: 220px;
}

.gallery-item {
    border-radius: var(--radius); overflow: hidden; position: relative;
    display: flex; align-items: center; justify-content: center; flex-direction: column;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item.tall { grid-row: span 2; }

.gallery-placeholder { font-size: 3rem; margin-bottom: 0.5rem; }
.gallery-label { font-size: 0.85rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 1px; }

/* === Services Grid === */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem;
}

.service-card {
    background: var(--bg2); border: 1px solid #222; border-radius: var(--radius);
    padding: 2rem; transition: border-color 0.3s, transform 0.3s;
}
.service-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.service-icon { font-size: 1.5rem; color: var(--accent); margin-bottom: 1rem; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: #fff; }
.service-card p { font-size: 0.9rem; color: var(--text-dim); }

/* === CTA === */
.cta-section {
    text-align: center; padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--bg2), var(--bg3));
    border-radius: var(--radius); margin: 2rem auto;
    max-width: 1200px;
}
.cta-section h2 { font-size: 2.5rem; color: #fff; margin-bottom: 1rem; }
.cta-section p { color: var(--text-dim); margin-bottom: 2rem; }

/* === Footer === */
.footer {
    background: var(--bg2); border-top: 1px solid #222; padding: 3rem 2rem 1rem;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem;
}
.footer-brand h3 { font-size: 1.5rem; color: #fff; }
.footer-brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 0.5rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }
.footer-social p { color: var(--text-dim); font-size: 0.9rem; }
.social-icons { display: flex; gap: 1rem; margin-top: 0.5rem; }
.social-icons a { color: var(--text); font-weight: 600; transition: color 0.3s; }
.social-icons a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 2rem; margin-top: 2rem; border-top: 1px solid #222; }
.footer-bottom p { color: var(--text-dim); font-size: 0.8rem; }

/* === Services Page === */
.page-header {
    padding: 8rem 2rem 3rem; text-align: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e);
}
.page-header h1 { font-size: 3rem; color: #fff; }
.page-header p { color: var(--text-dim); margin-top: 0.5rem; }

.pricing-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
}

.pricing-card {
    background: var(--bg2); border: 1px solid #222; border-radius: var(--radius);
    padding: 2.5rem; text-align: center; transition: all 0.3s;
}
.pricing-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--accent); position: relative; }
.pricing-card.featured::before {
    content: 'POPULAR'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #000; padding: 0.2rem 1rem; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; letter-spacing: 1px;
}
.pricing-card h3 { font-size: 1.5rem; color: #fff; margin-bottom: 0.5rem; }
.pricing-card .price { font-size: 2.5rem; font-family: 'Bebas Neue', sans-serif; color: var(--accent); margin: 1rem 0; }
.pricing-card .price span { font-size: 1rem; color: var(--text-dim); }
.pricing-card ul { list-style: none; margin-bottom: 1.5rem; }
.pricing-card li { padding: 0.4rem 0; color: var(--text-dim); font-size: 0.9rem; }
.pricing-card li::before { content: '✓ '; color: var(--accent); }

/* === About Page === */
.artists-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem;
}

.artist-card {
    background: var(--bg2); border: 1px solid #222; border-radius: var(--radius);
    overflow: hidden; transition: all 0.3s;
}
.artist-card:hover { border-color: var(--accent); }

.artist-avatar {
    height: 280px; display: flex; align-items: center; justify-content: center;
    font-size: 5rem; background: linear-gradient(135deg, #1a1a2e, #0f3460);
}

.artist-info { padding: 1.5rem; }
.artist-info h3 { font-size: 1.3rem; color: #fff; margin-bottom: 0.3rem; }
.artist-info .role { color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.artist-info p { color: var(--text-dim); font-size: 0.9rem; }

.studio-story { max-width: 800px; margin: 0 auto; }
.studio-story p { color: var(--text-dim); font-size: 1rem; margin-bottom: 1rem; line-height: 1.8; }

/* === Contact Page === */
.contact-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-size: 0.9rem; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 0.8rem 1rem; background: var(--bg2); border: 1px solid #333;
    border-radius: var(--radius); color: var(--text); font-family: 'Inter', sans-serif;
    font-size: 0.9rem; transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--accent);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.contact-info-box {
    background: var(--bg2); border: 1px solid #222; border-radius: var(--radius); padding: 2rem;
    margin-bottom: 1.5rem;
}
.contact-info-box h3 { color: #fff; margin-bottom: 1rem; font-size: 1.2rem; }
.contact-info-box p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.5rem; }

.map-placeholder {
    background: var(--bg3); border: 1px solid #222; border-radius: var(--radius);
    height: 200px; display: flex; align-items: center; justify-content: center;
    color: var(--text-dim); font-size: 0.9rem;
}

/* === Link in Bio === */
.linktree-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #0a0a0a, #1a1a2e, #0a0a0a);
    padding: 2rem;
}

.linktree-container {
    max-width: 420px; width: 100%; text-align: center;
}

.linktree-avatar {
    width: 100px; height: 100px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #e63946);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; margin: 0 auto 1rem;
}

.linktree-name { font-size: 1.8rem; color: #fff; }
.linktree-bio { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 2rem; }

.linktree-links { display: flex; flex-direction: column; gap: 0.8rem; }

.link-btn {
    display: flex; align-items: center; justify-content: center; gap: 0.8rem;
    padding: 1rem; border-radius: var(--radius); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem;
    transition: all 0.3s; border: 1px solid #333;
    background: rgba(255,255,255,0.03); color: var(--text);
}
.link-btn:hover { border-color: var(--accent); background: rgba(196,163,90,0.1); transform: translateY(-2px); }
.link-btn .link-icon { font-size: 1.2rem; }

.link-btn.whatsapp { border-color: #25d366; }
.link-btn.whatsapp:hover { background: rgba(37,211,102,0.1); }

/* === Responsive === */
@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: 100%; left: 0; width: 100%;
        flex-direction: column; background: rgba(10,10,10,0.98); padding: 1rem 2rem;
        border-bottom: 1px solid #222;
    }
    .nav-links.active { display: flex; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
    .gallery-item.tall { grid-row: span 1; }
    .contact-grid { grid-template-columns: 1fr; }
    .hero-content h1 { font-size: 3.5rem; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}
