/* Tipografía base y fondo */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: url('../img/fondo.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Navegación */
nav {
    background: rgba(0,0,0,0.7);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
}

nav .logo {
    height: 50px;
}

nav a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

nav a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}

/* Secciones */
.section {
    padding: 100px 20px;
    text-align: center;
}

.section h1,
.section h2,
.section h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    margin-bottom: 20px;
}

.section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Menú */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.menu-card {
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 0 10px #ffcc00;
}

.menu-card:hover {
    transform: scale(1.05);
}

.menu-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 10px;
}

.menu-card h3 {
    margin: 10px 0 5px;
    font-family: 'Bebas Neue', cursive;
    font-size: 1.5rem;
    color: #ffcc00;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
}

.menu-card p,
.menu-card span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Contacto */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    justify-content: center;
}

.contact-info {
    max-width: 400px;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    border-radius: 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.contact-map iframe {
    width: 100%;
    min-width: 300px;
    height: 300px;
    border-radius: 15px;
}

/* SwiperJS Slider */
.swiper {
    width: 100%;
    max-width: 600px;
    height: 350px;
    margin: 40px auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu-card .extra-info {
    display: none;
    margin-top: 15px;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-card.expanded {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 0 20px #ffcc00;
}

.menu-card.expanded .extra-info {
    display: block;
}

.menu-card .extra-info img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10px;
    border: 2px solid #ffcc00;
}

.menu-card .precio {
    font-weight: bold;
    color: #ffcc00;
    font-size: 1.2rem;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-buttons {
    text-align: center;
    margin-bottom: 30px;
}

.menu-buttons button {
    background: #ffcc00;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.menu-buttons button:hover {
    background: #ff9900;
    transform: scale(1.05);
}

.menu-category {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-category.active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}