/* ============================================
   ZELEBRITY - Global Styles
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #faf9f6;
    color: #1a1a2e;
    line-height: 1.6;
}

/* Navigation */
.navbar {
    background: #1a1a2e;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-bottom: 3px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-family: 'Playfair Display', serif;
    color: #d4af37;
    font-size: 1.6rem;
    letter-spacing: 2px;
}

.logo p {
    color: #aaa;
    font-size: 0.65rem;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #d4af37;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
    color: white;
    text-align: center;
    padding: 4rem 5%;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(212,175,55,0.15);
    color: #d4af37;
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero h1 span {
    color: #d4af37;
}

.hero p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.hero-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    display: block;
}

.hero-stat .label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d4af37;
    color: #1a1a2e;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 0.8rem 2rem;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-secondary:hover {
    border-color: #d4af37;
    color: #d4af37;
}

/* Sections */
.section {
    padding: 4rem 5%;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.section-header a {
    color: #d4af37;
    text-decoration: none;
}

.dark-bg {
    background: #1a1a2e;
    color: white;
}

.dark-bg .section-header a {
    color: #d4af37;
}

/* Issue Grid */
.issue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.issue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.issue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.issue-cover {
    height: 300px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.issue-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-cover {
    text-align: center;
}

.placeholder-cover span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #d4af37;
    display: block;
}

.issue-content {
    padding: 1.5rem;
}

.issue-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.issue-content p {
    color: #6b7280;
    font-size: 0.9rem;
}

.issue-meta {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    font-size: 0.8rem;
    color: #888;
}

.issue-meta .price {
    color: #d4af37;
    font-weight: bold;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 3rem 5% 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer ul a:hover {
    color: #d4af37;
}

.footer-bottom {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.8rem;
    padding-top: 1.5rem;
}

.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #d4af37;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
    }
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-stats {
        gap: 1.5rem;
    }
    .hero-stat .number {
        font-size: 1.8rem;
    }
    .section-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .issue-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
    }
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.social-mango {
    display: inline-block;
    background: #f59e0b;
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}