/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

/* Home Section */
.section-home {
    height: 100vh;
    background-image: url('banner.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.section-home h1 {
    font-size: 3em;
    margin: 0;
}

.section-home p {
    font-size: 1.2em;
    margin: 10px 0;
}

.section-home .btn {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
}

/* Gallery Section */
.section-gallery {
    padding: 50px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.section-gallery h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    width: 300px;
    margin: 10px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact Section */
.section-contact {
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.section-contact h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.section-contact form {
    display: inline-block;
    text-align: left;
    max-width: 500px;
    width: 100%;
}

.section-contact label {
    display: block;
    margin-bottom: 10px;
}

.section-contact input,
.section-contact textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.section-contact button {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
}

.social-media {
    margin-top: 20px;
}

.social-media a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
}