/* Reset y Estilos Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fdfaf6; /* Un blanco hueso muy sutil */
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #4A3B31; /* Marrón oscuro café */
}

h1 {
    font-size: 3.5em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 2.5em;
    margin-bottom: 0.8em;
    text-align: center;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
    color: #6F4E37; /* Marrón medio */
}

p {
    font-size: 1em;
    margin-bottom: 1em;
    color: #555;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; /* Clearfix */
}

.section-padding {
    padding: 60px 0;
}

.section-padding-small {
    padding: 30px 0;
}

.bg-light {
    background-color: #f4f0eb; /* Crema claro */
}

.bg-dark {
    background-color: #4A3B31; /* Marrón oscuro café */
}

.text-light h2, .text-light p, .text-light h3 {
    color: #fff;
}
.text-light a {
    color: #E0C097; /* Dorado pálido */
}

.text-center {
    text-align: center;
}

.img-responsive {
    width: 100%;
    height: auto;
    display: block;
}

.rounded {
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Header y Navegación */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 1em 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px; /* Ajusta según tu logo */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #4A3B31;
    font-weight: 700;
    padding-bottom: 5px;
    transition: color 0.3s ease, border-bottom-color 0.3s ease;
    border-bottom: 2px solid transparent;
}

nav ul li a:hover, nav ul li a.active {
    color: #B08968; /* Marrón claro/dorado */
    border-bottom-color: #B08968;
}

/* Hero Section */
#hero {
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

#hero::before { /* Overlay para mejorar legibilidad del texto */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative; /* Para que esté sobre el overlay */
    z-index: 1;
}

.hero-content h1 {
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}
.hero-content p {
    font-size: 1.3em;
    margin-bottom: 1.5em;
    color: #f0f0f0;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.btn-primary {
    background-color: #B08968; /* Marrón claro/dorado */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    border: none;
}

.btn-primary:hover {
    background-color: #8C6B51; /* Marrón más oscuro */
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1em;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Process Section */
#proceso .subtitle {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 2.5em;
    color: #666;
}

.process-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.process-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* Menu Section */
.menu-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.07);
}
.menu-item img {
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #332E2A; /* Marrón muy oscuro, casi negro */
    color: #ccc;
}
footer p {
    color: #ccc;
    margin-bottom: 0.3em;
}
footer a {
    color: #B08968;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}

/* Animaciones sutiles para imágenes al hacer hover */
.centered-content img:hover, .menu-item img:hover {
    transform: scale(1.03);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
}
.centered-content img {
     max-width: 80%; /* Para que no ocupe todo el ancho en grid */
     border-radius: 10px;
}


/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 2em;
    }

    header .container {
        flex-direction: column;
    }
    .logo {
        margin-bottom: 10px;
    }
    nav ul {
        padding-left: 0; /* Centrar en móvil */
    }
    nav ul li {
        margin: 0 10px;
    }

    #hero {
        height: auto;
        padding: 150px 0 80px 0; /* Ajustar padding para que no choque con header */
    }

    .grid-2, .grid-3 {
        grid-template-columns: 1fr; /* Apilar en móvil */
    }
    .centered-content img {
        max-width: 100%;
    }
}

/* Icono de WhatsApp */
.btn-primary img, .btn-large img {
    filter: brightness(0) invert(1); /* Para que el SVG sea blanco */
}