/* Estilos Generales V2.1 - MODO LOCAL */
:root {
    --color-principal: #D35400; 
    --color-secundario: #FAD7A0;
    --color-texto: #2C3E50;
    --color-fondo-gris: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    color: var(--color-texto);
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-weight: 700;
    color: #1a1a1a;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 10px;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

.bg-gray {
    background-color: var(--color-fondo-gris);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--color-principal);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--color-texto);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-principal);
}

.btn-reserva {
    background: var(--color-principal);
    color: white !important;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(211, 84, 0, 0.3);
}

/* AQUÍ ESTÁ EL CAMBIO DEL FONDO LOCAL 👇 */
header {
    height: 85vh;
    /* Busca fondo.jpg dentro de la carpeta imagenes */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('imagenes/fondo.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.btn-primary {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 35px;
    background: var(--color-principal);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: transform 0.3s, background 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: #b54800;
}

.split-section {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.split-text {
    flex: 1;
    padding: 80px 5%;
}

.split-text h4 {
    color: var(--color-principal);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.split-text h2 {
    text-align: left;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.split-image {
    flex: 1;
    height: 100%;
    min-height: 60vh;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* IMPORTANTE: Esto hace que la imagen se vea bien aunque sea de otro tamaño */
    display: block; 
}

.container {
    padding: 80px 5%;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    text-align: center;
}

.card h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.precio {
    display: inline-block;
    margin-top: 15px;
    color: var(--color-principal);
    font-weight: 800;
    font-size: 1.3rem;
    background: var(--color-secundario);
    padding: 5px 15px;
    border-radius: 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stars {
    color: #F1C40F; 
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

footer {
    background: #1a1a1a;
    color: #bbb;
    padding: 60px 5% 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

footer h3 {
    color: white;
    margin-bottom: 20px;
}

.phone-number {
    color: var(--color-principal);
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-text h1 { font-size: 2.8rem; }
    nav ul { display: none; }
    
    .split-section {
        flex-direction: column;
    }
    .split-image {
        min-height: 300px;
        width: 100%;
    }
    .split-text h2 { font-size: 2rem; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}