/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-bar {
    background: linear-gradient(135deg, #7c3aed, #dc2626);
    color: white;
    padding: 0.5rem 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.social-link:hover {
    opacity: 0.8;
}

.main-header {
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.logo-text p {
    font-size: 0.875rem;
    color: #6b7280;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link.active {
    color: #dc2626;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background: #dc2626;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s;
}

/* Page Styles */
.page {
    display: none;
    min-height: calc(100vh - 200px);
}

.page.active {
    display: block;
}

.page-header {
    text-align: center;
    padding: 3rem 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    z-index: 3;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Event Date Badge */
.event-date-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 1rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(124,58,237,0.3);
    z-index: 4;
    min-width: 80px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.date-month {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Sponsor Badge */
.sponsor-badge {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: rgba(220,38,38,0.9);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 4;
    backdrop-filter: blur(10px);
}

/* CTA Button */
.cta-button,
.cta-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover,
.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Search Section */
.search-section {
    position: relative;
    margin-top: -5rem;
    z-index: 10;
    padding-bottom: 2rem;
}

.search-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    padding: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input {
    flex: 1;
    min-width: 250px;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.search-select {
    min-width: 200px;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.search-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #1f2937;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header p {
    color: #6b7280;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

/* Ad Banners */
.ad-banners {
    padding: 2rem 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.banner-large,
.banner-medium {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.banner-large:hover,
.banner-medium:hover {
    transform: scale(1.02);
}

.banner-large {
    height: 200px;
}

.banner-medium {
    height: 200px;
}

.banner-large img,
.banner-medium img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.banner-large:hover img,
.banner-medium:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 1rem;
}

.banner-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.banner-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.banner-tag {
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Categories Section */
.categories-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fef2f2, #f3e8ff);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.category-card:hover::before {
    left: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.15);
}

.category-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220,38,38,0.1), rgba(124,58,237,0.1));
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.category-card p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.category-count {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
}

/* Featured Events */
.featured-events {
    padding: 4rem 0;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.event-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: #7c3aed;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.event-date .day {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.75rem;
    line-height: 1;
}

.event-date-purple {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
    z-index: 3;
    min-width: 60px;
}

.event-date-purple .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.event-date-purple .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.event-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
}

.event-card-content {
    padding: 1.5rem;
}

.event-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.event-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.event-info span {
    font-size: 1rem;
}

/* Featured Galleries */
.featured-galleries {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

.featured-galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.featured-gallery-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.featured-gallery-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -5px rgba(0,0,0,0.15);
}

.featured-gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.featured-gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(124,58,237,0.3);
    z-index: 3;
    min-width: 60px;
}

.gallery-date-badge .day {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.gallery-date-badge .month {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.featured-gallery-card-content {
    padding: 1.5rem;
}

.featured-gallery-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.featured-gallery-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.gallery-stat {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.gallery-stat svg {
    color: #dc2626;
}

/* Featured Venues */
.featured-venues {
    background: #f9fafb;
    padding: 4rem 0;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.venue-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.venue-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.venue-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.venue-card-content {
    padding: 1.5rem;
}

.venue-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.venue-type {
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.venue-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    color: #fbbf24;
    font-size: 1.1em;
}

/* Latest Gallery */
.latest-gallery {
    padding: 4rem 0;
}

.gallery-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 1rem;
    scroll-behavior: smooth;
}

.gallery-item {
    flex: none;
    width: 320px;
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: background 0.3s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,0.6);
}

.gallery-controls {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-controls {
    opacity: 1;
}

.gallery-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.gallery-btn:hover {
    background: rgba(255,255,255,0.3);
}

.gallery-caption {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-text p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #fef2f2, #f3e8ff);
    border-radius: 0.75rem;
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
}

/* Gallery Page */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 9999px;
    background: #f3f4f6;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #dc2626;
    color: white;
}

.galleries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.gallery-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.gallery-card-content {
    padding: 1.5rem;
}

.gallery-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.gallery-card p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.gallery-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: #6b7280;
}

/* Venues Page */
.venue-filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.venues-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.venue-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform 0.3s, box-shadow 0.3s;
}

.venue-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.venue-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.venue-item-content {
    padding: 1.5rem;
}

.venue-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.venue-item p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.venue-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.venue-detail svg,
.event-detail svg,
.event-info svg {
    color: #dc2626;
    flex-shrink: 0;
}

.venue-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.amenity-tag {
    background: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
}

.venue-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
}

.action-btn.primary {
    background: #dc2626;
    color: white;
}

.action-btn.secondary {
    background: #7c3aed;
    color: white;
}

.action-btn.outline {
    background: transparent;
    color: #374151;
    border: 1px solid #d1d5db;
}

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

/* Events Page */
.events-calendar {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.calendar-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
}

#month-selector {
    padding: 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: white;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e5e7eb;
    border-radius: 0.375rem;
    overflow: hidden;
}

.calendar-day {
    background: white;
    padding: 0.75rem;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: background 0.3s;
}

.calendar-day:hover {
    background: #f9fafb;
}

.calendar-day.has-event {
    background: #fef2f2;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    width: 0.5rem;
    height: 0.5rem;
    background: #dc2626;
    border-radius: 50%;
}

.events-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-item {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.event-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.event-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.event-item-content {
    padding: 1.5rem;
}

.event-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.event-item p {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.event-detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.event-item-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* Contact Page */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
}

.submit-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card,
.services-card {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
    padding: 1.5rem;
}

.contact-card h3,
.services-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-item strong {
    color: #1f2937;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #6b7280;
    margin: 0;
}

.services-list {
    list-style: none;
}

.services-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.services-list li:before {
    content: '•';
    color: #dc2626;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.services-list li:last-child {
    border-bottom: none;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo p {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.contact-item-footer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #9ca3af;
}

.contact-item-footer svg {
    color: #dc2626;
    flex-shrink: 0;
}

/* Photo Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.98);
    z-index: 9999;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(0,0,0,0.5);
}

.photo-info h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.photo-info p {
    color: #d1d5db;
    font-size: 0.875rem;
}

.modal-controls {
    display: flex;
    gap: 0.75rem;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 1.125rem;
}

.control-btn:hover {
    background: rgba(255,255,255,0.3);
}

.modal-body {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.nav-btn {
    position: absolute;
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.3s;
    z-index: 10;
}

.nav-btn:hover {
    background: rgba(0,0,0,0.7);
}

.nav-btn.prev {
    left: 2rem;
}

.nav-btn.next {
    right: 2rem;
}

#modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: pointer;
}

.modal-footer {
    background: rgba(0,0,0,0.5);
    padding: 1rem;
}

.thumbnails {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0.5rem 0;
}

.thumbnail {
    width: 4rem;
    height: 4rem;
    border-radius: 0.375rem;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    flex-shrink: 0;
}

.thumbnail.active {
    border-color: white;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .banner-carousel {
        height: 300px;
    }
    
    .slide-text h2 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .event-date-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem;
        min-width: 60px;
    }
    
    .date-day {
        font-size: 1.5rem;
    }
    
    .sponsor-badge {
        top: 1rem;
        left: 1rem;
        padding: 0.375rem 0.75rem;
        font-size: 0.625rem;
    }
    
    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-input,
    .search-select {
        min-width: auto;
    }
    
    .banner-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid,
    .venues-grid,
    .galleries-grid,
    .featured-galleries-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .venue-item,
    .event-item {
        grid-template-columns: 1fr;
    }
    
    .venue-item img,
    .event-item img {
        height: 200px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-btn {
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
    
    .nav-btn.prev {
        left: 1rem;
    }
    
    .nav-btn.next {
        right: 1rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .photo-info h3 {
        font-size: 1rem;
    }
    
    .control-btn {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .banner-carousel {
        height: 250px;
    }
    
    .slide-text h2 {
        font-size: 24px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .category-card {
        padding: 1.5rem;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .gallery-carousel {
        gap: 0.5rem;
    }
    
    .gallery-item {
        width: 280px;
    }
}/* Stati
c Images Styles */
.event-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.event-date-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.date-day {
    display: block;
    font-size: 18px;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

.event-content {
    padding: 20px;
}

.event-category {
    color: #7c3aed;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.event-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.3;
}

.event-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    color: #6b7280;
}

.event-venue {
    display: flex;
    align-items: center;
    gap: 6px;
}

.event-venue svg {
    color: #dc2626;
}

.event-price {
    font-size: 16px;
    font-weight: 600;
    color: #dc2626;
}

/* Gallery Cards */
.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.gallery-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.7));
    display: flex;
    align-items: flex-end;
    padding: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    display: flex;
    gap: 15px;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.gallery-content {
    padding: 20px;
}

.gallery-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    line-height: 1.3;
}

