:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --dark-color: #1e1b4b;
    --light-color: #f5f3ff;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #fafafa;
}

/* Header Styles */
.header-blur {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 231, 231, 0.8);
}

.navbar-brand {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    padding: 1rem;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.search-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

/* Creator Cards */
.creator-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 1;
    text-align: left;
}

.creator-card:hover {
    transform: translateY(-5px);
}

.creator-card.fade-out {
    opacity: 0;
}

.card-image {
    position: relative;
    height: 240px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.card-footer {
    display: flex;
    justify-content: start;
    align-items: center;
    margin-top: 1rem;
}

.price {
    font-weight: 600;
    color: var(--primary-color);
}

.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
}

.featured-section,
.why-choose-section {
    padding: 5rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 0;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* Add these styles for the dropdown and footer */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.5rem;
}

.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.footer {
    background-color: #1f2937;
}

.footer-links {
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
    display: inline-block;
}

.footer hr {
    opacity: 0.1;
}

.related-cats {
    display: flex;
    flex-wrap: wrap;
}

.related-cats li {
    padding: 5px 10px;
    border: 1px solid #6366f1;
    border-radius: 5px;
    margin: 5px;
}

.related-cats li a {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .footer .col-6 {
        margin-bottom: 2rem;
    }
}