@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;1,200;1,300;1,400&display=swap');

/*Globales*/
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: #000;
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

section {
    padding: 2.9rem 0;
    overflow: hidden;
}

img {
    width: 100%;
    max-width: 100%;
}

a {
    text-decoration: none;
}

p {
    font-size: 1.6rem;
}

.container {
    width: 100%;
    max-width: 122.5rem;
    margin:  0 auto;
    padding: 0 2.4rem;
}


header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}


header.shrink {
    padding: 0.5rem 0;
    background-image: linear-gradient(to bottom, #3a2a2a, #5b3b3b, #7a4a4a);
}

.nav {
    height: 6.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: height 0.3s ease;
}

header.shrink .nav {
    height: 4.5rem;
}

.menu-toggle {
    color: #ffffff;
    font-size: 2.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 2.5rem;
    cursor: pointer;
    z-index: 1500;
}

.fa-times {
    display: none;
}

.nav-list {
    list-style: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    height: 100vh;
    background-color: #000000;
    padding: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 1250;
    transform: translateX(-100%);
}

.nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    opacity: 0;
    transform: scale(0);
    transition: opacity .5s;
}

.open .fa-times {
    display: block;
}

.open .fa-bars {
    display: none;
}

.open .nav-list {
    transform: translateX(0);
}
.open .nav::before {
    opacity: 1;
    transform: scale(1);
}

.logo {
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
}

header.shrink .logo {
    font-size: 1.6rem;
}

.nav-item {
    border-bottom: 2px solid rgba(255, 255, 255, .3);
}

.nav-link {
    position: relative;
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color 0.3s ease;
}


.nav-link:hover {
    color: #3bcc75;
}

.nav-link:hover {
    color: #3bcc75;
}

/*Hero*/
.hero {
    width: 100%;
    height: 70vh;
    background: url("../imagenes/cafe2.jpg") center no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}


.h2-sub {
    font-size: 3rem;
    font-family: 'Poppins', sans-serif;
    color: #3bcc75;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.fil {
    text-transform: uppercase;
    font-size: 3rem;
}

.head {
    color: #fff;
    font-size: 3.7rem;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: .5rem;
}

.circle {
    font-size: 1.5rem;
    color: #3bcc75;
    margin: 0 1.6rem;
}

.he-des h5 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 100;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    letter-spacing: 4px;
    margin-right: -3px;
}

.btn {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: -2px;
}

.cta-btn {
    font-size: 1.1rem;
    background-color: #ffc845;
    padding: 1.5rem 3rem;
    color: #fff;
    border-radius: .4rem;
}

.cta-btn:hover,
.cta-btn:focus {
    color: #fff;
    background-color: #3bcc75;
}

.global {
    margin-left: 15px;
    margin-top: 3.9rem;
}

.dis-sto .global {
    margin-top: 6.9rem;
}

.global .circle {
    color: #3bcc75;
    margin: 2.4rem 0;
}

.hea-dark {
    color: #070707;
    margin-right: -4.9rem;
}

.global .h2-sub {
    letter-spacing: -1px;
    line-height: -0.42;
}

.res-info {
    text-align: center;
}

.res-des {
    margin-bottom: 3rem;
}

.res-des p {
    line-height: 1.6;
    margin-bottom: 2.4rem;
}

/*menu*/
.taste {
    background: url("../imagenes/carta1.jpg") center no-repeat;
    background-size: cover;
}

.bt {
    min-height: 65vh;
    display: flex;
    align-items: center;
}

/*platillos*/
.image-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}

.disco .res-des {
    padding-top: 3rem;
    margin-bottom: 0;
}

.pb {
    width: 100%;
    height: 800px;
    background: url("../imagenes/Ambiente.jpg") center no-repeat;
    background-size: cover;
}

/*footer*/
.footer {
  background-color: #3a1f1f;
  color: white;
  padding: 20rem 10rem;
  font-size: 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer h3 {
  color: #3bcc75;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 1rem;
}

.footer a {
  color: white;
  margin-right: 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.footer a:hover {
  color: #3bcc75;
}



footer {
    padding: rem 0;
    background-color: #422525;
    color: #fff;
    text-align: center;
    position: relative;
}

.social-icons {
    list-style: none;
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-icons i {
    font-size: 2.6rem;
    color: #ffffff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons i:hover,
.social-icons i:focus {
    color: #3bcc75;
    transform: scale(1.2);
}


.news-form {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
}

.news-input {
    width: 100%;
    max-width: 25rem;
    padding: 1rem;
    border-radius: .4rem;
}

.news-btn {
    background: transparent;
    border: none;
    color: #000000;
    cursor: pointer;
    font-size: 1.6rem;
    padding: 1px .6rem;
    position: absolute;
    top: 30%;
    margin-left: 20.5rem;
}

@media screen and (min-width: 900px) {
    section {
        padding: 7.9rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav {
        justify-content: space-between;
    }

    .nav-list {
        position: initial;
        width: initial;
        height: initial;
        background-color: transparent;
        padding: 0;
        justify-content: initial;
        flex-direction: row;
        transform: initial;
        transition: initial;
    }

    .nav-item {
        margin: 0 2.4rem;
    }

    .nav-item:last-child {
        margin-right: 0;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .h2-sub {
        font-size: 3rem;
    }

    .fil {
        font-size: 3rem;
    }

    .head {
        font-size: 4.7rem;
        letter-spacing: .8rem;
    }

    .res-info {
        display: flex;
        align-items: center;
    }

    .res-info > div {
        flex: 1;
    }

    .pad-rig {
        padding-right: 7rem;
    }

    .footer-content {
        max-width: 77.5rem;
        margin: auto;
    }

    .footer-content-about {
        max-width: 51.3rem;
        margin:  0 auto 5.4rem;
    }

    .footer-div {
        display: flex;
        justify-content: space-between;
    }

    .social-media,
    .news-form {
        width: 100%;
        max-width: 27.3rem;
        margin: 0 1rem;
    }

    .news-btn {
        margin-left: 7.5rem;
    }
}
.nav-link {
    position: relative;
    display: block;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.6rem;
    letter-spacing: 2px;
    margin-right: -2px;
    transition: color 0.3s ease;
}



.nav-link:hover {
    color: #3bcc75;
}

/* 🔥 BLOQUE FINAL PARA ELIMINAR LÍNEA DEBAJO DE LOS ENLACES */

.nav-link::after,
.nav-link.active::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* Enlace normal */
.nav-link {
  color: #fff;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

/* Enlace cuando está activo por scroll */


/* Enlace al pasar el mouse */
.nav-link:hover {
  color: #3bcc75;
  text-decoration: none !important;
}

/* Centrar la imagen de reservas solo en móviles */
.img-reserva {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}



@media screen and (max-width: 768px) {
.res-info {
    text-align: center;
}

.image-group {
    display: flex;
    justify-content: center;
}
}

.footer-image {
  text-align: center;
  margin-top: 2rem;
}





