/* Danda Jatra - Home Page Styles with Indian Hindu Design */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --saffron: #FF6B35;
    --orange: #F7931E;
    --red: #FF6B6B;
    --green: #4ECDC4;
    --cyan: #45B7D1;
    --primary-color: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary-color: #F7931E;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --bg-light: #fff5f0;
    --border-color: #ffe0d1;
    --shadow: 0 4px 6px -1px rgba(255, 107, 53, 0.2), 0 2px 4px -1px rgba(255, 107, 53, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(255, 107, 53, 0.3), 0 4px 6px -2px rgba(255, 107, 53, 0.2);
}

body {
    font-family: 'Poppins', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 60px;
    background: linear-gradient(180deg, #fff5f0 0%, #ffffff 100%);
    position: relative;
    overflow-x: hidden;
}

/* Hindu Decorative Background Elements */
.hindu-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.om-bg {
    position: absolute;
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 150px;
    color: rgba(255, 107, 53, 0.03);
    font-weight: 700;
    animation: rotateOm 30s linear infinite;
}

.om-bg-1 {
    top: 10%;
    left: 5%;
}

.om-bg-2 {
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.om-bg-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 20s;
}

@keyframes rotateOm {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.lotus-bg {
    position: absolute;
    font-size: 80px;
    opacity: 0.05;
    animation: bloomLotus 15s infinite ease-in-out;
}

.lotus-1 {
    top: 30%;
    right: 20%;
    animation-delay: 0s;
}

.lotus-2 {
    bottom: 30%;
    left: 25%;
    animation-delay: 7s;
}

@keyframes bloomLotus {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.05; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.08; }
}

.diya-bg {
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
    opacity: 0.1;
    animation: flickerDiya 3s infinite alternate;
}

.diya-1 {
    top: 25%;
    left: 10%;
}

.diya-2 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.diya-flame-small {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 12px;
    background: linear-gradient(180deg, #FFF9C4, var(--saffron));
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    animation: flameFlicker 2s infinite alternate;
}

@keyframes flickerDiya {
    0% { opacity: 0.1; transform: scale(1); }
    100% { opacity: 0.15; transform: scale(1.1); }
}

@keyframes flameFlicker {
    0% { transform: translateX(-50%) scale(1) rotate(-2deg); }
    100% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
}

/* Navigation - Hindu Design */
.hindu-navbar {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 240, 0.98) 100%) !important;
    backdrop-filter: blur(10px);
    padding: 0.75rem 0;
    border-bottom: 3px solid var(--saffron);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
}

.hindu-navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--saffron), var(--orange), var(--saffron), transparent);
    background-size: 200% 100%;
    animation: shimmerNav 3s infinite;
}

@keyframes shimmerNav {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.hindu-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
}

.om-nav {
    font-family: 'Noto Sans Devanagari', sans-serif;
    font-size: 1.75rem;
    color: var(--saffron);
    animation: pulseOm 3s infinite ease-in-out;
    display: inline-block;
}

@keyframes pulseOm {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.1); opacity: 1; }
}

.brand-text {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--orange));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--saffron) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--saffron) !important;
    font-weight: 600;
}

.nav-link.active::after {
    width: 100%;
}

/* Hero Section - Hindu Design */
.hero-section {
    margin-top: 0;
    position: relative;
    height: 450px;
    overflow: hidden;
    z-index: 1;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slide-default {
    background: linear-gradient(135deg, var(--saffron) 0%, var(--orange) 50%, var(--red) 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-overlay {
    display: none;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
    position: relative;
    display: inline-block;
}

.hero-title::before {
    content: 'ॐ';
    font-family: 'Noto Sans Devanagari', sans-serif;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.5;
    color: var(--saffron);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Swiper Navigation */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.hero-swiper .swiper-button-next:after,
.hero-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
}

.hero-swiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: white;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.8);
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.8;
}

/* Statistics Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(255, 245, 240, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    z-index: 1;
}

.stat-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 245, 240, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-box:hover::before {
    opacity: 1;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--saffron);
}

.stat-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-weight: 500;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

/* Categories Section */
.categories-section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--orange));
    border-radius: 2px;
}

