/* Reset Básico y Fuente */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f7f6; /* Fondo suave */
}

/* --- HERO SECTION (Encabezado principal) --- */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('apueblonativo_result.webp') no-repeat center center/cover;
    /* Reemplaza 'placeholder-image.jpg' con tu propia imagen de fondo */
    height: 100vh; /* Altura de la pantalla completa */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
    font-weight: 700;
    display: none;
}

.hero h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
    font-weight: 400;
}

.hero p {
    font-size: 1.1em;
    margin-bottom: 2em;
}

/* --- BOTÓN DE RESERVA --- */
.btn-reserva {
    display: inline-block;
    background-color: #b67428; /* Color primario azul */
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4); /* Sombra para resaltar */
}

.btn-reserva:hover {
    background-color: #b67428; /* Azul más oscuro al pasar el ratón */
    transform: translateY(-2px); /* Pequeño efecto de levantamiento */
}

/* --- SECCIÓN DE INFORMACIÓN --- */
.info-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-section h3 {
    font-size: 1.8em;
    color: #b67428;
    margin-bottom: 1em;
    text-align: center;
}

.info-section ul {
    list-style: none;
    padding: 0;
}

.info-section li {
    background: #e9ecef;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 4px;
    border-left: 5px solid #b67428;
}

/* contacto seccion */

.contact-section  {
   
    text-align: center; 
    max-width: 600px; 
    margin: 0 auto; 
    padding: 20px; 
}
.contact-section a {
   
    color: #b67428; 
    text-decoration: none; 
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
    margin-top: 40px;
}

/* --- RESPONSIVE DESIGN (Para móviles) --- */
@media (max-width: 768px) {
    .hero {
        height: 80vh; /* Ajuste para móviles */
    }
    
    .hero h1 {
        font-size: 2em;
    }

    .hero h2 {
        font-size: 1.2em;
    }
    
    .btn-reserva {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

