/* Paleta de colores inspirada en el logotipo y frescura del mar */
:root {
    --primary-color: #e65c00; /* Naranja corporativo */
    --secondary-color: #20b2aa; /* Verde marino / palmera */
    --dark-color: #2c3e50;
    --light-color: #f9f9f9;
    --accent-color: #f39c12; /* Amarillo brillante */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--light-color);
    color: var(--dark-color);
    line-height: 1.6;
}

/* Encabezado fijo */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a {
    text-decoration: none;
    color: var(--dark-color);
    margin-left: 20px;
    font-weight: 600;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Sección Hero (Inicio) */
.hero {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(240,248,255,0.85));
    padding: 160px 20px 80px 20px;
    text-align: center;
    border-bottom: 5px solid var(--primary-color);
}

.main-logo {
    max-width: 220px;
    margin-bottom: 20px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.promo-text {
    max-width: 780px;
    margin: 0 auto 30px auto;
    font-size: 1.15rem;
    color: #34495e;
    text-align: justify;
}

/* Botones de Acción Principal */
.btn {
    display: inline-block;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    margin: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: white;
}

/* Secciones de Contenido */
.menu-section, .reviews-section, .contact-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Cuadrícula Dinámica del Menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.menu-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.menu-img-container {
    width: 100%;
    height: 230px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-img {
    transform: scale(1.04);
}

.item-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.item-info h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.item-info p {
    color: #555;
    font-size: 0.95rem;
}

/* ---------------------------------------------------
   NUEVA SECCIÓN: Menú Completo (Imágenes adjuntas)
   --------------------------------------------------- */
.full-menu-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

.menu-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 40px;
    justify-items: center;
}

.full-menu-img {
    width: 100%;
    max-width: 450px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.full-menu-img:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Tarjetas de Testimonios */
.reviews-section {
    background-color: #fff;
    max-width: 100%;
}

.reviews-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.review-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: 8px;
    width: 350px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid var(--accent-color);
}

.stars {
    margin-bottom: 10px;
}

.author {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Bloque de Contacto y Datos Locales */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.contact-info h3, .contact-actions h3 {
    margin-bottom: 20px;
    color: var(--dark-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 5px;
    display: inline-block;
}

address {
    font-style: normal;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
}

.hours-list {
    list-style: none;
    margin-bottom: 25px;
}

.hours-list li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #ddd;
}

.hours-list li.closed {
    color: #c0392b;
    font-weight: bold;
}

.social-buttons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: opacity 0.3s;
}

.fb { background-color: #3b5998; }
.ig { background-color: #e1306c; }

.social-icon:hover {
    opacity: 0.85;
}

/* Accesos rápidos de interacción móvil */
.action-btn {
    display: block;
    text-align: center;
    padding: 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: opacity 0.3s;
}

.action-btn:hover {
    opacity: 0.9;
}

.map-btn { background-color: #4285F4; }
.call-btn { background-color: var(--secondary-color); }

/* Pie de Página e Identidad del Diseñador */
footer {
    background-color: var(--dark-color);
    color: #b3c1cd;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9rem;
    border-top: 4px solid var(--primary-color);
}

.footer-content p {
    margin-bottom: 8px;
}

.designer-credits {
    font-weight: bold;
    color: #ffffff;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

/* Adaptación para pantallas móviles */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    nav a {
        margin: 0 10px;
    }
    .hero {
        padding-top: 140px;
    }
    .hero h1 {
        font-size: 1.9rem;
    }
    .promo-text {
        font-size: 1.05rem;
        text-align: justify;
    }
    .designer-credits {
        font-size: 0.85rem;
    }
}
