/* Gift Genie – Landingspagina */

:root {
    --bg: #faf9fc;
    --bg-card: #ffffff;
    --text: #1a1a24;
    --text-muted: #5c5c6d;
    --primary: #5E35B1;
    --primary-light: #7C4DFF;
    --primary-pale: #ede7f6;
    --accent: #b388ff;
    --border: #e8e0f0;
    --radius: 16px;
    --radius-lg: 24px;
    --shadow: 0 4px 24px rgba(94, 53, 177, 0.08);
    --shadow-hover: 0 8px 32px rgba(94, 53, 177, 0.12);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 249, 252, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.logo-footer {
    height: 64px;
    width: auto;
    display: block;
    margin: 0 auto 8px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    box-shadow: var(--shadow-hover);
}

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

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero-inner {
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: var(--primary-pale);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 24px;
    color: var(--text);
}

.hero-title em {
    font-style: italic;
    color: var(--primary);
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 0 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero orbs (decoratief) */
.hero-visual {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-pale);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 280px;
    height: 280px;
    background: var(--accent);
    bottom: 20%;
    right: 10%;
    opacity: 0.25;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-light);
    bottom: -50px;
    left: 20%;
    opacity: 0.2;
}

/* Section: Hoe het werkt */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 600;
    text-align: center;
    margin: 0 0 48px;
    color: var(--text);
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.step {
    background: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: box-shadow 0.2s, transform 0.2s;
}

.step:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 1.25rem;
    margin: 0 0 12px;
    color: var(--text);
}

.step p {
    margin: 0;
    color: var(--text-muted);
    font-size: 1rem;
}

/* CTA sectie */
.cta-section {
    padding: 60px 0 80px;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 56px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.cta-box h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin: 0 0 12px;
}

.cta-box p {
    margin: 0 0 24px;
    opacity: 0.95;
}

.cta-box .btn-primary {
    background: white;
    color: var(--primary);
}

.cta-box .btn-primary:hover {
    background: var(--bg);
    color: var(--primary);
}

/* Footer */
.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.footer-inner {
    text-align: center;
}

.footer .logo {
    display: inline-block;
    margin-bottom: 8px;
}

.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Responsive */
@media (max-width: 640px) {
    .nav a:not(.btn) {
        display: none;
    }

    .hero {
        padding: 48px 0 72px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .section {
        padding: 56px 0;
    }
}
