/* EventKey v3 - Public Pages */

/* Hero Section */
.ek-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.ek-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.ek-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.ek-hero .lead {
    font-size: 1.25rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ek-hero .btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.625rem;
}

/* Features Section */
.ek-features {
    padding: 5rem 0;
}

.ek-feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--ek-border-color, #e2e8f0);
    background: var(--ek-card-bg, #fff);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.ek-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.ek-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.ek-feature-icon.blue { background: rgba(37, 99, 235, 0.1); color: #2563eb; }
.ek-feature-icon.green { background: rgba(34, 197, 94, 0.1); color: #22c55e; }
.ek-feature-icon.purple { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.ek-feature-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.ek-feature-icon.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.ek-feature-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.ek-feature-card p {
    font-size: 0.875rem;
    color: var(--ek-text-secondary, #64748b);
    margin-bottom: 0;
}

/* Pricing Section */
.ek-pricing {
    padding: 5rem 0;
    background: var(--ek-body-bg, #f8fafc);
}

.ek-pricing-card {
    background: var(--ek-card-bg, #fff);
    border: 1px solid var(--ek-border-color, #e2e8f0);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ek-pricing-card.featured {
    border-color: #2563eb;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.15);
    position: relative;
}

.ek-pricing-card.nonprofit {
    border-color: #22c55e;
    position: relative;
}

.ek-pricing-card.custom {
    border-color: #8b5cf6;
    position: relative;
}

.ek-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    color: #fff;
    white-space: nowrap;
}

.ek-pricing-badge.nonprofit {
    background: #22c55e;
}

.ek-pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
}

.ek-pricing-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.ek-pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ek-text-primary);
    margin: 1rem 0;
}

.ek-pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--ek-text-secondary, #64748b);
}

.ek-pricing-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    text-align: left;
}

.ek-pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--ek-text-secondary, #64748b);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ek-pricing-features li i {
    color: #22c55e;
}

/* CTA Section */
.ek-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #fff;
    text-align: center;
}

.ek-cta h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.ek-cta p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Section Headers */
.ek-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ek-section-header h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.ek-section-header p {
    font-size: 1rem;
    color: var(--ek-text-secondary, #64748b);
    max-width: 600px;
    margin: 0 auto;
}

/* Public Navbar */
.ek-public-navbar {
    background: transparent;
    padding: 1rem 0;
    transition: background 0.3s ease;
}

.ek-public-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

[data-bs-theme="dark"] .ek-public-navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

/* Footer */
.ek-footer {
    background: #1e293b;
    color: #cbd5e1;
    padding: 3rem 0 1.5rem;
}

.ek-footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ek-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ek-footer ul li {
    margin-bottom: 0.5rem;
}

.ek-footer ul li a {
    color: #94a3b8;
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.2s;
}

.ek-footer ul li a:hover {
    color: #fff;
}

.ek-footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 767.98px) {
    .ek-hero {
        padding: 4rem 0;
    }

    .ek-hero h1 {
        font-size: 2rem;
    }

    .ek-pricing-price {
        font-size: 2rem;
    }
}
