/* Estilos Gerais */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: url('hero.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.5rem;
}

.about, .reservar {
    padding: 20px;
    text-align: center;
}

.about h2, .reservar h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.gallery {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    flex-wrap: wrap;
}

.gallery img {
    width: 30%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.links-reserva {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.links-reserva a {
    margin: 10px 0;
    padding: 10px 20px;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    width: 200px;
    text-align: center;
}

footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    header .logo {
        margin-bottom: 10px;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }

    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .gallery img {
        width: 100%;
        margin-bottom: 10px;
    }

    .links-reserva a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .about h2, .reservar h2 {
        font-size: 1.5rem;
    }
}
/* Estilos para a página de contactos */
.contactos {
    padding: 20px;
    text-align: center;
}

.contactos h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contactos-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.formulario, .informacoes {
    flex: 1;
    min-width: 300px;
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulario label {
    font-weight: bold;
}

.formulario input, .formulario textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.formulario button {
    padding: 10px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
}

.formulario button:hover {
    background: #555;
}

.informacoes h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.informacoes p {
    margin: 10px 0;
}

.mapa {
    margin-top: 20px;
}

/* Responsividade para dispositivos móveis */
@media (max-width: 768px) {
    .contactos-container {
        flex-direction: column;
    }

    .formulario, .informacoes {
        width: 100%;
    }
}