body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}
header {
    background-image: url('./Pictures/Lotus.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 20px;
    min-height: 200px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    opacity: 0;
    transform: translateY(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
header.visible {
    opacity: 1;
    transform: translateY(0);
}
.header-content {
    text-align: right;
    max-width: 50%;
    padding-right: 20px;
    background: rgba(0, 0, 0, 0.5);
    padding: 15px;
    border-radius: 8px;
}
header h1 {
    font-size: 2.5em;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 10px;
}
header p {
    font-size: 1.2em;
    margin: 0;
}
nav {
    background-color: #333;
    overflow: hidden;
}
nav a {
    float: left;
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-size: 1.1em;
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
nav a.visible {
    opacity: 1;
    transform: translateX(0);
}
nav a:hover {
    background-color: #ddd;
    color: black;
}
section {
    padding: 20px;
    margin: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
}
section h2 {
    font-size: 2em;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}
section h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
}
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}
footer.visible {
    opacity: 1;
}
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.gallery img {
    width: 200px;
    height: auto;
    margin: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.gallery img.visible {
    opacity: 1;
    transform: scale(1);
}
.event-list {
    list-style-type: none;
    padding: 0;
}
.event-list li {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.event-list li.visible {
    opacity: 1;
    transform: translateX(0);
}
.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}
.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}
.carousel-track img {
    width: 33.33%; /* Display 3 images at a time */
    height: auto;
    object-fit: cover;
    padding: 5px;
    box-sizing: border-box;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.carousel-track img.visible {
    opacity: 1;
    transform: scale(1);
}
.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
}
.carousel-button.prev {
    left: 10px;
}
.carousel-button.next {
    right: 10px;
}
.carousel-button:hover {
    background: rgba(0, 0, 0, 0.8);
}
/* Responsive design */
@media screen and (max-width: 600px) {
    nav a {
        float: none;
        width: 100%;
    }
    .gallery img {
        width: 150px;
    }
    header {
        min-height: 150px;
    }
    .header-content {
        max-width: 100%;
        padding: 10px;
        text-align: center;
    }
    header h1 {
        font-size: 2em;
    }
    header p {
        font-size: 1em;
    }
    section h2 {
        font-size: 1.8em;
    }
    section h3 {
        font-size: 1.3em;
    }
    .carousel {
        max-width: 100%;
    }
    .carousel-track img {
        width: 100%; /* Show one image at a time on mobile */
    }
}
.contactClass {
    margin-bottom: 6rem;
}
