/* Reseteo básico y tipografía */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', Arial, sans-serif; /* Texto normal */
}

body {
    background-color: #fcfbf8;
    color: #333;
    overflow-x: hidden;
}

/* Tipografías para títulos */
h1, h2, h3 {
    font-family: 'DM Serif Display', Georgia, serif; /* Títulos elegantes */
    font-weight: normal;
}

/* Contenedor centralizado para secciones */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navegación Superior */
header {
    display: grid;
    grid-template-columns: 1fr auto auto 1fr;
    align-items: center;
    padding: 20px 5%;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.header-left {
    justify-self: start;
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.logo {
    font-size: 26px;
    font-weight: bold;
    justify-self: center;
}

.header-center-nav {
    display: flex;
    gap: 20px;
    justify-self: center;
}

.header-center-nav a {
    text-decoration: none;
    color: #555;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-center-nav a:hover {
    color: #000;
}

.header-right {
    justify-self: end;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background-color: #695A4B; /* Tono marrón oscuro */
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px; /* Offset for header */
    color: white;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 100px;
    margin-bottom: 20px;
}

.hero-image-actual {
    max-width: 600px;
    height: auto;
    border-radius: 50%; /* Foto en círculo */
    border: 10px solid white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.badges {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 14px;
    letter-spacing: 1px;
}

/* Signature Dishes */
.signature-dishes {
    background-color: #695A4B;
    color: white;
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    opacity: 0.8;
}

.dish-grid {
    display: flex;
    gap: 30px;
}

.dish-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px);
}

.dish-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 15px;
}

.dish-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.dish-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

/* Chef Section */
.chef-section {
    padding: 100px 0;
    background-color: #fdfcf8;
}

.chef-section .section-container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.chef-image {
    flex: 1;
    position: relative;
}

.chef-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.chef-quote {
    position: absolute;
    bottom: -30px;
    left: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 5px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    font-style: italic;
    color: #666;
}

.chef-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}

.chef-content h2 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.btn-outline {
    align-self: flex-start;
    padding: 12px 25px;
    background: transparent;
    border: 1px solid #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 50px;
    transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
    background: #333;
    color: white;
}

.stats {
    display: flex;
    gap: 30px;
}

.stat-box {
    background: #fff;
    border: 1px solid #eaeaea;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    width: 180px;
}

.stat-box h3 {
    font-size: 36px;
    color: #695A4B;
    margin-bottom: 5px;
}

.stat-box p {
    font-size: 13px;
    color: #888;
}