.gallery-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.gallery-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
}

/* Venue Cards */
.venue-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.venue-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.venue-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.venue-content {
    padding: 20px;
}

.venue-name {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    line-height: 1.3;
}

.venue-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    display: flex;
    gap: 2px;
}

.star {
    color: #d1d5db;
    font-size: 16px;
}

.star.filled {
    color: #fbbf24;
}

.rating-text {
    font-size: 14px;
    color: #6b7280;
}

.venue-description {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.4;
    margin-bottom: 12px;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
}

.venue-location svg {
    color: #dc2626;
}

/* Gallery Photos */
.gallery-photo {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-photo:hover {
    transform: scale(1.05);
}

.gallery-photo img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 15px;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-info h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
}

.photo-info span {
    font-size: 14px;
    opacity: 0.9;
}

/* Ad Banners */
.ad-banner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.ad-banner:hover {
    transform: scale(1.02);
}

.ad-banner img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 38, 38, 0.8), rgba(124, 58, 237, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ad-banner:hover .ad-overlay {
    opacity: 1;
}

.ad-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.ad-content p {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ad-label {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* Banner Carousel */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Carousel Slides */
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.slide-text h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-text p {
    font-size: 20px;
    margin-bottom: 24px;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 20px;
}

.carousel-btn.next {
    right: 20px;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: white;
    transform: scale(1.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .banner-carousel {
        height: 300px;
    }
    
    .slide-text h2 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn.prev {
        left: 10px;
    }
    
    .carousel-btn.next {
        right: 10px;
    }
    
    .event-image,
    .gallery-image,
    .venue-image {
        height: 150px;
    }
    
    .gallery-photo img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .banner-carousel {
        height: 250px;
    }
    
    .slide-text h2 {
        font-size: 24px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}/* Sec
tion CTA Styles */
.section-cta {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(124, 58, 237, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.section-cta p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-cta .cta-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.section-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.4);
}

/* Grid adjustments for 6 items */
.events-grid,
.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .events-grid,
    .venues-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .events-grid,
    .venues-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive adjustments for CTA */
@media (max-width: 768px) {
    .section-cta {
        margin-top: 30px;
        padding: 20px;
    }
    
    .section-cta p {
        font-size: 16px;
    }
    
    .section-cta .cta-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}/
* Categories Section */
.categories-section {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), rgba(124, 58, 237, 0.02));
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.category-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 38, 0.1);
}

.category-icon {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(124, 58, 237, 0.1));
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(124, 58, 237, 0.15));
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #dc2626;
}

