body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}
.hero {
    background-image: url('../images/hero.jpg');
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-shadow: 2px 2px 4px #000;
    position: relative;
    overflow: hidden;
}
.hero-text h1 {
    font-size: 3em;
}
.about, .gallery, .contact {
    padding: 50px;
    background: #f4f4f4;
}
.gallery-container {
    display: flex;
    gap: 10px;
}
.gallery-container img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}
form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
form input, form textarea {
    padding: 10px;
    width: 100%;
    max-width: 500px;
}
form button {
    width: 150px;
    padding: 10px;
    background: #333;
    color: white;
    border: none;
    cursor: pointer;
}
