/* estilos.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #1f1f1f;
    color: #ffffff;
    line-height: 1.6;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #141414;
    border-bottom: 2px solid #e63946;
    position: relative;
    z-index: 1000;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #e63946;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #e63946;
    margin: 3px 0;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 1.5rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #e63946;
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
    background-image: url('/img/hero.jpg');
    background-size: cover;
    background-position: center 10%;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero h1,
.hero p,
.hero .btn {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background-color: #e63946;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #d62828;
}

.menu {
    padding: 4rem 2rem;
    text-align: center;
}

.menu h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #e63946;
}

.pizzas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pizza-card {
    background-color: #2c2c2c;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pizza-card img {
    width: 100%;
    border-radius: 1rem;
    margin-bottom: 1rem;
}

.pizza-card h3 {
    margin-bottom: 0.5rem;
    color: #e63946;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.footer {
    text-align: center;
    padding: 2rem;
    background-color: #141414;
    font-size: 0.9rem;
}

.info {
    background-color: #141414;
}

.info h2 {
    font-size: 2.5rem;
    color: #e63946;
}

.info-box {
    background-color: #2c2c2c;
    border-radius: 0.5rem;
    height: 100%;
}

.info-box h3 {
    color: #e63946;
    font-size: 1.5rem;
}

.horario-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #3a3a3a;
}

.horario-item:last-child {
    border-bottom: none;
}

.horario-item .dia {
    color: #ffffff;
    font-weight: 500;
}

.horario-item .hora {
    color: #e63946;
    font-weight: 600;
}

.info-box .table {
    color: #ffffff;
    margin-bottom: 0;
}

.info-box p {
    color: #cccccc;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #141414;
        flex-direction: column;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-bottom: 2px solid #e63946;
    }

    .nav.active {
        max-height: 300px;
        padding: 1rem 0;
    }

    .nav a {
        margin: 0;
        padding: 0.75rem 2rem;
        text-align: center;
        display: block;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .btn {
        padding: 0.5rem 1.5rem;
    }
}

.menu-section {
    padding: 60px 20px;
    background-color: #fff8f0;
    text-align: center;
}

.menu-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #e63946;
    font-family: 'Poppins', sans-serif;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-item {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s;
}

.menu-item:hover {
    transform: translateY(-5px);
}

.menu-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.menu-item h3 {
    margin: 15px 0 10px;
    color: #e63946;
    font-size: 1.5rem;
}

.menu-item p {
    padding: 0 15px;
    font-size: 0.95rem;
    color: #555;
}

.price {
    display: inline-block;
    margin: 15px 0;
    padding: 8px 16px;
    background-color: #e63946;
    color: white;
    font-weight: bold;
    border-radius: 20px;
}