/* Restaurante Delicias - Estilos específicos */

:root {
    /* Colores específicos del restaurante */
    --restaurant-primary: #8B4513;
    --restaurant-secondary: #DAA520;
    --restaurant-accent: #FF6347;
    --restaurant-dark: #2F1B14;
    --restaurant-cream: #FDF5E6;
    --restaurant-gold: #FFD700;

    /* Fuentes */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Header específico */
.header-restaurant {
    background: rgba(139, 69, 19, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: var(--z-fixed);
    transition: background 0.3s ease;
}

.header-restaurant .nav__logo {
    color: var(--restaurant-cream);
    font-family: var(--font-display);
    font-weight: 700;
}

.header-restaurant .nav__link {
    color: var(--restaurant-cream);
}

.header-restaurant .nav__link:hover,
.header-restaurant .active-link {
    color: var(--restaurant-gold);
}

/* Hero Restaurant */
.hero-restaurant {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-restaurant__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-restaurant__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-restaurant__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        rgba(139, 69, 19, 0.8) 0%,
        rgba(47, 27, 20, 0.6) 100%
    );
    z-index: -1;
}

.hero-restaurant__content {
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero-restaurant__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--mb-1);
    line-height: 1.2;
}

.hero-restaurant__title-accent {
    color: var(--restaurant-gold);
    display: block;
}

.hero-restaurant__description {
    font-size: 1.2rem;
    margin-bottom: var(--mb-2-5);
    line-height: 1.6;
    opacity: 0.9;
}

.hero-restaurant__buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: var(--mb-3);
    flex-wrap: wrap;
}

.hero-restaurant__info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--restaurant-cream);
}

.info-item i {
    color: var(--restaurant-gold);
    font-size: 1.2rem;
}

/* Menu Preview */
.menu-preview {
    background-color: var(--restaurant-cream);
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: var(--mb-3);
    flex-wrap: wrap;
}

.menu-category {
    background: transparent;
    border: 2px solid var(--restaurant-primary);
    color: var(--restaurant-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: var(--font-medium);
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-category.active,
.menu-category:hover {
    background: var(--restaurant-primary);
    color: white;
}

.menu__container {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.menu__item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.2);
}

.menu__image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.menu__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.menu__item:hover .menu__img {
    transform: scale(1.1);
}

.menu__content {
    padding: 1.5rem;
}

.menu__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--mb-0-75);
}

.menu__title {
    font-family: var(--font-display);
    font-size: var(--h3-font-size);
    color: var(--restaurant-dark);
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.menu__price {
    font-size: 1.25rem;
    font-weight: var(--font-bold);
    color: var(--restaurant-accent);
}

.menu__description {
    margin-bottom: var(--mb-1);
    line-height: 1.6;
    color: var(--text-color);
}

.menu__tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.menu__tag {
    background: var(--restaurant-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: var(--smaller-font-size);
    font-weight: var(--font-medium);
}

/* About Restaurant */
.about-restaurant__container {
    align-items: center;
    gap: 4rem;
}

.about-restaurant__title {
    font-family: var(--font-display);
    font-size: var(--h1-font-size);
    color: var(--restaurant-dark);
    margin-bottom: var(--mb-1-5);
}

.about-restaurant__description {
    margin-bottom: var(--mb-1-5);
    line-height: 1.8;
    color: var(--text-color);
}

.about-restaurant__features {
    display: grid;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--restaurant-primary), var(--restaurant-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature__content h4 {
    color: var(--restaurant-dark);
    margin-bottom: 0.5rem;
}

.about-restaurant__images {
    position: relative;
    display: grid;
    gap: 1rem;
}

.about-restaurant__image--main {
    grid-column: 1 / -1;
}

.about-restaurant__img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}

/* Events */
.events__container {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event__card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.event__card:hover {
    transform: translateY(-10px);
}

.event__card--featured {
    border: 3px solid var(--restaurant-gold);
    transform: scale(1.05);
}

.event__badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--restaurant-accent);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: var(--small-font-size);
    font-weight: var(--font-bold);
    transform: rotate(15deg);
}

.event__icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--restaurant-primary), var(--restaurant-secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto var(--mb-1-5);
}

.event__title {
    font-family: var(--font-display);
    color: var(--restaurant-dark);
    margin-bottom: var(--mb-1);
}

