:root {
    --primary-color: #f69714;
    --secondary-color: #2b695e;
    --white: #ffffff;
    --black: #000000;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

/* Navigation Bar */
.navbar {
    background-color: var(--white);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    color: var(--black);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
}

.logo {
    width: 250px;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.tagline {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 3rem;
    animation: fadeIn 1.5s ease-out;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    animation: slideUp 1.5s ease-out;
}

/* Menu Diario Section */
.menu-diario {
    background-color: var(--white);
    padding: 4rem 2rem;
}
h2{
    color: #2b695e !important;
}
.menu-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.menu-card img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* Estilos del modal */
.modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8); 
    justify-content: center;
    align-items: center;
}

/* Contenido del modal */
.modal-content {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 80%;
    overflow: auto;
}

/* Imagen dentro del modal */
.modal-image {
    max-width: 500px;
    height: auto;
    border-radius: 10px;
}

.close {
    position: fixed;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    background-color: var(--secondary-color);
    border-radius: 50%;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 3000;
}

.close:hover,
.close:focus {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
}


/* Ajustes


/* Por Encargo Section */
.por-encargo {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.por-encargo-content {
    max-width: 800px;
    margin: 0 auto;
}

.por-encargo h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    margin-top: 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Contact Section */
.contacto {
    background-color: var(--white);
    padding: 4rem 2rem;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: var(--white);
    padding: 2rem;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .modal-content {
        max-width: 80%;
        max-height: 70%;
    }

    .modal-image {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.6rem;
    }
    
    .tagline {
        font-size: 2.5rem;
    }
    
    .hero-image {
        height: 300px;
    }

    .modal-content {
        max-width: 95%;
        max-height: 75%;
    }

    .modal-image {
        max-width: 500px;
    }

    .close {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-content {
        padding: 15px;
        max-width: 95%;
        max-height: 85%;
    }

    .modal-image {
        max-width: 250px;
    }

    .close {
        top: 5px;
        right: 5px;
        font-size: 14px;
    }
}

