/* =========================================
   1. CORE RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    background-color: #0f172a; /* Deep Navy Background */
    color: #f8fafc;
    scroll-behavior: smooth;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* =========================================
   2. NAVIGATION
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(30, 41, 59, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #334155;
}

nav .logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #38bdf8;
    letter-spacing: 3px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #38bdf8;
}

/* =========================================
   3. HERO SECTION (HOME)
   ========================================= */
.hero {
    text-align: center;
    padding: 100px 10%;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                url('https://images.unsplash.com/photo-1550745165-9bc0b252728f?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    color: #94a3b8;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.cta-btn {
    background-color: #38bdf8;
    color: #0f172a;
    padding: 15px 35px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background-color: #7dd3fc;
    transform: translateY(-3px);
}

/* =========================================
   4. ABOUT & PROCESS SECTIONS
   ========================================= */
.about-section, .process-section {
    padding: 80px 10%;
    background-color: #1e293b;
    text-align: center;
}

.about-content h2, .process-section h2 {
    color: #38bdf8;
    margin-bottom: 20px;
    font-size: 2rem;
}

.about-content p {
    max-width: 800px;
    margin: 0 auto;
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.8;
}

.process-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.step span {
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(56, 189, 248, 0.1);
    display: block;
}

.step h4 {
    margin-top: -30px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* =========================================
   5. CREATOR ROSTER (INDEX)
   ========================================= */
.roster {
    padding: 80px 8%;
    background-color: #0f172a;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

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

.card {
    background: #1e293b;
    padding: 40px 25px;
    border-radius: 20px;
    border: 1px solid #334155;
    text-align: center;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    border-color: #38bdf8;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.15);
}

.logo-container {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    border-radius: 50%;
    border: 3px solid #38bdf8;
    background: #0f172a;
    overflow: hidden;
}

.creator-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.subs {
    color: #38bdf8;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 10px 0;
}

.card-desc {
    color: #94a3b8;
    font-size: 0.9rem;
}

/* =========================================
   6. SERVICES PAGE STYLES
   ========================================= */
.services-hero {
    text-align: center;
    padding: 80px 10%;
    background: #0f172a;
}

.services-grid-container {
    padding: 0 8% 80px;
    background: #0f172a;
}

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

.service-card {
    background: #1e293b;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #334155;
    transition: 0.3s ease;
}

.service-card:hover {
    border-color: #38bdf8;
}

.service-card .icon {
    font-size: 2.5rem;
    color: #38bdf8;
    margin-bottom: 20px;
}

.coming-soon-card {
    border-style: dashed;
    opacity: 0.7;
}

/* =========================================
   7. FOOTER
   ========================================= */
footer {
    text-align: center;
    padding: 50px;
    background: #0f172a;
    color: #64748b;
    border-top: 1px solid #1e293b;
    margin-top: auto; /* Ensures footer stays at bottom */
}

/* =========================================
   8. RESPONSIVE DESIGN (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    nav { padding: 15px 5%; }
    .creator-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .step { min-width: 100%; }
}
