@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro');

:root {
    --primary: #6366f1;
    --accent: #f43f5e;
    --bg: #18181b;
    --bg2: #232336;
    --text: #f3f4f6;
    --muted: #a1a1aa;
    --card: #232336;
    --glass: rgba(36, 37, 54, 0.7);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --shadow-lg: 0 12px 40px 0 rgba(99, 102, 241, 0.18);
    --shadow-border: 0 0 0 4px var(--primary),
        0 8px 32px 0 rgba(31, 38, 135, 0.22);
}

html,
body {
    margin: 0;
    padding: 0;
    font-family: "Righteous", cursive;
    background: linear-gradient(120deg, #18181b 0%, #232336 100%);
    color: var(--text);
    min-height: 100vh;
    scroll-behavior: smooth;
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(120deg, #232336 0%, #18181b 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1500&q=80') center/cover no-repeat;
    opacity: 0.18;
    pointer-events: none;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(.25, .46, .45, .94);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(24, 24, 27, 0.7);
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(6px);
}

.hero-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 32px 0 rgba(99, 102, 241, 0.2);
    object-fit: cover;
    background: var(--bg2);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-desc {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-desc {
        transform: scale(.8);
    }
}

.btn {
    padding: 0.75rem 2rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px 0 rgba(99, 102, 241, 0.15);
    background: var(--primary);
    color: #fff;
}

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

.btn:hover,
.btn.outline:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

/* Section */

section {
    padding: 6rem 0 4rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.section-desc {
    color: var(--muted);
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

/* Footer */

footer {
    background: #18181b;
    color: var(--muted);
    text-align: center;
    padding: 2.5rem 0 1.2rem 0;
    font-size: 1.05rem;
    margin-top: 2rem;
    border-top: 2px solid var(--primary);
    box-shadow: 0 -4px 32px 0 rgba(99, 102, 241, 0.10);
}

.footer-socials {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--muted);
    font-size: 1.6rem;
    transition: color 0.2s, transform 0.2s;
}

.footer-socials a:hover {
    color: var(--primary);
    transform: scale(1.2) rotate(-8deg);
}

/* Parallax & 3D Animations */

.parallax-tilt {
    will-change: transform;
    transition: box-shadow 0.2s;
}

/* Responsive */

@media (max-width: 768px) {
    .hero-content {
        width: 80%;
        max-width: 400px;
        padding: 1.5rem;
        border-radius: 1.5rem;
    }

    section {
        padding: 4rem 0 2rem 0;
    }
}