/* Golden Group Artists - Frontend Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #e8c84a;
    --gold-dark: #b8960f;
    --bg-dark: #0a0a0a;
    --bg-card: #111111;
    --bg-section: #0e0e0e;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
}

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

body.gg-artists-page {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-secondary);
    line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--text-primary); }
a { color: var(--gold); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--gold-light); }
img { max-width: 100%; height: auto; }

/* Archive Page */
.gg-archive-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1206 100%);
    padding: 120px 20px 60px;
    text-align: center;
    border-bottom: 1px solid rgba(212,175,55,0.15);
}
.gg-archive-hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 15px;
}
.gg-archive-hero p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Category Tabs */
.gg-category-tabs {
    display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
    padding: 30px 20px; background: var(--bg-section);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: sticky; top: 0; z-index: 100;
}
.gg-category-tab {
    padding: 10px 25px; border-radius: 30px; font-size: 0.9rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    background: var(--bg-card); color: var(--text-muted);
    border: 1px solid rgba(212,175,55,0.15); transition: all 0.3s;
}
.gg-category-tab:hover, .gg-category-tab.active {
    background: var(--gold); color: #000; border-color: var(--gold);
}

/* Artists Grid */
.gg-artists-container { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }
.gg-artists-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px;
}
.gg-artist-card {
    background: var(--bg-card); border-radius: 15px; overflow: hidden;
    border: 1px solid rgba(212,175,55,0.08); transition: all 0.4s;
}
.gg-artist-card:hover {
    transform: translateY(-8px); border-color: rgba(212,175,55,0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.gg-artist-card-img {
    width: 100%; height: 220px; object-fit: cover;
    transition: transform 0.5s;
}
.gg-artist-card:hover .gg-artist-card-img { transform: scale(1.05); }
.gg-artist-card-img-wrapper { overflow: hidden; position: relative; }
.gg-artist-card-badge {
    position: absolute; top: 12px; right: 12px;
    background: var(--gold); color: #000; padding: 4px 12px;
    border-radius: 20px; font-size: 0.75rem; font-weight: 700;
    text-transform: uppercase;
}
.gg-artist-card-body { padding: 22px; }
.gg-artist-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-primary); }
.gg-artist-card-meta {
    display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 12px;
}
.gg-artist-card-meta span {
    font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 4px;
}
.gg-artist-card-excerpt { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 15px; line-height: 1.5; }
.gg-artist-card-cta {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 22px; border-radius: 25px; background: rgba(212,175,55,0.1);
    color: var(--gold); font-weight: 600; font-size: 0.85rem; transition: all 0.3s;
}
.gg-artist-card-cta:hover { background: var(--gold); color: #000; }

/* Single Artist Page */
.gg-single-hero {
    position: relative; min-height: 45vh; display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
}
.gg-single-hero::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(transparent 30%, rgba(10,10,10,0.95) 100%);
}
.gg-single-hero-content {
    position: relative; z-index: 2; padding: 40px; width: 100%; max-width: 1200px; margin: 0 auto;
}
.gg-single-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-primary); margin-bottom: 10px; }
.gg-single-tags { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 10px; }
.gg-single-tag {
    padding: 5px 15px; border-radius: 20px; font-size: 0.8rem; font-weight: 600;
    background: rgba(212,175,55,0.15); color: var(--gold); border: 1px solid rgba(212,175,55,0.3);
}

.gg-single-content { max-width: 1200px; margin: 0 auto; padding: 50px 20px; }
.gg-single-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; }

/* Info sidebar */
.gg-single-sidebar { position: sticky; top: 30px; align-self: start; }
.gg-info-card {
    background: var(--bg-card); border-radius: 15px; padding: 30px;
    border: 1px solid rgba(212,175,55,0.15);
}
.gg-info-card h3 { font-size: 1.2rem; color: var(--gold); margin-bottom: 20px; }
.gg-info-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.gg-info-item:last-child { border-bottom: none; }
.gg-info-label { color: var(--text-muted); font-size: 0.85rem; }
.gg-info-value { color: var(--text-primary); font-weight: 600; font-size: 0.95rem; }
.gg-cta-button {
    display: block; width: 100%; text-align: center; margin-top: 25px;
    padding: 15px 30px; border-radius: 30px; background: #25d366; color: white;
    font-weight: 700; font-size: 1rem; transition: all 0.3s;
}
.gg-cta-button:hover { background: #20bd5a; color: white; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(37,211,102,0.3); }

/* Videos section */
.gg-videos-section { margin-top: 40px; }
.gg-videos-section h2 { font-size: 1.5rem; margin-bottom: 20px; color: var(--gold); }
.gg-videos-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.gg-video-wrapper {
    position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden;
    border-radius: 12px; background: #1a1a1a;
}
.gg-video-wrapper iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; border-radius: 12px;
}

/* Description */
.gg-description {
    background: var(--bg-card); border-radius: 15px; padding: 35px;
    border: 1px solid rgba(212,175,55,0.1); margin-bottom: 30px;
}
.gg-description h2 { font-size: 1.4rem; color: var(--gold); margin-bottom: 15px; }
.gg-description p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.gg-description ul { padding-left: 20px; color: var(--text-secondary); }
.gg-description li { margin-bottom: 8px; }

/* Back link */
.gg-back-link {
    display: inline-flex; align-items: center; gap: 8px; margin-bottom: 30px;
    color: var(--gold); font-weight: 500; font-size: 0.9rem;
}
.gg-back-link:hover { color: var(--gold-light); }

/* Navbar for artist pages */
.gg-navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(10,10,10,0.95); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212,175,55,0.2); padding: 12px 0;
}
.gg-navbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; align-items: center; justify-content: space-between; }
.gg-navbar-brand { display: flex; align-items: center; gap: 10px; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.2rem; letter-spacing: 2px; text-transform: uppercase; }
.gg-navbar-brand img { height: 40px; width: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.gg-navbar-links { display: flex; gap: 25px; list-style: none; }
.gg-navbar-links a { color: var(--text-secondary); font-size: 0.85rem; font-weight: 500; text-transform: uppercase; letter-spacing: 1px; }
.gg-navbar-links a:hover { color: var(--gold); }

/* WhatsApp float */
.gg-wa-float {
    position: fixed; bottom: 25px; right: 25px; z-index: 999;
    width: 55px; height: 55px; border-radius: 50%; background: #25d366;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37,211,102,0.4); transition: all 0.3s;
}
.gg-wa-float:hover { transform: scale(1.1); }
.gg-wa-float svg { width: 28px; height: 28px; fill: white; }

/* Responsive */
@media (max-width: 768px) {
    .gg-single-layout { grid-template-columns: 1fr; }
    .gg-single-sidebar { position: static; }
    .gg-artists-grid { grid-template-columns: 1fr; }
    .gg-category-tabs { gap: 8px; }
    .gg-category-tab { padding: 8px 16px; font-size: 0.8rem; }
    .gg-navbar-links { display: none; }
}
