body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* NAVBAR */
nav {
    background: #2c2c2c;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav h2 {
    margin: 0;
}

/* LINKS */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
}

/* MOBILE */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 60px;
        right: 0;
        background: #2c2c2c;
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 20px;
    }

    nav ul.active {
        display: flex;
    }
}

/* HERO */
.hero {
    background: url('https://images.unsplash.com/photo-1504052434569-70ad5836ab65') center/cover;
    color: white;
    height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* SECTIONS */
section {
    padding: 40px 20px;
    text-align: center;
}

/* GALLERY */
.gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.gallery img {
    width: 300px;
    border-radius: 10px;
}

/* FORM */
form {
    max-width: 400px;
    margin: auto;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
}

/* FOOTER */
footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 20px;
}