.section-title::before {
    content: 'ॐ';
    font-family: 'Noto Sans Devanagari', sans-serif;
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--saffron);
    opacity: 0.5;
}

.category-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 240, 1) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--saffron), var(--orange), var(--red), var(--green));
    background-size: 200% 100%;
    animation: shimmerCard 3s infinite;
}

@keyframes shimmerCard {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    border-color: var(--saffron);
}

.category-card:hover::before {
    animation-duration: 1.5s;
}

.category-icon {
    font-size: 4rem;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(5deg);
}

.category-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--text-light);
    margin: 0;
}

/* Events Section */
.events-section {
    padding: 5rem 0;
}

/* Event List View */
.event-list-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.event-list-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 240, 1) 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    border: 2px solid var(--border-color);
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 200px;
}

.event-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--saffron), var(--orange), var(--red));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.event-list-item:hover::before {
    opacity: 1;
}

.event-list-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.25);
    border-color: var(--saffron);
}

.event-list-image {
    width: 250px;
    min-width: 250px;
    height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light), rgba(255, 245, 240, 0.5));
    position: relative;
    flex-shrink: 0;
}

.event-list-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-list-item:hover .event-list-image::before {
    opacity: 1;
}

.event-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
    min-height: 200px;
}

.event-list-item:hover .event-list-image img {
    transform: scale(1.1);
}

.event-list-image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--orange) 50%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    opacity: 0.7;
}

.event-list-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.event-list-header {
    flex: 1;
}

.event-list-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.event-list-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.event-list-meta {
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item-list {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.9rem;
    gap: 0.5rem;
}

.meta-item-list i {
    color: var(--saffron);
    font-size: 0.875rem;
    width: 18px;
    text-align: center;
}

.event-list-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.share-buttons .btn-outline-secondary {
    border-color: var(--border-color);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.share-buttons .btn-outline-secondary:hover {
    background: linear-gradient(135deg, var(--saffron), var(--orange));
    border-color: var(--saffron);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.share-buttons .dropdown-toggle-split {
    border-left: 1px solid var(--border-color);
}

.share-buttons .dropdown-menu {
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    border-radius: 10px;
    margin-top: 0.5rem;
}

.share-buttons .dropdown-item {
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.share-buttons .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 245, 240, 0.5));
    color: var(--saffron);
    padding-left: 1.5rem;
}

.share-buttons .dropdown-item i {
    width: 20px;
    text-align: center;
}

.share-buttons .dropdown-divider {
    margin: 0.5rem 0;
    border-color: var(--border-color);
}

/* Legacy Event Card Styles (for other sections if needed) */
.event-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 245, 240, 1) 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid var(--border-color);
    position: relative;
}

.event-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--orange), var(--red));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover::after {
    opacity: 1;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.3);
    border-color: var(--saffron);
}

.event-card[onclick] {
    cursor: pointer;
}

.event-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light), rgba(255, 245, 240, 0.5));
    position: relative;
}

.event-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), transparent);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.event-card:hover .event-image::before {
    opacity: 1;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 0;
}

.event-card:hover .event-image img {
    transform: scale(1.15);
}

.event-image-placeholder {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, var(--saffron) 0%, var(--orange) 50%, var(--red) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: white;
    opacity: 0.7;
}