.event__description {
    margin-bottom: var(--mb-1-5);
    line-height: 1.6;
}

.event__features {
    list-style: none;
    margin-bottom: var(--mb-1-5);
    text-align: left;
}

.event__features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.event__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--restaurant-accent);
    font-weight: bold;
}

.event__price {
    font-size: 1.5rem;
    font-weight: var(--font-bold);
    color: var(--restaurant-accent);
}

/* Gallery */
.gallery__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery__item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
}

.gallery__item--large {
    grid-column: span 2;
}

.gallery__item--tall {
    grid-row: span 2;
}

.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
    color: white;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__overlay {
    transform: translateY(0);
}

.gallery__item:hover .gallery__img {
    transform: scale(1.1);
}

.gallery__overlay h4 {
    color: white;
    margin-bottom: 0.5rem;
}

/* Reservations */
.reservations__container {
    gap: 4rem;
    align-items: flex-start;
}

.reservations__title {
    font-family: var(--font-display);
    font-size: var(--h1-font-size);
    color: var(--restaurant-dark);
    margin-bottom: var(--mb-1);
}

.reservations__info {
    display: grid;
    gap: 1.5rem;
    margin-top: var(--mb-2);
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--restaurant-cream);
    border-radius: 10px;
}

.info-card i {
    width: 40px;
    height: 40px;
    background: var(--restaurant-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card h4 {
    color: var(--restaurant-dark);
    margin-bottom: 0.5rem;
}

.reservations__form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.1);
}

/* Contact Restaurant */
.contact-restaurant__title {
    font-family: var(--font-display);
    font-size: var(--h1-font-size);
    color: var(--restaurant-dark);
    margin-bottom: var(--mb-1);
}

.contact-restaurant__details {
    display: grid;
    gap: 1.5rem;
    margin-bottom: var(--mb-2);
}

.contact-restaurant__social {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--restaurant-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--restaurant-accent);
}

/* Footer Restaurant */
.footer-restaurant {
    background: var(--restaurant-dark);
    color: var(--restaurant-cream);
    padding-top: 3rem;
}

.footer-restaurant__container {
    gap: 2rem;
    margin-bottom: var(--mb-2);
}

.footer-restaurant__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: var(--h3-font-size);
    font-weight: 700;
    margin-bottom: var(--mb-1);
}

.footer-restaurant__logo i {
    color: var(--restaurant-gold);
}

.footer-restaurant__social {
    display: flex;
    gap: 1rem;
    margin-top: var(--mb-1);
}

.footer-restaurant__social-link {
    width: 40px;
    height: 40px;
    background: var(--restaurant-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.footer-restaurant__social-link:hover {
    background: var(--restaurant-gold);
}

.footer-restaurant__title {
    color: var(--restaurant-gold);
    margin-bottom: var(--mb-1);
}

.footer-restaurant__schedule,
.footer-restaurant__contact {
    list-style: none;
}

.footer-restaurant__schedule li,
.footer-restaurant__contact li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-restaurant__contact i {
    color: var(--restaurant-gold);
    width: 16px;
}

.footer-restaurant__newsletter {
    display: flex;
    margin-top: var(--mb-1);
}

.newsletter__input {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 25px 0 0 25px;
    outline: none;
}

.newsletter__button {
    background: var(--restaurant-accent);
    color: white;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter__button:hover {
    background: var(--restaurant-gold);
}

.footer-restaurant__copy {
    border-top: 1px solid rgba(218, 165, 32, 0.3);
    padding: 1rem 0;
    text-align: center;
    color: rgba(253, 245, 230, 0.7);
}

.footer-restaurant__copy a {
    color: var(--restaurant-gold);
    text-decoration: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .hero-restaurant__title {
        font-size: 2.5rem;
    }

    .hero-restaurant__info {
        flex-direction: column;
        gap: 1rem;
    }

    .menu__container {
        grid-template-columns: 1fr;
    }

    .about-restaurant__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .events__container {
        grid-template-columns: 1fr;
    }

    .gallery__item--large,
    .gallery__item--tall {
        grid-column: span 1;
        grid-row: span 1;
    }

    .reservations__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-restaurant__container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-restaurant__buttons {
        flex-direction: column;
        align-items: center;
    }

    .menu-categories {
        flex-direction: column;
        align-items: center;
    }

    .hero-restaurant__title {
        font-size: 2rem;
    }
}