/* General Styles */
body {
    font-family: 'Helvetica', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Responsive Header Menu */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    nav ul li {
        margin: 0.5rem 0;
    }
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background-color: #fff;
}

.hero img {
    max-width: 100%;
    height: auto;
}

.gallery .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 2rem;
}

.gallery .grid img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 8px;
}

/* Responsive Design for Gallery */
@media (max-width: 768px) {
    .gallery .grid {
        flex-direction: column;
        align-items: center;
    }
    .gallery .grid img {
        max-width: 90%;
    }
}

.gallery .slideshow {
    margin: 2rem;
    text-align: center;
}

.gallery .slideshow img {
    width: 100%;
    height: auto;
    max-width: 100%;
}

/* About Section */
.about {
    text-align: center;
    padding: 2rem;
    background-color: #fff;
}

.about img {
    margin-bottom: 1rem;
}

/* Responsive Image Style for About Section */
@media (max-width: 768px) {
    .about img {
        border-radius: 50%;
        width: 200px;
        height: 200px;
    }
}

.about p {
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact {
    padding: 2rem;
    background-color: #fff;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.contact form label {
    font-weight: bold;
}

.contact form input,
.contact form textarea {
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact form button {
    padding: 0.5rem;
    border: none;
    background-color: #333;
    color: #fff;
    cursor: pointer;
}

/* Animations */
.fade-in {
    animation: fadeIn 2s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

.zoom-in {
    animation: zoomIn 1s ease-in-out;
}

/* Keyframes */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
