/* 🎥 VOD Manager - Professional Home Page Styles */

/* ========== HOME PAGE BASE ========== */
body.home-page,
body.home-page.no-sidebar {
    padding-right: 0 !important; /* Remove sidebar padding */
}

.home-page {
    background: var(--bg-darkest);
    background-image: 
        radial-gradient(circle at 80% 80%, rgba(255, 107, 157, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 60%, rgba(196, 69, 105, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(199, 179, 255, 0.08) 0%, transparent 50%);
    background-attachment: fixed;
}

/* ========== HERO SECTION ========== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '✨';
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-section::after {
    content: '🎬';
    position: absolute;
    bottom: 15%;
    left: 10%;
    font-size: 3rem;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-content {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--border);
    border-radius: 32px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 80px var(--shadow);
    transition: all 0.4s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 100px var(--glow);
    border-color: var(--pink);
}

.hero-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--pink), var(--purple), var(--blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--lavender);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #5865F2, #7289DA);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(88, 101, 242, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(88, 101, 242, 0.5);
    background: linear-gradient(135deg, #7289DA, #5865F2);
}

.hero-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(31, 41, 55, 0.3), transparent);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--lavender);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--pink);
    box-shadow: 0 15px 50px var(--glow);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* ========== WORKFLOW SECTION ========== */
.workflow-section {
    padding: 6rem 2rem;
    background: var(--bg-darker);
}

.workflow-steps {
    max-width: 800px;
    margin: 0 auto;
}

.workflow-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.workflow-step:hover {
    border-color: var(--cyan);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(96, 163, 188, 0.3);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 20px rgba(255, 107, 157, 0.4);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.workflow-connector {
    text-align: center;
    font-size: 2rem;
    color: var(--lavender);
    margin: 0.5rem 0;
    animation: pulse 2s ease-in-out infinite;
}

/* ========== SPECS SECTION ========== */
.specs-section {
    padding: 6rem 2rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.spec-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.spec-card:hover {
    border-color: var(--blue);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(74, 105, 189, 0.3);
}

.spec-card h4 {
    font-size: 1.4rem;
    color: var(--lavender);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.spec-card ul {
    list-style: none;
    padding: 0;
}

.spec-card li {
    color: var(--text-secondary);
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
    line-height: 1.6;
}

.spec-card li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--cyan);
    font-size: 1.2rem;
}

/* ========== ACCESS SECTION ========== */
.access-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, transparent, rgba(31, 41, 55, 0.3));
}

.access-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 2px solid var(--border);
    border-radius: 28px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px var(--shadow);
}

.access-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.access-card h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.access-card > p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.access-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    text-align: left;
}

.access-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
}

.feature-check {
    color: var(--success);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ========== FOOTER ========== */
.home-footer {
    background: var(--bg-darker);
    border-top: 2px solid var(--border);
    padding: 3rem 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-icon {
    font-size: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-info p {
    color: var(--text-muted);
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-info p:first-child {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3rem 1rem;
    }

    .hero-content {
        padding: 2.5rem 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-section,
    .workflow-section,
    .specs-section,
    .access-section {
        padding: 4rem 1rem;
    }

    .features-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step {
        flex-direction: column;
        gap: 1rem;
        transform: none !important;
    }

    .workflow-step:hover {
        transform: translateY(-5px) !important;
    }

    .access-card {
        padding: 2rem 1.5rem;
    }

    .access-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

/* ========== UTILITY OVERRIDES ========== */
.home-page .btn-block {
    display: block;
    width: 100%;
    margin-top: 2rem;
}
