﻿/* Raven Digital Custom Styles */

:root {
    --primary-purple: #9B59B6;
    --secondary-purple: #8E44AD;
    --accent-purple: #BB8FCE;
    --dark-bg: #000000;
    --dark-gray: #1a1a1a;
    --light-gray: #cccccc;
    --white: #ffffff;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-bg);
    color: var(--white);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000000 0%, #1a0033 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(155, 89, 182, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 50%, rgba(142, 68, 173, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

.hero-content {
    text-align: center;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.raven-brand {
    display: block;
    color: var(--white);
    text-shadow: 0 0 30px rgba(155, 89, 182, 0.5);
}

.digital-brand {
    display: block;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.3);
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-purple);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--light-gray);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary, .btn-cta {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(155, 89, 182, 0.5);
    }

.btn-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

    .btn-secondary:hover {
        background: var(--primary-purple);
        color: var(--white);
        transform: translateY(-3px);
    }

/* Services Section */
.services-section {
    padding: 6rem 2rem;
    background-color: var(--dark-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--white) 0%, var(--accent-purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.section-subtitle {
    font-size: 1.3rem;
    color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2a0a3d 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(155, 89, 182, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, var(--primary-purple), var(--accent-purple));
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .service-card:hover::before {
        transform: scaleX(1);
    }

    .service-card:hover {
        transform: translateY(-10px);
        border-color: var(--primary-purple);
        box-shadow: 0 20px 60px rgba(155, 89, 182, 0.3);
    }

.service-icon {
    color: var(--primary-purple);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-description {
    color: var(--light-gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

    .service-list li {
        padding: 0.8rem 0;
        color: var(--light-gray);
        border-bottom: 1px solid rgba(155, 89, 182, 0.1);
        position: relative;
        padding-left: 1.5rem;
    }

        .service-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--primary-purple);
            font-weight: bold;
        }

.service-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

    .service-link:hover {
        color: var(--accent-purple);
        transform: translateX(10px);
    }

/* Why Section */
.why-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0a0015 0%, #1a0033 100%);
}

.why-content {
    max-width: 1200px;
    margin: 0 auto;
}

    .why-content h2 {
        text-align: center;
        font-size: 3rem;
        margin-bottom: 4rem;
        background: linear-gradient(135deg, var(--white) 0%, var(--accent-purple) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.why-item {
    text-align: center;
    padding: 2rem;
    background: rgba(155, 89, 182, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
}

    .why-item:hover {
        background: rgba(155, 89, 182, 0.1);
        border-color: var(--primary-purple);
        transform: translateY(-5px);
    }

.why-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-purple);
    margin-bottom: 1rem;
    opacity: 0.5;
}

.why-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.why-item p {
    color: var(--light-gray);
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d0a4d 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
}

.btn-cta {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    color: var(--white);
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.4);
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
}

    .btn-cta:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 50px rgba(155, 89, 182, 0.6);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2,
    .why-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary, .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}
