/* Reclaim Media - Global Styles */
:root {
    --dark: #1a1a2e;
    --accent: #e94560;
    --light: #eaeaea;
    --mid: #16213e;
    --gold: #f5a623;
    --success: #4ecdc4;
}

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

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    min-height: 100vh;
    line-height: 1.6;
}

/* Navigation */
.nav {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    opacity: 0.8;
}

.nav-links a:hover {
    color: var(--accent);
    opacity: 1;
}

.container {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

/* Hero */
.hero {
    text-align: center;
    padding: 5rem max(2rem, 6vw) 4rem;
    background:
        radial-gradient(circle at 50% 0%, rgba(233, 69, 96, 0.18), transparent 38rem),
        linear-gradient(180deg, var(--dark), rgba(22, 33, 62, 0.55));
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    font-size: 1.25rem;
    color: var(--light);
    opacity: 0.8;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.6;
    max-width: 760px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: var(--gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--light);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn-spotify {
    background: #1db954;
    color: white;
}

.btn-spotify:hover {
    background: #1ed760;
}

.btn-youtube {
    background: #ff0000;
    color: white;
}

.btn-youtube:hover {
    background: #cc0000;
}

/* Section Titles */
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--light);
}

/* Featured Artist */
.featured,
.what-we-do,
.cta {
    width: min(100%, 1600px);
    margin: 0 auto;
    padding: 4rem max(1.5rem, 4vw) 0;
}

.featured {
    padding-top: 3rem;
}

.featured-card {
    display: grid;
    grid-template-columns: minmax(360px, 40%) 1fr;
    gap: 3rem;
    background: var(--mid);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
    min-height: 430px;
}

.featured-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.featured-info {
    padding: clamp(2rem, 4vw, 4rem) clamp(2rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-label {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    width: fit-content;
}

.featured-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.featured-genre {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.featured-desc {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.featured-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 0.8rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: var(--mid);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.artist-card {
    background: var(--mid);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(233, 69, 96, 0.2);
}

.artist-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.artist-info {
    padding: 1.5rem;
}

.artist-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.artist-genre {
    font-size: 0.9rem;
    color: var(--accent);
    margin-bottom: 0.75rem;
}

.artist-desc {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.artist-link {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.artist-link:hover {
    background: var(--gold);
}

.coming-soon {
    background: var(--mid);
    border: 2px dashed rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-radius: 16px;
}

.coming-soon-text {
    font-size: 1.25rem;
    opacity: 0.5;
}

/* CTA Section */
.cta-card {
    background: linear-gradient(135deg, var(--mid), var(--dark));
    border: 1px solid rgba(233, 69, 96, 0.3);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    margin-bottom: 3rem;
}

.cta-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-card p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.8;
}

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

/* Page Header */
.page-header {
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 2rem;
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Content Card */
.content-card {
    background: var(--mid);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.content-card p {
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-card p:last-child {
    margin-bottom: 0;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: var(--light);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Press Kit */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.press-item {
    background: var(--dark);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
}

.press-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.press-item p {
    font-size: 0.85rem;
    opacity: 0.6;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: var(--mid);
    margin-top: 4rem;
    padding-top: 3rem;
}

.footer-inner {
    width: min(100%, 1600px);
    margin: 0 auto;
    padding: 0 2rem 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    opacity: 0.6;
    font-size: 0.9rem;
}

.footer-links a,
.footer-social a {
    display: block;
    color: var(--light);
    text-decoration: none;
    opacity: 0.7;
    padding: 0.25rem 0;
    transition: opacity 0.2s;
}

.footer-links a:hover,
.footer-social a:hover {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 1.5rem 2rem;
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Press Artist Grid */
.press-artist-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.press-artist-image {
    width: 100%;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 1100px) {
    .featured-card {
        grid-template-columns: minmax(300px, 38%) 1fr;
        gap: 2rem;
    }

    .featured-image {
        min-height: 360px;
    }
}

@media (max-width: 820px) {
    .logo {
        font-size: 2.5rem;
    }
    
    .nav-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .featured-card {
        grid-template-columns: 1fr;
    }
    
    .featured-image {
        min-height: 250px;
        max-height: 350px;
    }
    
    .featured-info {
        padding: 1.5rem;
    }

    .featured-name {
        font-size: 1.8rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }
    
    .featured-stats {
        justify-content: center;
        gap: 1.5rem;
    }

    .featured-links {
        justify-content: center;
    }

    .featured-links .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.25rem;
    }

    .hero {
        padding: 3rem 1rem 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .container {
        padding: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .press-artist-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .press-artist-image {
        max-width: 200px;
        margin: 0 auto 1rem;
    }

    .cta-card {
        padding: 2rem 1.5rem;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 2rem;
    }

    .featured-card {
        margin-bottom: 2rem;
    }

    .featured-image {
        min-height: 200px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .nav-links a {
        font-size: 0.8rem;
    }
}
