/* 63rd BGU Page Styles */

/* Base Styles */
body {
    background: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #B22222;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #B22222, #FFD700);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../images/ganesha-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(179, 67, 67, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1.5s ease-out;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(156, 152, 88, 0.5);
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-dates {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-venue {
    padding: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Daily Rituals Section */
.daily-rituals {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.ritual-main-container {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.ritual-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #B22222;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.ritual-images-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.ritual-image-item {
    text-align: center;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ritual-image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(178, 34, 34, 0.15);
}

.ritual-image-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.2);
    transition: transform 0.3s ease;
}

.ritual-image-item:hover img {
    transform: scale(1.05);
}

.ritual-image-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #B22222;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.ritual-image-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

.ritual-timings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.timing-card {
    display: flex;
    align-items: center;
    padding: 2rem;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timing-card.morning {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #B22222;
}

.timing-card.evening {
    background: linear-gradient(135deg, #B22222, #8B0000);
    color: white;
}

.timing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.timing-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.5rem;
}

.timing-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timing-time {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Divine Performances Section */
.divine-performances {
    padding: 5rem 0;
    background: white;
}

.performances-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.performance-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.performance-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(178, 34, 34, 0.2);
}

.performance-image {
    height: 250px;
    overflow: hidden;
}

.performance-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.performance-card:hover .performance-image img {
    transform: scale(1.1);
}

.performance-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #B22222;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.performance-card p {
    color: #666;
    margin: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.performance-time {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: white;
    padding: 0.75rem 1.5rem;
    margin: 0 1.5rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
}

/* Artists Timeline Section */
.artists-timeline {
    padding: 5rem 0;
    background: white;
}

@media (max-width: 968px) {
    .artists-timeline {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .artists-timeline {
        padding: 2rem 0;
    }
}

/* Venue Selection Buttons */
.venue-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.venue-btn {
    font-family: 'Playfair Display', serif;
    background: linear-gradient(135deg, #B22222, #8B0000);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.venue-btn:hover {
    background: linear-gradient(135deg, #8B0000, #B22222);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.3);
}

.venue-btn.active {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #B22222;
}

.timeline-container {
    margin-top: 3rem;
    position: relative;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #B22222, #FFD700);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-date {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(178, 34, 34, 0.3);
}

.timeline-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 45%;
    margin-top: 3rem;
    transition: transform 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: 0;
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: 100;
    margin-left: auto;
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.artist-photo {
    width: 200px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 4px solid #FFD700;
}

.artist-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #B22222;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Artist Info Styles */
.artist-info {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
    border-left: 4px solid #B22222;
}

.featuring {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #B22222;
    margin-bottom: 0.5rem;
}

.timing {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
    background: linear-gradient(135deg, #B22222, #8B0000);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    display: inline-block;
}

/* Special Highlights Section */
.special-highlights {
    padding: 5rem 0;
    background: white;
}

.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.highlight-card {
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(178, 34, 34, 0.1), rgba(255, 215, 0, 0.1));
    z-index: -1;
}

.left-highlight {
    background: linear-gradient(rgba(178, 34, 34, 0.9), rgba(139, 0, 0, 0.9)), url('../images/63rdbgu/women-bhajan.JPG');
    background-size: cover;
    background-position: center;
    color: white;
}

.right-highlight {
    background: linear-gradient(rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9)), url('../images/63rdbgu/24hr-darshan.jpg');
    background-size: cover;
    background-position: center;
    color: #B22222;
}

.highlight-card:hover {
    transform: translateY(-10px);
}

.highlight-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.highlight-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.highlight-date {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
}

/* Sacred Poojas Section */
.sacred-poojas {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.poojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pooja-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pooja-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #B22222, #FFD700);
}

.pooja-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(178, 34, 34, 0.15);
}

.pooja-image {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.2);
}

.pooja-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pooja-card:hover .pooja-image img {
    transform: scale(1.05);
}

.pooja-date {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.pooja-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #B22222;
    margin-bottom: 1rem;
    font-weight: 600;
}

.pooja-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.pooja-time {
    background: #f8f9fa;
    color: #B22222;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    display: inline-block;
    border: 2px solid #B22222;
}

/* Pallaki Utsava Section */
.pallaki-header {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.pallaki-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}

.pallaki-timing-header {
    display: flex;
    justify-content: center;
}

.pallaki-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.pallaki-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(178, 34, 34, 0.2);
    transition: transform 0.3s ease;
}

.pallaki-images img:hover {
    transform: scale(1.05);
}

.pallaki-image-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.timing-card.pallaki {
    background: linear-gradient(90deg, #B22222, #9e1d19);
    color: white;
    max-width: 300px;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-date {
        left: 30px;
        transform: translateX(-50%);
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 70vh;
        background-attachment: scroll; /* Better mobile performance */
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    .hero-dates {
        font-size: clamp(1rem, 4vw, 1.2rem);
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .ritual-main-container {
        padding: 2rem;
    }
    
    .ritual-main-title {
        font-size: 2rem;
    }
    
    .ritual-images-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ritual-image-item {
        padding: 1rem;
    }
    
    .ritual-image-item img {
        height: 180px;
    }
    
    .ritual-timings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .timing-card {
        padding: 1.5rem;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .performances-grid,
    .poojas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .performance-card,
    .pooja-card {
        padding: 2rem;
    }
    
    .pooja-image {
        height: 180px;
    }
    
    .highlight-card {
        padding: 2rem;
    }
    
    .highlight-number {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .pallaki-header {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pallaki-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pallaki-images img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .ritual-main-container {
        padding: 1.5rem;
    }
    
    .ritual-main-title {
        font-size: 1.8rem;
    }
    
    .ritual-image-item img {
        height: 150px;
    }
    
    .timing-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .timing-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
        margin-left: 60px !important;
    }
    
    .timeline-date {
        left: 20px;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    .artist-photo {
        width: 60px;
        height: 60px;
    }
    
    .pallaki-images img {
        height: 150px;
    }
    
    .timing-card {
        padding: 1.5rem;
    }
    
    .ritual-image-item img {
        height: 150px;
    }
    
    .pooja-image {
        height: 150px;
    }
    
    .timing-card {
        padding: 1.5rem;
    }
}

/* Grand Procession Section Styles */
.grand-procession {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.procession-content {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.procession-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #B22222, #8B0000);
    border-radius: 20px;
    color: white;
}

.procession-date,
.procession-time {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.date-icon,
.time-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #FFD700;
}

.date-details h3,
.time-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #FFD700;
}

.date-details p,
.time-details p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.procession-description {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    border-radius: 20px;
    color: #B22222;
}

.procession-description h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.procession-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.procession-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    border: 2px solid #B22222;
}

.procession-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #B22222;
    margin-bottom: 1rem;
    font-weight: 700;
}

.procession-cta p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* Mobile Responsive Styles for Procession Section */
@media (max-width: 768px) {
    .procession-content {
        padding: 2rem 1rem;
    }

    .procession-header {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .procession-date,
    .procession-time {
        flex-direction: column;
        gap: 0.5rem;
    }

    .date-icon,
    .time-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .date-details h3,
    .time-details h3 {
        font-size: 1.3rem;
    }

    .procession-description {
        padding: 1.5rem;
    }

    .procession-description h3 {
        font-size: 1.5rem;
    }

    .procession-description p {
        font-size: 1rem;
    }

    .procession-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlight-item {
        padding: 1rem;
    }

    .highlight-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .procession-schedule h3 {
        font-size: 1.5rem;
    }

    .schedule-timeline {
        padding-left: 1rem;
    }

    .schedule-item {
        padding-left: 1.5rem;
    }

    .schedule-time {
        font-size: 1.1rem;
    }

    .procession-cta {
        padding: 1.5rem;
    }

    .procession-cta h3 {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .procession-content {
        padding: 1.5rem 1rem;
    }

    .procession-header {
        padding: 1.5rem;
    }

    .date-icon,
    .time-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .date-details h3,
    .time-details h3 {
        font-size: 1.2rem;
    }

    .procession-description h3 {
        font-size: 1.3rem;
    }

    .procession-description p {
        font-size: 0.95rem;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .highlight-icon {
        align-self: center;
    }

    .schedule-timeline {
        padding-left: 0.5rem;
    }

    .schedule-item {
        padding-left: 1rem;
    }

    .schedule-item::before {
        left: -0.25rem;
        width: 12px;
        height: 12px;
    }

    .procession-cta h3 {
        font-size: 1.3rem;
    }

    .procession-cta p {
        font-size: 0.95rem;
    }
}

/* Mobile Responsive Styles for Venue Buttons */
@media (max-width: 768px) {
    .venue-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .venue-btn {
        min-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .venue-buttons {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .venue-btn {
        min-width: 260px;
        padding: 0.9rem 1.2rem;
        font-size: 0.9rem;
    }
} 

/* Carousel Styles */
.carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}
.carousel-arrow {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    z-index: 2;
}
.carousel-arrow:hover {
    background: #f0f0f0;
}
.carousel-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
    min-width: 420px;
}
.carousel-image {
    width: 640px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    margin-bottom: 20px;
    transition: width 0.2s, height 0.2s;
}
@media (max-width: 900px) {
    .carousel-slide {
        max-width: 100vw;
    }
    .carousel-image {
        width: 96vw;
        max-width: 420px;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 220px;
        max-height: 70vw;
    }
}
@media (max-width: 700px) {
    .carousel-container {
        flex-direction: column;
        gap: 12px;
    }
    .carousel-slide {
        max-width: 100vw;
    }
    .carousel-image {
        width: 98vw;
        max-width: 98vw;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 160px;
        max-height: 70vw;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
} 

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 8px;
}
.carousel-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: inline-block;
}
.carousel-dot.active {
    background: #b8860b;
    box-shadow: 0 2px 8px rgba(184,134,11,0.18);
}
@media (max-width: 700px) {
    .carousel-dots {
        gap: 8px;
        margin-top: 10px;
    }
    .carousel-dot {
        width: 10px;
        height: 10px;
    }
} 

.procession-route-image img {
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(178,34,34,0.13), 0 1.5px 8px rgba(0,0,0,0.08);
    border: 3px solid #b8860b;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.procession-route-image img:hover {
    transform: scale(1.025) rotate(-1deg);
    box-shadow: 0 12px 40px rgba(178,34,34,0.18), 0 2px 12px rgba(0,0,0,0.10);
    border-color: #1a237e;
}
.procession-route-image div {
    margin-top: 0.75rem;
    color: #B22222;
    font-size: 1.08rem;
    font-family: 'Poppins', sans-serif;
    background: #fffbe7;
    border-radius: 8px;
    display: inline-block;
    padding: 7px 18px;
    box-shadow: 0 1px 6px rgba(184,134,11,0.08);
    font-weight: 500;
} 

.slideshow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin: 32px 0;
}
.carousel-image {
    width: 640px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    margin-bottom: 20px;
    transition: width 0.2s, height 0.2s;
}
@media (max-width: 900px) {
    .carousel-slide {
        max-width: 100vw;
    }
    .carousel-image {
        width: 96vw;
        max-width: 420px;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 220px;
        max-height: 70vw;
    }
}
@media (max-width: 700px) {
    .carousel-container {
        flex-direction: column;
        gap: 12px;
    }
    .carousel-slide {
        max-width: 100vw;
    }
    .carousel-image {
        width: 98vw;
        max-width: 98vw;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 160px;
        max-height: 70vw;
    }
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
} 

.slideshow-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    background: #fffbe7;
    color: #b8860b;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(184,134,11,0.13);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.92;
}
.slideshow-arrow.left {
    left: 8px;
}
.slideshow-arrow.right {
    right: 8px;
}
@media (max-width: 768px) {
    .slideshow-arrow.left {
        left: 4px;
    }
    .slideshow-arrow.right {
        right: 4px;
    }
}
@media (max-width: 480px) {
    .slideshow-arrow.left {
        left: 2px;
    }
    .slideshow-arrow.right {
        right: 2px;
    }
}
.slideshow-arrow:hover {
    background: #b8860b;
    color: #fffbe7;
    box-shadow: 0 4px 16px rgba(184,134,11,0.18);
    opacity: 1;
}
@media (max-width: 900px) {
    .slideshow-arrow {
        width: 36px;
        height: 36px;
        font-size: 1.4rem;
    }
}
@media (max-width: 700px) {
    .slideshow-arrow {
        width: 28px;
        height: 28px;
        font-size: 1.1rem;
    }
} 

.slideshow-scroll-container {
    width: 100%;
    overflow: hidden;
    margin: 2rem 0 1.5rem 0;
    min-height: 480px;
    position: relative;
    padding: 0 1rem;
}
.slideshow-scroll-track {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    transition: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
}
@media (max-width: 768px) {
    .slideshow-scroll-container {
        padding: 0 0.5rem;
        min-height: 340px;
    }
    .slideshow-scroll-track {
        gap: 1rem;
    }
}
@media (max-width: 480px) {
    .slideshow-scroll-container {
        padding: 0 0.25rem;
        min-height: 300px;
        max-width: 100vw;
        overflow: hidden;
    }
    .slideshow-scroll-track {
        gap: 0.75rem;
        padding: 0.25rem 0;
    }
}
.slideshow-scroll-track::-webkit-scrollbar {
    display: none;
}
.slideshow-scroll-image {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(184,134,11,0.13), 0 1.5px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fffbe7;
    flex-shrink: 0;
}
.slideshow-scroll-image:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(184,134,11,0.18), 0 2px 12px rgba(0,0,0,0.13);
}
@media (max-width: 900px) {
    .slideshow-scroll-image {
        width: 350px;
        height: 260px;
    }
}
@media (max-width: 700px) {
    .slideshow-scroll-image {
        width: 300px;
        height: 225px;
    }
}
@media (max-width: 480px) {
    .slideshow-scroll-image {
        width: 250px;
        height: 188px;
    }
} 

.slideshow-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 8px;
}
.slideshow-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    display: inline-block;
}
.slideshow-dot.active {
    background: #b8860b;
    box-shadow: 0 2px 8px rgba(184,134,11,0.18);
}
@media (max-width: 700px) {
    .slideshow-dots {
        gap: 8px;
        margin-top: 10px;
    }
    .slideshow-dot {
        width: 10px;
        height: 10px;
    }
} 

/* Modal styles */
.slideshow-modal {
    display: flex;
    position: fixed;
    z-index: 1002;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    animation: fadeIn 0.2s;
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.slideshow-modal-content {
    max-width: 92vw;
    max-height: 82vh;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(184,134,11,0.18), 0 2px 12px rgba(0,0,0,0.13);
    background: #fff;
    object-fit: contain;
}
.slideshow-modal-close {
    position: absolute;
    top: 2.5vw;
    right: 3vw;
    color: #fffbe7;
    font-size: 2.7rem;
    font-weight: 700;
    cursor: pointer;
    z-index: 1003;
    text-shadow: 0 2px 8px #000;
    transition: color 0.2s;
}
.slideshow-modal-close:hover {
    color: #b8860b;
}
@media (max-width: 900px) {
    .slideshow-image {
        width: 96vw;
        max-width: 420px;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 220px;
        max-height: 70vw;
    }
    .slideshow-modal-content {
        max-width: 98vw;
        max-height: 70vh;
    }
}
@media (max-width: 700px) {
    .slideshow-image {
        width: 98vw;
        max-width: 98vw;
        min-height: 120px;
        max-height: 60vw;
    }
    .slideshow-modal-content {
        max-width: 99vw;
        max-height: 60vh;
    }
} 