/* css/style.css */
:root {
    --primary: #4F46E5;
    --primary-dark: #4338CA;
    --secondary: #7C3AED;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --dark: #1F2937;
    --light: #F9FAFB;
    --gradient: linear-gradient(135deg, #4F46E5, #7C3AED);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.95) !important;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.5rem;
    color: var(--primary) !important;
}

/* Hero Section */
.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-badges .badge {
    padding: 8px 16px;
    margin-right: 8px;
    font-weight: 500;
    font-size: 0.85rem;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: #6B7280;
}

/* Section Styles */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 2rem;
}

/* Event Type Cards */
.event-type-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.event-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.event-type-card i {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.event-type-card span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Feature Cards */
.feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #6B7280;
    margin: 0;
}

/* Template Cards */
.template-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.template-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.template-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.template-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.template-card:hover .template-image img {
    transform: scale(1.05);
}

.premium-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--warning);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.template-info {
    padding: 15px;
    text-align: center;
}

.template-info h6 {
    font-weight: 600;
    margin-bottom: 5px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, #EEF2FF, #F5F3FF);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #E5E7EB;
}

.pricing-header h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.price .free {
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
}

.price .currency {
    font-size: 1rem;
    vertical-align: top;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-features {
    flex: 1;
    padding: 20px 0;
}

.pricing-features ul li {
    padding: 8px 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features ul li i {
    width: 20px;
    text-align: center;
}

.pricing-footer {
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.testimonial-stars {
    color: var(--warning);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #4B5563;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

/* CTA Section */
#cta {
    background: var(--gradient) !important;
}

/* Footer */
.footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer h5 {
    font-weight: 600;
    margin-bottom: 20px;
}

.social-links a {
    transition: all 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        margin-bottom: 20px;
    }
    
    .event-type-card {
        padding: 15px;
    }
    
    .event-type-card i {
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-badges .badge {
        display: inline-block;
        margin-bottom: 5px;
    }
    
    .hero-actions .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}