main {
    text-align: center;
    background-color: #f4f4f4;
}

.hero h1 {
    font-size: 3rem;
    color: #333;
}

.hero p {
    font-size: 1.2rem;
    margin: 20px 0;
    color: #666;
}

.hero .btn {
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
}

.hero .btn:hover {
    background-color: #0056b3;
}

/* Banner Hero Section */
.banner-hero {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.banner-hero img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.banner-text {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    -webkit-text-stroke: 0.9px black;
}

.banner-btn {
    padding: 12px 30px;
    background-color: #8a0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.banner-btn:hover {
    background-color: #5e0000;
}

/* Banner Responsive */
@media (max-width: 1024px) {
    .banner-hero img {
        height: 400px;
    }

    .banner-text {
        font-size: 2rem;
    }

    .banner-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .banner-hero img {
        height: auto;
        object-fit: contain;
    }

    .banner-text {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .banner-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .banner-hero img {
        height: auto;
        object-fit: contain;
    }

    .banner-text {
        font-size: 1.2rem;
        margin-bottom: 10px;
        -webkit-text-stroke: 0.5px black;
    }

    .banner-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Slideshow */
.slideshow {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: #fff;
    z-index: 5;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slides img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    flex-shrink: 0;
}

.slideshow .prev, 
.slideshow .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    z-index: 1;
}

.slideshow .prev {
    left: 10px;
}

.slideshow .next {
    right: 10px;
}

/* Categories Section */
.categories {
    text-align: center;
    padding: 20px;
}

.categories h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.category-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 10px;
}

.category-list a {
    text-decoration: none;
    color: #333;
    text-align: center;
}

.category-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.category-list img:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .category-list {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery {
    padding: 20px;
    text-align: center;
}

.gallery h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

.view-more {
    margin-top: 20px;
}

.view-more .btn {
    padding: 10px 20px;
    background-color: #8a0000;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.view-more .btn:hover {
    background-color: #5e0000;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Adjust slideshow images for mobile view */
@media (max-width: 768px) {
    .slides img {
        height: auto;
        object-fit: contain;
    }
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    object-fit: cover;
}
.countdown-row {
  text-align: center;
  font-size: 30px;
  margin-top: 0px;
  background-color: black;
  color: rgb(255, 115, 0);
  font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
/* About Us Section */
.about-us {
    background-color: #ffffff;
    padding: 40px 20px;
    text-align: center;
}
.about-container {
    max-width: 1000px;
    margin: 0 auto;
}
.about-us h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.about-us p {
    color: #444;
    line-height: 1.6;
    margin: 10px 0;
    font-size: 1rem;
}