body {
    font-family: 'Arial', sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero Section with Video Background */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6); /* Darken video for better text visibility */
}

.hero-text {
    text-align: center;
    color: #ffffff;
}
.hero-text h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    transition: opacity 1s ease-in-out;
    opacity: 1;
}

.hero-text h1.fade-out {
    opacity: 0;
}



/* Navigation */
.navbar {
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 0; /* Reduce padding to adjust for logo */
}

.navbar-logo {
    position: absolute;
    top: 0; /* Half the logo height to overlap the navbar */
    left: 15px;
    width: 200px; /* Adjust based on your logo size */
    z-index: 999; /* Ensure logo is above the navbar */
}

.navbar-toggler {
    position: absolute;
    right: 15px;     /* alinea a la derecha */
    top: 10px;       /* posición vertical */
    z-index: 1000;   /* sobre el logo */
}

.navbar-toggler-icon {
    width: 30px;
    height: 22px;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}

.navbar-toggler-icon .line,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: "";
    display: block;
    background-color: #ccc; /* gris claro */
    height: 3px;
    width: 100%;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: 0;
}

.navbar-toggler-icon .middle {
    top: 9px;
    position: absolute;
}

.navbar-toggler-icon::after {
    bottom: 0;
}

/* Animate to X when menu is open */
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 9px;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon .middle {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 9px;
}




@media (max-width: 768px) {
    .navbar-logo {
        width: 140px;  /* más pequeño para móviles */
        top: 0;        /* mantenemos el ajuste que hiciste */
    }
}

@media (max-width: 768px) {
    .navbar-collapse {
        margin-top: 60px; /* separa el menú de la hamburguesa/X */
    }

    .navbar-nav {
        flex-direction: column;
        align-items: flex-end;
        padding-right: 20px;
    }

    .navbar-nav .nav-item {
        margin: 10px 0;
    }

    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 10px;
        z-index: 1001; /* asegúrate que esté encima */
    }
}





.navbar-brand, .nav-link {
    color: #d4af37 !important; /* Gold color from logo */
    font-weight: bold;
}

.nav-link:hover {
    color: #ffffff !important;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    color: #d4af37;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}


  /*ABOUT SECTION */

.about-section {
    position: relative;
    background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0)),
            url('../images/nachos.jpg');
    background-size: cover;  /* <-- este es el cambio clave */
    background-repeat: no-repeat;
    background-position: center top;
    color: #ffffff;
    padding: 100px 30px;
    text-align: center;
    z-index: 1;
}


.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* overlay oscuro */
    z-index: -1;
}

.about-section .section-title {
    color: #d4af37;
    font-size: 2.8rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.about-section p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}




/*GALLERY*/

.gallery-section {
    padding: 80px 20px;
}

.gallery-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}

.nav-pills .nav-link {
    background-color: #1a1a1a;
    color: #d4af37;
    margin: 5px;
    border-radius: 8px;
    font-weight: bold;
}

.nav-pills .nav-link.active {
    background-color: #d4af37;
    color: #000 !important;  /* <- texto negro para contraste */
}

.navbar-phone {
    color: #FFF;
    font-weight: bold;
    font-size: 1rem;
    white-space: nowrap;
}


/*@media (max-width: 768px) {*/
/*    #gallery .tab-pane .col-6:nth-child(n+4) {*/
/*        display: none;*/
/*    }*/
/*}*/

@media (max-width: 768px) {
    .gallery-grid .col-6:nth-child(n+5) {
        display: none;
    }

    .gallery-grid.expanded .col-6 {
        display: block !important;
    }
}


/*Call Button*/

.call-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #d4af37;
    color: #1a1a1a;
    font-weight: bold;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #b9922e;
    color: #fff;
}



/*Modal Gallery*/

.modal-content {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 0;
    border: none;
    border-radius: 0;
    height: 100vh;
}

.modal-content img {
    max-height: 95vh;
    max-width: 95vw;
    object-fit: contain;
    margin: auto;
}


.modal-backdrop.show {
    opacity: 0.9;
}

.btn-close-white {
    filter: invert(1);
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1056;
}

/* Testimonials */