.event-content {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-category {
    margin-bottom: 0.75rem;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.event-meta {
    margin-bottom: 0.75rem;
}

.meta-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.4rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.meta-item i {
    width: 20px;
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.event-description {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.event-footer {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: auto;
}

/* Footer */
.footer {
    padding: 3rem 0 1rem;
}

.footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        font-size: 8rem;
        margin-top: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .category-icon {
        font-size: 3rem;
    }
    
    .event-image,
    .event-image-placeholder {
        height: 120px;
    }
    
    .event-content {
        padding: 1rem;
    }
    
    .event-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .event-category,
    .event-meta {
        margin-bottom: 0.5rem;
    }
    
    .event-description {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .event-list-footer {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .share-buttons {
        width: auto;
    }
    
    .share-buttons .btn-sm {
        font-size: 0.75rem;
        padding: 0.375rem 0.5rem;
    }
    
    .meta-item {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }
    
    /* Event List View - Mobile */
    .event-list-item {
        flex-direction: column;
        min-height: auto;
    }
    
    .event-list-image {
        width: 100%;
        min-width: 100%;
        height: 200px;
    }
    
    .event-list-image img,
    .event-list-image-placeholder {
        min-height: 200px;
        height: 200px;
    }
    
    .event-list-content {
        padding: 1.25rem;
    }
    
    .event-list-title {
        font-size: 1.25rem;
    }
    
    .event-list-description {
        font-size: 0.875rem;
        -webkit-line-clamp: 3;
    }
    
    .meta-row {
        gap: 1rem;
    }
    
    .meta-item-list {
        font-size: 0.85rem;
    }
    
    /* Hide Statistics Section on mobile */
    .stats-section {
        display: none;
    }
    
    /* Hide Categories Section on mobile */
    .categories-section {
        display: none;
    }
    
    /* Hide Footer on mobile */
    .footer {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 250px;
    }
    
    .hero-slide {
        height: 250px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        display: none;
    }
    
    .events-section {
        padding: 1.5rem 0;
    }
    
    /* Event List View - Small Mobile */
    .event-list-image {
        height: 150px;
    }
    
    .event-list-image img,
    .event-list-image-placeholder {
        min-height: 150px;
        height: 150px;
    }
    
    .event-list-content {
        padding: 1rem;
    }
    
    .event-list-title {
        font-size: 1.1rem;
    }
    
    .event-list-description {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }
    
    .meta-row {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .meta-item-list {
        font-size: 0.8rem;
    }
    
    .event-image,
    .event-image-placeholder {
        height: 100px;
    }
    
    .event-content {
        padding: 0.875rem;
    }
    
    .event-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .event-category,
    .event-meta {
        margin-bottom: 0.4rem;
    }
    
    .event-description {
        font-size: 0.8rem;
        margin-bottom: 0.4rem;
    }
    
    .meta-item {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

/* Hindu Design - Buttons and Badges */
.btn-primary {
    background: linear-gradient(135deg, var(--saffron), var(--orange)) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 12px !important;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4) !important;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--orange), var(--saffron)) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6) !important;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: linear-gradient(135deg, #6b7280, #9ca3af) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #9ca3af, #6b7280) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(107, 114, 128, 0.4) !important;
}

.badge.bg-primary {
    background: linear-gradient(135deg, var(--saffron), var(--orange)) !important;
    border: none;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.badge.bg-secondary {
    background: linear-gradient(135deg, var(--text-light), #9ca3af) !important;
    border: none;
}

.badge.bg-success {
    background: linear-gradient(135deg, var(--green), #26a69a) !important;
    border: none;
}

.badge.bg-warning {
    background: linear-gradient(135deg, var(--orange), #ffa726) !important;
    border: none;
}

.badge.bg-info {
    background: linear-gradient(135deg, var(--cyan), #42a5f5) !important;
    border: none;
}

.badge.bg-danger {
    background: linear-gradient(135deg, var(--red), #e57373) !important;
    border: none;
}

.card {
    border-radius: 20px !important;
    border: 2px solid var(--border-color) !important;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1) !important;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    background: linear-gradient(135deg, rgba(255, 245, 240, 0.5), rgba(255, 255, 255, 1)) !important;
    border-bottom: 2px solid var(--border-color) !important;
}

.card-body {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(255, 245, 240, 0.3)) !important;
}

.form-select, .form-control {
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    transition: all 0.3s ease;
}

.form-select:focus, .form-control:focus {
    border-color: var(--saffron) !important;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1) !important;
}

.card-title {
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-title i {
    color: var(--saffron);
}