.category-card p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 20px;
}

.category-count {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for categories */
@media (max-width: 768px) {
    .categories-section {
        padding: 40px 0;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
    }
    
    .category-card h3 {
        font-size: 20px;
    }
    
    .category-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .category-card {
        padding: 25px 15px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-card h3 {
        font-size: 18px;
    }
}/
* Premium Banner Section */
.premium-banner-section {
    padding: 30px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(124, 58, 237, 0.03));
}

.premium-banner {
    background: linear-gradient(135deg, #1f2937, #374151);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.premium-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.premium-content {
    display: flex;
    align-items: center;
    padding: 20px;
    position: relative;
}

.premium-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1f2937;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.premium-content img {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.premium-text h3 {
    color: white;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}

.premium-text p {
    color: #d1d5db;
    font-size: 16px;
    margin-bottom: 10px;
}

.premium-price {
    color: #fbbf24;
    font-size: 18px;
    font-weight: 600;
}

/* Horizontal Sponsor Banner */
.horizontal-sponsor-banner {
    padding: 40px 0;
    background: #f9fafb;
}

.sponsor-banner-wrapper {
    max-width: 100%;
}

.sponsor-banner {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid #dc2626;
}

.sponsor-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sponsor-content {
    display: flex;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

.sponsor-logo img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.sponsor-text {
    flex: 1;
}

.sponsor-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.sponsor-text p {
    color: #6b7280;
    font-size: 14px;
    line-height: 1.4;
}

.sponsor-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.sponsor-label {
    background: #fef3c7;
    color: #92400e;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sponsor-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-btn:hover {
    transform: scale(1.05);
}

/* Double Sponsor Banners */
.double-sponsor-banners {
    padding: 40px 0;
}

.double-banners-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.sponsor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sponsor-image {
    position: relative;
    height: 150px;
    overflow: hidden;
}

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

.sponsor-card:hover .sponsor-image img {
    transform: scale(1.1);
}

.sponsor-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 15px;
}

.sponsor-badge {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.sponsor-info {
    padding: 20px;
}

.sponsor-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.sponsor-info p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sponsor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.sponsor-rating {
    color: #fbbf24;
    font-weight: 500;
}

.sponsor-category,
.sponsor-date {
    color: #7c3aed;
    font-weight: 500;
}

.sponsor-price {
    color: #dc2626;
    font-weight: 600;
}

/* Vertical Sponsor Section */
.vertical-sponsor-section {
    padding: 40px 0;
    background: #f9fafb;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
}

.sidebar-sponsor {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vertical-sponsor-banner {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.vertical-sponsor-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.vertical-sponsor-header {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    padding: 8px 15px;
    text-align: center;
}

.vertical-sponsor-header .sponsor-label {
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vertical-sponsor-image {
    height: 120px;
    overflow: hidden;
}

.vertical-sponsor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vertical-sponsor-content {
    padding: 20px;
}

.vertical-sponsor-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.vertical-sponsor-content p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.4;
}

.vertical-sponsor-features {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.vertical-sponsor-features span {
    font-size: 12px;
    color: #4b5563;
}

.vertical-sponsor-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Small Vertical Banner */
.vertical-sponsor-banner.small {
    padding: 15px;
}

.small-sponsor-content {
    display: flex;
    gap: 12px;
    align-items: center;
}

.small-sponsor-image {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
}

.small-sponsor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small-sponsor-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.small-sponsor-text p {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 4px;
}

.small-sponsor-price {
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
}

/* Newsletter Sponsor Section */
.newsletter-sponsor-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1f2937, #374151);
}

.newsletter-sponsor-banner {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.newsletter-text h3 {
    color: white;
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 8px;
}

.newsletter-text p {
    color: #d1d5db;
    font-size: 16px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    width: 300px;
    background: rgba(255, 255, 255, 0.9);
}

.newsletter-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.newsletter-sponsors {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.sponsor-text {
    color: #d1d5db;
    font-size: 14px;
}

.sponsor-logos {
    display: flex;
    gap: 15px;
}

.sponsor-logo-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.sponsor-logo-small:hover {
    opacity: 1;
}

/* Floating Sponsor Banner */
.floating-sponsor-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    max-width: 350px;
    transform: translateX(400px);
    transition: transform 0.5s ease;
}

.floating-sponsor-banner.show {
    transform: translateX(0);
}

.floating-content {
    position: relative;
    padding: 20px;
}

.floating-close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    transition: all 0.3s ease;
}

.floating-close:hover {
    background: #e5e7eb;
    color: #374151;
}

.floating-sponsor-info {
    display: flex;
    gap: 15px;
    align-items: center;
}

.floating-logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.floating-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.floating-text p {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 10px;
}

.floating-btn {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.05);
}

/* Responsive Design for Sponsors */
@media (max-width: 768px) {
    .premium-content {
        flex-direction: column;
        text-align: center;
    }
    
    .premium-content img {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .sponsor-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .double-banners-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .newsletter-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        width: 100%;
        max-width: 300px;
    }
    
    .floating-sponsor-banner {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(200px);
    }
    
    .floating-sponsor-banner.show {
        transform: translateY(0);
    }
    
    .floating-sponsor-info {
        flex-direction: column;
        text-align: center;
    }
}/*
 New Strategic Banner Styles */

/* Compact Sponsor Banner */
.compact-sponsor-section {
    padding: 20px 0;
}

.compact-sponsor-banner {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(220, 38, 38, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.compact-sponsor-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.15);
}

.compact-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.compact-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.compact-text {
    flex: 1;
}

.compact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.compact-text p {
    font-size: 14px;
    color: #6b7280;
}

.compact-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.compact-badge {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.compact-price {
    font-size: 16px;
    font-weight: 600;
    color: #dc2626;
}

/* Integrated Sponsor Section */
.integrated-sponsor-section {
    padding: 40px 0;
    background: #f9fafb;
}

.integrated-sponsor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.main-sponsor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.main-sponsor-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

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

.sponsor-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.sponsor-badge {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.main-sponsor-content {
    padding: 20px;
}

.main-sponsor-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.main-sponsor-content p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.sponsor-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.sponsor-time {
    color: #7c3aed;
    font-weight: 500;
}

.sponsor-rating {
    color: #fbbf24;
    font-weight: 500;
}

.side-sponsors {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-sponsor-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.mini-sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.mini-sponsor-card img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.mini-sponsor-info {
    padding: 12px;
}

.mini-sponsor-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.mini-sponsor-info span {
    font-size: 12px;
    color: #6b7280;
}

/* Subtle Sponsor Section */
.subtle-sponsor-section {
    padding: 30px 0;
}

.subtle-sponsor-banner {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.03), rgba(220, 38, 38, 0.03));
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subtle-sponsor-banner:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
}

.subtle-sponsor-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
}

.subtle-badge {
    background: linear-gradient(135deg, #7c3aed, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: inline-block;
}

.subtle-sponsor-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.subtle-sponsor-text p {
    color: #6b7280;
    font-size: 14px;
}

.subtle-btn {
    background: linear-gradient(135deg, #7c3aed, #dc2626);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subtle-btn:hover {
    transform: scale(1.05);
}

/* Sidebar Sponsor Section */
.sidebar-sponsor-section {
    padding: 40px 0;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 30px;
}

.sidebar-sponsors {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-sponsor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-sponsor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.sidebar-sponsor-header {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    padding: 8px 12px;
    text-align: center;
}

.sidebar-badge {
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.sidebar-sponsor-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.sidebar-sponsor-content {
    padding: 15px;
}

.sidebar-sponsor-content h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 6px;
}

.sidebar-sponsor-content p {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.sidebar-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    border: none;
    padding: 8px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.sidebar-sponsor-card.small {
    padding: 12px;
}

.sidebar-mini-content {
    display: flex;
    gap: 10px;
    align-items: center;
}

.sidebar-mini-content img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}

.sidebar-mini-text h6 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.sidebar-mini-text span {
    font-size: 12px;
    color: #6b7280;
}

/* Responsive Design for New Banners */
@media (max-width: 768px) {
    .compact-content {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .compact-image img {
        width: 50px;
        height: 50px;
    }
    
    .integrated-sponsor-grid {
        grid-template-columns: 1fr;
    }
    
    .side-sponsors {
        flex-direction: row;
        gap: 10px;
    }
    
    .mini-sponsor-card {
        flex: 1;
    }
    
    .subtle-sponsor-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .content-with-sidebar {
        grid-template-columns: 1fr;
    }
    
    .sidebar-sponsors {
        flex-direction: row;
        gap: 15px;
    }
    
    .sidebar-sponsor-card {
        flex: 1;
    }
}/
* Debug styles for carousel */
.carousel-slide {
    /* Force visibility for debugging */
    visibility: visible !important;
}

.carousel-slide.active {
    /* Ensure active slide is fully visible */
    opacity: 1 !important;
    z-index: 2;
}

.carousel-slide:not(.active) {
    /* Ensure inactive slides are hidden */
    opacity: 0 !important;
    z-index: 1;
}

/* Ensure carousel container has proper stacking context */
.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Ensure banner carousel is properly positioned */
.banner-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: #000; /* Temporary background to see if container is visible */
}
/* Compact
 Sponsor Banner */
.compact-sponsor-section {
    padding: 20px 0;
    background: rgba(248, 250, 252, 0.5);
}

.compact-sponsor-banner {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.compact-sponsor-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: rgba(220, 38, 38, 0.2);
}

.compact-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 15px;
}

.compact-image {
    flex-shrink: 0;
}

.compact-image img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

.compact-text {
    flex: 1;
}

.compact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 4px;
}

.compact-text p {
    font-size: 14px;
    color: #6b7280;
    margin: 0;
}

.compact-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.compact-badge {
    background: linear-gradient(135deg, #dc2626, #7c3aed);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.compact-price {
    font-size: 16px;
    font-weight: 700;
    color: #dc2626;
}

/* Integrated Sponsor Section */
.integrated-sponsor-section {
    padding: 40px 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.02), rgba(124, 58, 237, 0.02));
}

.integrated-sponsor-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: start;
}

.main-sponsor-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.main-sponsor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.main-sponsor-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.sponsor-overlay {
    position: absolute;
    top: 15px;
    left: 15px;
}

.sponsor-badge {
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.main-sponsor-content {
    padding: 20px;
}

.main-sponsor-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
}

.main-sponsor-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 12px;
}

.sponsor-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.sponsor-time {
    color: #dc2626;
    font-weight: 500;
}

.sponsor-rating {
    color: #6b7280;
}

.side-sponsors {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mini-sponsor-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
}

.mini-sponsor-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mini-sponsor-card img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-sponsor-info h5 {
    font-size: 14px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 2px;
}

.mini-sponsor-info span {
    font-size: 12px;
    color: #6b7280;
}

/* Responsive adjustments for sponsor banners */
@media (max-width: 768px) {
    .integrated-sponsor-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .compact-content {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .compact-image img {
        width: 50px;
        height: 50px;
    }
    
    .compact-text h4 {
        font-size: 14px;
    }
    
    .compact-text p {
        font-size: 12px;
    }
    
    .compact-price {
        font-size: 14px;
    }
    
    .main-sponsor-image {
        height: 150px;
    }
    
    .main-sponsor-content {
        padding: 15px;
    }
    
    .main-sponsor-content h3 {
        font-size: 18px;
    }
    
    .side-sponsors {
        flex-direction: row;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 5px;
    }
    
    .mini-sponsor-card {
        flex-shrink: 0;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .compact-sponsor-section {
        padding: 15px 0;
    }
    
    .integrated-sponsor-section {
        padding: 30px 0;
    }
    
    .compact-content {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .compact-cta {
        align-items: center;
        flex-direction: row;
        gap: 10px;
    }
    
    .side-sponsors {
        flex-direction: column;
    }
    
    .mini-sponsor-card {
        min-width: auto;
    }
}