/* ================================
   GLOBAL RESET
===================================*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #f5f5f5;
    color: #222;
    line-height: 1.6;
}

/* ================================
   HEADER
===================================*/
header {
    width: 100%;
    background: #111;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 17px;
    transition: .3s;
}

header nav ul li a:hover {
    color: #c8a04f;
}

/* ================================
   HERO / BANNER
===================================*/
.hero {
    width: 100%;
    height: 75vh;
    background-image: url('../images/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero-content {
    text-align: center;
    color: #fff;
    background: rgba(0,0,0,.5);
    padding: 40px 60px;
    border-radius: 8px;
}

.hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero .hero-content p {
    font-size: 20px;
    margin-bottom: 25px;
}

.hero .hero-content a {
    background: #c8a04f;
    padding: 12px 32px;
    border-radius: 5px;
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: .3s;
}

.hero .hero-content a:hover {
    background: #b2893d;
}

/* ================================
   SEÇÃO DE QUARTOS
===================================*/
.quartos-section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #111;
}

.quartos-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.quarto-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    transition: .3s;
}

.quarto-card:hover {
    transform: translateY(-5px);
}

.quarto-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.quarto-info {
    padding: 20px;
}

.quarto-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.quarto-info p {
    font-size: 15px;
    margin-bottom: 15px;
    color: #444;
}

.quarto-info .price {
    font-size: 18px;
    font-weight: bold;
    color: #c8a04f;
    margin-bottom: 20px;
}

.btn-reservar {
    display: block;
    text-align: center;
    background: #c8a04f;
    color: #111;
    padding: 10px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-reservar:hover {
    background: #b2893d;
}

/* ================================
   SOBRE
===================================*/
.sobre-section {
    width: 90%;
    margin: auto;
    padding: 60px 0;
}

.sobre-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.sobre-content img {
    width: 500px;
    border-radius: 10px;
}

.sobre-texto {
    flex: 1;
}

.sobre-texto h2 {
    font-size: 34px;
    margin-bottom: 20px;
}

.sobre-texto p {
    font-size: 17px;
    color: #444;
}

/* ================================
   FORMULÁRIO RESERVAS
===================================*/
.form-container {
    width: 90%;
    max-width: 700px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,.1);
}

.form-container h2 {
    text-align: center;
    margin-bottom: 25px;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

form input, form select, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border-radius: 6px;
    border: 1px solid #aaa;
    font-size: 16px;
}

form button {
    width: 100%;
    background: #c8a04f;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

form button:hover {
    background: #b2893d;
}

/* ================================
   CONTATO
===================================*/
.contato-section {
    width: 90%;
    margin: auto;
    padding: 60px 0;
}

.contato-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.contato-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contato-info {
    flex: 1;
    min-width: 300px;
}

.contato-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

/* ================================
   FOOTER
===================================*/
footer {
    width: 100%;
    background: #111;
    padding: 25px 0;
    text-align: center;
    color: #fff;
    margin-top: 40px;
}

footer p {
    font-size: 15px;
    letter-spacing: .5px;
}

/* ================================
   RESPONSIVIDADE
===================================*/
@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 36px;
    }

    .sobre-content {
        flex-direction: column;
        text-align: center;
    }

    .sobre-content img {
        width: 100%;
    }
}
