/* VERZUZ - Modern, Clean Design */
/* Inspired by contemporary minimalist aesthetics */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Root Variables - In Luz We Trust Inspired */
:root {
    /* Primary Colors - Dark Pink/Mauve Palette */
    --verzuz-pink: #D946A6;
    --verzuz-mauve: #C84B9C;
    --verzuz-green: #4ADE80;
    --verzuz-dark: #0F0F0F;
    --verzuz-charcoal: #1A1A1A;
    --verzuz-offwhite: #F5F5F0;

    /* Accent Colors */
    --verzuz-pink-soft: rgba(217, 70, 166, 0.1);
    --verzuz-green-soft: rgba(74, 222, 128, 0.1);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing - Generous */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Borders */
    --border-radius: 16px;
    --border-radius-lg: 24px;
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    background: var(--verzuz-dark);
    color: var(--verzuz-offwhite);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(245, 245, 240, 0.8);
}

/* Container - Max Width with Generous Padding */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-lg) var(--spacing-md);
}

/* Modern Logo Treatment */
.verzuz-logo-modern {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--verzuz-pink) 0%, var(--verzuz-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Simple, Clean Logo SVG Container */
.verzuz-logo-svg-modern {
    display: inline-block;
    width: clamp(60px, 15vw, 120px);
    height: auto;
    transition: transform 0.3s ease;
}

.verzuz-logo-svg-modern:hover {
    transform: scale(1.05);
}

/* Cards - Clean & Minimal */
.card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-md);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

/* Buttons - Modern & Clean */
.btn {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.01em;
}

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

.btn-primary:hover {
    background: var(--verzuz-mauve);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(217, 70, 166, 0.4);
}

.btn-secondary {
    background: var(--verzuz-green);
    color: var(--verzuz-dark);
}

.btn-secondary:hover {
    background: #3BC970;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(74, 222, 128, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--verzuz-pink);
    color: var(--verzuz-pink);
}

.btn-outline:hover {
    background: var(--verzuz-pink);
    color: white;
}

/* Input Fields - Clean */
input[type="text"],
input[type="search"],
input[type="email"],
textarea {
    font-family: var(--font-primary);
    font-size: 1rem;
    padding: 1rem 1.5rem;
    border: 2px solid #E5E5E7;
    border-radius: var(--border-radius);
    background: white;
    color: var(--verzuz-dark);
    transition: all 0.3s ease;
    width: 100%;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--verzuz-red);
    box-shadow: 0 0 0 4px var(--verzuz-red-soft);
}

/* Section Headers */
.section-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--verzuz-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--verzuz-charcoal);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--spacing-md);
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-xl) var(--spacing-md);
    background: linear-gradient(135deg, var(--verzuz-cream) 0%, #FFFFFF 100%);
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    background: linear-gradient(135deg, var(--verzuz-red) 0%, var(--verzuz-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    color: var(--verzuz-charcoal);
    margin-bottom: var(--spacing-lg);
    font-weight: 400;
    max-width: 700px;
}

/* Badge/Status */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.badge-ready {
    background: rgba(34, 197, 94, 0.1);
    color: #16A34A;
}

.badge-processing {
    background: rgba(251, 146, 60, 0.1);
    color: #EA580C;
}

.badge-queued {
    background: rgba(147, 197, 253, 0.1);
    color: #2563EB;
}

/* Navigation - Clean & Minimal */
nav {
    background: white;
    border-bottom: 1px solid #E5E5E7;
    padding: var(--spacing-sm) 0;
}

nav a {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--verzuz-dark);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

nav a:hover {
    background: var(--verzuz-red-soft);
    color: var(--verzuz-red);
}

/* Loading Spinner - Minimal */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(230, 57, 70, 0.1);
    border-top: 3px solid var(--verzuz-red);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive Typography */
@media (max-width: 768px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .container {
        padding: var(--spacing-md) var(--spacing-sm);
    }
}

/* Smooth Transitions */
* {
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Accessibility */
:focus-visible {
    outline: 2px solid var(--verzuz-red);
    outline-offset: 4px;
}

/* Scrollbar - Minimal */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--verzuz-cream);
}

::-webkit-scrollbar-thumb {
    background: #D1D1D6;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--verzuz-red);
}
