:root {
    --primary-blue: #2563eb;
    --light-blue: #dbeafe;
    --dark-blue: #1e40af;
    --white: #ffffff;
    --gray-100: #f8fafc;
    --gray-200: #e2e8f0;
    --gray-600: #64748b;
    --gray-800: #1e293b;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--gray-100);
}

.navbar {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.2);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    /*padding: 80px 0;*/
    color: var(--white);
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.search-bar {
    background: var(--white);
    border-radius: 50px;
    padding: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
    justify-content: center;
}

.category-pill {
    background: var(--light-blue);
    color: var(--primary-blue);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-pill:hover, .category-pill.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.event-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
    overflow: hidden;
    margin-bottom: 30px;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.15);
}

.event-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.event-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-badge {
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
}

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 10px;
}

.event-meta {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.event-meta i {
    color: var(--primary-blue);
    margin-right: 5px;
}

.event-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.btn-primary {
    background: var(--primary-blue);
    border: none;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-header {
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 15px 15px 0 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--gray-800);
    font-weight: 700;
}

.featured-section {
    background: var(--white);
    padding: 80px 0;
    margin: 50px 0;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .category-pills {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 10px 0;
    }
    
    .search-bar {
        margin: 20px 0;
    }
}
.footer-section {
    background: linear-gradient(135deg, #1e293b, #0f172a) !important;
}

.footer-section a:hover {
    color: var(--primary-blue) !important;
    transition: color 0.3s ease;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-blue);
    color: white;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}  

#backToTop {
    width: 50px;
    height: 50px;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
} 



.auth-container {
            min-height: 100vh;
            display: flex;
            align-items: center;
            background: #f8f9fa;
        }
        
        .auth-card {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .auth-title {
            text-align: center;
            margin-bottom: 30px;
            font-weight: bold;
        }
        
        .dashboard-card {
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .event-details-hero {
            background-size: cover;
            background-position: center;
            padding: 100px 0;
            color: white;
            position: relative;
        }
        
        .event-details-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
        }
        
        .event-details-content {
            position: relative;
            z-index: 1;
        }
        
.how-it-works-card {
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.how-it-works-card:hover {
    transform: translateY(-5px);
}

.step-icon {
    position: relative;
    display: inline-block;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.author-name {
    margin-bottom: 0;
}

.rating {
    font-size: 14px;
}

.partner-logo {
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: transform 0.3s;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-name {
    font-weight: 500;
    color: #666;
}

.advanced-filters .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.advanced-filters .card-body {
    padding: 30px;
}