/* ============================
   RESET & BASE
============================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background: #f7f7f7;
    color: #333;
}

img {
    width: 100%;
    border-radius: 10px;
}

/* ============================
   HEADER / NAV
============================ */
header {
    background: #111;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-weight: 700;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: #ddd;
    text-decoration: none;
    font-size: 16px;
    transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffae00;
}

/* ============================
   BANNER
============================ */
.banner {
    background: url("https://images.unsplash.com/photo-1551782450-17144df9b0ec?auto=format&w=1400") center/cover no-repeat;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-texto h1 {
    color: white;
    font-size: 46px;
    text-shadow: 2px 2px 10px black;
}

.banner-texto p {
    color: #eee;
    font-size: 18px;
    margin: 15px 0;
}

.btn {
    background: #ffae00;
    padding: 12px 25px;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: #e09a00;
}

/* ============================
   DESTAQUES
============================ */
.destaques {
    text-align: center;
    padding: 50px 20px;
}

.destaques h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.card-container {
    max-width: 1150px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    margin-top: 10px;
    font-size: 20px;
}

/* ============================
   SOBRE NÓS
============================ */
.sobre {
    max-width: 1100px;
    padding: 60px 20px;
    margin: auto;
    text-align: center;
}

.sobre p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.sobre-img {
    margin-top: 25px;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0,0,0,0.2);
}

/* ============================
   FORMULÁRIOS (Contacto & Reservas)
============================ */
.formulario {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border: 1px solid #bbb;
    border-radius: 8px;
    font-size: 16px;
}

textarea {
    height: 130px;
}

.formulario .btn {
    background: #111;
    color: #fff;
}

.formulario .btn:hover {
    background: #222;
}

/* ============================
   CONTACTO / RESERVAS TITULOS
============================ */
.contacto h1,
.reservas h1 {
    text-align: center;
    margin: 45px 0 25px;
    font-size: 30px;
}

/* ============================
   FOOTER
============================ */
footer {
    background: #111;
    color: #bbb;
    padding: 20px;
    margin-top: 60px;
    text-align: center;
}

/* ============================
   RESPONSIVO
============================ */
@media (max-width: 768px) {

    nav ul {
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 60px;
        right: 0;
        width: 180px;
        padding: 20px;
        display: none;
    }
}
