* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

header {
    background: url('images/background.JPG') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative; /* To position the overlay correctly */
}

.header-content {
    position: absolute; /* Position it over the header background */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.6); /* Semi-transparent white background */
    padding: 20px;
    border-radius: 0px;
    backdrop-filter: blur(10px); /* Apply blur effect */
    text-align: center;
    color: #004d00; /* Dark green font color */
}

.header-content h1 {
    font-size: 3rem;
    animation: fadeInDown 2s;
}

.header-content p {
    font-size: 1.5rem;
    animation: fadeInUp 2s;
}

nav {
    background: rgba(34, 139, 34, 0.8);
    padding: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #FFD700;
}

.about {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #228B22;
}

.about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.gallery {
    background: #f4f4f4;
    padding: 50px 20px;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #228B22;
}

.gallery-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.gallery-item .gallery-text {
    width: 50%;
    padding: 20px;
}

.gallery-item .gallery-text h3 {
    font-size: 1.8rem;
    color: #228B22;
    margin-bottom: 10px;
}

.gallery-item .gallery-text p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.gallery-item .gallery-image {
    width: 50%;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery-item .gallery-image img {
    width: 60%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    border-radius: 0px;
    border: 5px solid #004d00; /* Dark green border */
    display: block;
    margin: auto;
}

.gallery-item.reverse {
    flex-direction: row-reverse;
}

.contact {
    background: #fff;
    padding: 50px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #228B22;
}

.contact p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.contact-details p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social {
    margin-top: 20px;
}

.social a img {
    width: 30px;
    margin: 0 10px;
    transition: transform 0.3s;
}

.social a:hover img {
    transform: scale(1.2);
}

footer {
    background: #228B22;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-item {
        flex-direction: column;
    }

    .gallery-item .gallery-image,
    .gallery-item .gallery-text {
        width: 100%;
        padding: 10px;
    }

    .gallery-item .gallery-image img {
        width: 100%;
    }

    .gallery-item,
    .gallery-item.reverse {
        flex-direction: column;
    }
}

