  
        /* General Reset & Background */
        body {
            background-color: #0a0a0a;
            /* Dark background mimic */
            background-image: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1514525253361-bee24383c87f?auto=format&fit=crop&w=1920');
            background-attachment: fixed;
            background-size: cover;
            color: #ffffff;
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            margin: 0;
            padding: 0; /* Changed padding to 0 for the banner */
        }

        /* Top Banner Style */
        .top-banner {
            background-color: rgba(0, 0, 0, 0.95);
            width: 100%;
            padding: 20px 0;
           /* border-bottom: 2px solid #c41e1e; /* Red accent border */
            text-align: center;
            margin-bottom: 30px;
        }

        .banner-title {
            font-family: 'UnifrakturMaguntia', serif; /* Applied Old English Font */
            font-size: 4.5rem;
            color: white; 
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Added depth */
        }

        .container {
            max-width: 1100px;
            margin: 0 auto;
            display: flex;
            gap: 40px;
            background-color: rgba(0, 0, 0, 0.8); /* Dark overlay container */
            padding: 30px;
            border-radius: 4px;
            margin-bottom: 50px;
        }

        /* Titles */
        .upcoming-title {
            font-size: 1.8rem;
            text-align: center;
            margin-bottom: 30px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: #fff;
        }

        h3 {
            margin-top: 10px;
            margin-bottom:20px;
            font-size: 1.4rem;
           /* text-align:center; */
            color: #fff;
        }
        
        

        /* Main Content Area */
        .main-content {
            flex: 2;
        }

        /* Event Cards */
        .event-card {
            background-color: #111;
            display: flex;
            margin-bottom: 25px;
            border: 1px solid #222;
            padding: 15px;
            transition: border 0.3s ease;
        }

        .event-card:hover {
            border-color: #444;
        }

        .event-image img {
            width: 200px;
            height: auto;
            display: block;
            border: 1px solid #333;
        }

        .event-details {
            padding-left: 20px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            width: 100%;
        }

        .date {
            color: #e62b1e; /* Bright red from the image */
            font-weight: bold;
            font-size: 1.2rem;
            margin: 10px 0;
           
        }

        /* Buttons Section */
        .buttons {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            border-top: 1px solid #333;
            padding-top: 15px;
            margin-top: 10px;
        }

        .btn {
            text-decoration: none;
            padding: 10px 20px;
            font-size: 0.75rem;
            font-weight: bold;
            text-transform: uppercase;
            border-radius: 2px;
            transition: opacity 0.2s;
        }

        .btn:hover {
            opacity: 0.8;
        }

        .btn-outline {
            border: 1px solid #fff;
            color: #fff;
        }

        .btn-solid {
            background-color: #c41e1e;
            color: #fff;
            border: 1px solid #c41e1e;
        }

        /* Sidebar Section */
        .sidebar {
            flex: 1;
            min-width: 280px;
           
        }

        .sidebar h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

       
        
.promo-box {
    display: block;
    width: 300px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #000; /* Provides the 'darken' contrast */
    padding:30px;
}

.promo-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Transition goes on the element that changes */
    transition: opacity 0.3s ease; 
    
}

/* Trigger on container hover for a better user experience */
.promo-box:hover img {
    opacity: 0.7;
    background-color:olivedrab;
    
}
        .year{
          color:white;
          font-size:3.0rem;
          font-weight:bold;
          text-align:center;
margin-bottom:30px;
        }

    
        /* Mobile View */
        @media (max-width: 850px) {
            .top-banner {
                padding: 15px 10px;
            }
            .banner-title {
                font-size: 2.2rem;
            }
            .container {
                flex-direction: column;
                padding: 15px;
                width: 90%;
            }
            .event-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .event-details {
                padding-left: 0;
                padding-top: 15px;
            }
            .buttons {
                justify-content: center;
            }
            .sidebar {
                width: 100%;
                margin-top: 30px;
            }
        }
        
        /* Gallery Section */
.gallery {
    padding: 60px 20px;
    text-align: center;
}

.gallery-title {
    font-family: 'UnifrakturMaguntia', cursive;
    font-size: 3rem;
    color: #fff;
    margin-bottom: 40px;
}

/* Grid Layout */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    max-width: 1000px;
    margin: auto;
}

/* Images */
.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    text-align: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80%;
    margin-top: 40px;
    border-radius: 10px;
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 40px;
    color: white;
    cursor: pointer;
}

    .located{
    color: olivedrab;
    margin-bottom: 25px;
    font-size: 1.2rem;
        }
   