.testimonials-section {
    position: relative;
    background-image: url('../images/backgrounds/hand_review.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 100px 30px;
    z-index: 1;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7); /* oscurece para contraste */
    z-index: 0;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.6;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 25px 20px;
        font-size: 0.95rem;
    }
    .testimonials-section .row .col-md-6:nth-child(n+4) {
        display: none;
    }
    .testimonials-section .row.show-all .col-md-6 {
        display: block !important;
    }
}

/* Cola del "globo de diálogo" */
.testimonial-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 40px;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 20px solid #2a2a2a;
}

/* Nombre destacado */
.testimonial-card p:last-child {
    margin-top: 15px;
    font-weight: bold;
    color: #d4af37;
}


/* Contact Form */
.contact-section {
    background-color: #f8f9fa;
    padding: 100px 30px;
}

.contact-form .form-control {
    border-radius: 5px;
    margin-bottom: 15px;
}

.contact-form .btn {
    background-color: #d4af37;
    color: #1a1a1a;
    font-weight: bold;
    border: none;
}

.contact-form .btn:hover {
    background-color: #b9922e;
    color: #fff;
}

.restaurant-info-card {
    background-color: rgba(212, 175, 55, 0.08);
    border-left: 4px solid #d4af37;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.restaurant-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}


.restaurant-info-card h5 {
    color: #1a1a1a;
}

.restaurant-info-card p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.business-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.business-hours li {
    display: flex;
    justify-content: space-between;
    padding: 2px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.business-hours li:last-child {
    border-bottom: none;
}




.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-wrapper {
    width: 100%;
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-wrapper iframe {
    border-radius: 12px;
}



@media (max-width: 768px) {
    .contact-section .row {
        flex-direction: column;
    }

    .restaurant-info-card {
        margin-top: 30px;
    }
}



/* Footer */
footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-logo {
        width: 300px;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* Food Menu Section */

.menu-section {
    position: relative;
    background-image:
            linear-gradient(to bottom, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.90)),
            url('../images/tacos_background.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 100px 30px;
    color: #ffffff;
    z-index: 1;
}


.menu-category {
    margin-bottom: 50px;
}

.menu-category h3 {
    color: #d4af37;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #d4af37;
    display: inline-block;
    padding-bottom: 5px;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin-bottom: 25px;
}

.menu-list h5 {
    margin-bottom: 5px;
    font-weight: bold;
    color: #ffffff;
}

.menu-list p {
    margin: 0;
    color: #cccccc;
    font-size: 0.95rem;
}

.menu-poster {
    background-color: rgba(0, 0, 0, 0); /* negro translúcido */
    border: 3px solid #d4af37;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    backdrop-filter: blur(2px); /* opcional: efecto de vidrio */
}

.poster-toggle {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 0;
    cursor: pointer;
}

.menu-poster:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.poster-title {
    color: #d4af37;
    font-family: 'Georgia', serif;
    text-align: center;
    font-size: 1.8rem;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-list li {
    margin-bottom: 20px;
}

.menu-list h5 {
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 5px;
}

.menu-list p {
    color: #cccccc;
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 767.98px) {
    .poster-body {
        display: none;
        margin-top: 15px;
    }

    .poster-body.show {
        display: block;
    }

    .menu-poster {
        padding: 20px;
    }

    .poster-title {
        font-size: 1.4rem;
        border-bottom: none;
        padding-bottom: 0;
    }
}


/*CATERING SECTION*/

.catering-section {
    background-color: #fff;
    padding: 100px 30px;
}

.catering-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    background: #ffffff;
    border: 3px solid #d4af37;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    position: relative;
}

.catering-image {
    flex: 1 1 250px;
    max-width: 300px;
    overflow: hidden;
}

.catering-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.catering-content {
    flex: 2 1 500px;
    padding: 40px 30px;
    background-color: #fff;
    text-align: center;
}

.catering-content .section-title {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 20px;
}

.catering-content p {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.7;
}

.btn-outline-dark {
    border: 2px solid #d4af37;
    color: #d4af37;
}

.btn-outline-dark:hover {
    background-color: #d4af37;
    color: #fff;
}

@media (max-width: 768px) {
    .catering-card {
        flex-direction: column;
        text-align: center;
    }

    .catering-image {
        max-width: 100%;
    }
}

