@import url('https://fonts.googleapis.com/css2?family=Nexa:wght@400;700&display=swap');

:root {
    --primary-color: #feae03;
    --secondary-color: #200c25;
    --background-color: #f8f8f8;
    --text-color: #333;
    --font-family: 'Nexa', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--background-color);
    color: var(--text-color);
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: var(--secondary-color);
    color: white;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.tagline {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
    margin-top: 4px;
    line-height: 1.5em; /* Ajuste para calcular altura de líneas */
    max-height: 4.5em; /* 3 líneas de altura */
    overflow: hidden;
    white-space: normal;
    display: block;
}

@media (max-width: 500px), 
       (max-height: 4.6em) { /* Ocultar si supera 3 líneas */
    .tagline {
        display: none;
    }
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    background: var(--primary-color);
    color: white;
}

.hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-button:hover {
    background: black;
}

/* Featured Section */
.featured {
    text-align: center;
    padding: 50px 20px;
}

.featured h2 {
    font-size: 30px;
    margin-bottom: 30px;
}

.food-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.food-item {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.food-item img {
    width: 100%;
    border-radius: 10px;
}

.food-item p {
    margin-top: 10px;
    font-weight: bold;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: var(--secondary-color);
    color: white;
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background-color: #f8f9fa;
    color: #333;
}

.container {
    max-width: 600px;
    padding: 20px;
    border-radius: 8px;
    background: white;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.error-page h1 {
    font-size: 3rem;
    color: #feae03;
}

.error-page p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: #feae03;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn:hover {
    /* background: #e65c00; */
    background: #200c25;
}


.contacto {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.contact-info {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #feae03;
    margin-top: 10px;
}

.contact-info p, .contact-info ul {
    font-size: 1.2rem;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    margin: 10px 0;
}

.contact-info ul li a {
    color: #7b7979;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
}

/* .contact-info ul li a:hover {
    text-decoration: underline;
} */
