/* Base Styles */
:root {
    --primary: #6A0DAD; /* Purple */
    --secondary: #FF6EC7; /* Pink */
    --accent: #FFF176; /* Yellow */
    --dark: #2A0845;
    --light: #f5f5f5;
    --text: #333333;
    --text-light: #ffffff;
    --gradient: linear-gradient(to right, var(--primary), var(--secondary));
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0.5em;
}

/* Typography */
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

section {
    padding: 4rem 1.5rem;
}

/* Header */
header {
    background: var(--gradient);
    color: var(--text-light);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.logo-svg {
    display: block;
}

nav {
    position: relative;
}

.menu-button {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

#menu-toggle {
    display: none;
}

.menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.menu a {
    color: var(--text-light);
    font-weight: 600;
    padding: 0.5rem;
    position: relative;
}

.menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--dark);
    color: var(--text-light);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-image: radial-gradient(circle at top right, rgba(106, 13, 173, 0.8), transparent 80%),
                      radial-gradient(circle at bottom left, rgba(255, 110, 199, 0.5), transparent 70%);
    text-align: center;
}

.hero-content {
    max-width: 600px;
    margin-right: 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.button.primary {
    background: var(--secondary);
    color: var(--text-light);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 110, 199, 0.4);
}

.button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 20px rgba(255, 110, 199, 0.6);
    color: var(--text-light);
}

.button.secondary {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.button.secondary:hover {
    background-color: rgba(255, 241, 118, 0.1);
    transform: translateY(-3px);
}

.button.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.hero-image {
    max-width: 100%;
    animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Features Section */
.features {
    background-color: var(--light);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

.feature-card p {
    color: #666;
}

/* How It Works Section */
.how-it-works {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.05) 0%, rgba(255, 110, 199, 0.05) 100%);
}

.steps {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.step-icon {
    background: var(--primary);
    color: var(--text-light);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 5px 10px rgba(106, 13, 173, 0.3);
}

.step-content {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    flex: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-content h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Generator Section */
.generator {
    background-color: white;
}

.generator-preview {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(106, 13, 173, 0.02);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.preview-placeholder {
    margin-bottom: 2rem;
}

.generator-cta {
    margin-top: 2rem;
}

.generator-cta p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: linear-gradient(135deg, rgba(106, 13, 173, 0.05) 0%, rgba(255, 110, 199, 0.05) 100%);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.faq-item p {
    color: #666;
}

/* Footer */
footer {
    background: var(--gradient);
    color: var(--text-light);
    padding: 3rem 1.5rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .menu.active {
        transform: translateY(0);
    }

    .menu a {
        display: block;
        padding: 1rem;
        text-align: center;
    }

    .menu-button {
        display: block;
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .menu-button span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 1rem;
    }
}
