:root {
    --primary: #9b4dca;
    /* Vibrant Purple */
    --primary-dark: #7a3ca3;
    --secondary: #ffce00;
    /* Gold accent */
    --dark: #121212;
    --light: #f4f4f4;
    --gray: #333333;
    --surface: #1e1e1e;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --gradient-hero: linear-gradient(135deg, #121212 0%, #2a1b3d 100%);
    --gradient-text: linear-gradient(45deg, #ffce00, #ff5e62);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(155, 77, 202, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(155, 77, 202, 0.6);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: white;
}

/* Header */
header {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: white;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    position: relative;
    padding-top: 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 345px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transform: perspective(1000px) rotateY(-10deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--surface);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #333;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
}

.showcase-item {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-img {
    flex: 1;
}

.showcase-img img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-card);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--surface) 0%, var(--dark) 100%);
    text-align: center;
}

.contact-box {
    background: #2a2a2a;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 20px;
    border: 1px solid #333;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background: #333;
    border: none;
    border-radius: 10px;
    color: white;
    font-family: var(--font-body);
}

.contact input:focus,
.contact textarea:focus {
    outline: 2px solid var(--primary);
}

/* Footer */
footer {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #333;
    color: var(--text-secondary);
}

/* Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-image img {
        transform: none;
    }

    .nav-links {
        display: none;
        /* Add mobile menu later */
    }

    .showcase-item,
    .showcase-item:nth-child(even) {
        flex-direction: column;
    }
}