* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Outfit", sans-serif;
  font-weight: 400;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

.body-index {
  overflow: hidden;
}

/*-------------------INDEX-------------------------*/
/*-------------------HEADER-------------------------*/
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  z-index: 3;
  border-bottom: 3px solid rgb(30, 30, 30);
  background-image: url("../img/web-bkgnd.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 45px;
}

.navlink {
  text-decoration: none;
  color: white;
  padding: 10px;
}

.navlink:hover {
  color: rgb(200, 159, 70);
}

.logo-img {
  width: 45px;
}

.logo-txt {
  font-size: large;
}

.nav-container {
  margin-right: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container a {
  color: white;
  font-size: large;
  padding-left: 15px;
  font-weight: 300;
  text-decoration: none;
}

.logo-container a:hover {
  color: rgb(128, 92, 14);
  font-weight: bold;
}

/*******************RESPONSIVE HEADER****************************/
@media (min-width: 320px) and (max-width: 768px) {
  header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 110px;
    z-index: 3;
    border-bottom: 3px solid rgb(30, 30, 30);
    background-image: url("../img/web-bkgnd.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
  }
  .navlink {
    font-size: 0.7rem;
    padding: 5px;
  }
  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    margin: 5px 0px;
  }
  .logo-container a {
    margin: 0px;
    padding: 3px;
  }
  .logo-container img {
    width: 35px;
    margin: 0;
    padding: 0;
  }
  .logo-txt {
    font-size: medium;
    margin: 0;
    padding: 0;
  }
}
/*-------------------MAIN-------------------------*/
main {
  height: auto;
  flex: 1;
  display: block;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  background-image: url("../img/web-bkgnd.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 40px;
}

.section-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(1, 84vh);
  width: 100%;
  height: 100%;
}

.img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-col img {
  height: 100%;
  width: auto;
}

.buttons-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.main-title {
  color: rgb(242, 242, 242);
  font-size: 30px;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: -2px 2px 2px 0px #917a15;
  margin-top: -100px;
  margin-bottom: 40px;
}

.buttons-col a {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border: 2px solid rgb(119, 83, 5);
  padding: 1rem 2rem;
  background-color: rgb(200, 159, 70);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 15px;
  width: 230px;
  height: 70px;
}

.buttons-col a:hover {
  background-color: rgb(200, 159, 70);
}

.buttons-col a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(147, 102, 6);
  z-index: -1;
  background-repeat: 10rem;
  transition: 0.3s ease all;
  transform: scale(0, 1);
  transform-origin: bottom left;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.buttons-col a:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}

/*******************RESPONSIVE MAIN****************************/
@media (min-width: 320px) and (max-width: 768px) {
  .body-index {
    overflow: scroll;
  }
  .section-container {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, 1fr);
    justify-content: center;
    align-items: center;
  }
  .buttons-col {
    margin-top: 15px;
    grid-row: 1;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
  }
  .main-title {
    margin-top: 20px;
  }
  .img-col {
    grid-row: 2;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .image-col img {
    width: 100%;
    height: auto;
    padding: 0;
    padding-left: 50px;
    margin: 0;
  }
}
/*-------------------FOOTER-------------------------*/
footer {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 50px;
  padding: 1rem;
  margin-top: auto;
  z-index: 15;
  background-image: url("../img/web-bkgnd.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-top: 3px solid rgb(30, 30, 30);
  box-sizing: border-box;
}

footer ul li {
  display: inline;
}

ul li a {
  text-decoration: none;
  color: rgb(255, 255, 255);
  padding: 5px;
}

footer ul {
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

.redes {
  justify-content: center;
  align-items: center;
}

/*-------------------FOOTER RESPONSIVE-------------------------*/
@media (min-width: 320px) and (max-width: 768px) {
  footer {
    margin: 0;
    padding: 0;
    justify-content: center;
    align-items: center;
  }
  .redes {
    justify-content: center;
    align-items: center;
  }
  footer ul {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }
}
/*-------------------CONTACT-------------------------*/
.contact-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto auto;
  gap: 40px;
  padding: 20px;
  margin: 0;
  box-sizing: border-box;
}

.experience-container,
.info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
}

/* Row 1: GMaps + TripAdvisor side-by-side */
.location-container,
.tripadvisor-container {
  background-color: rgba(255, 255, 255, 0.13);
  border: 3px solid #917a15;
  width: 85%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Center the titles*/
.tripadvisor-container h3,
.location-container h1 {
  font-size: large;
  text-align: center;
  color: #ffffff;
  margin: 0;
  padding: 10px 0;
}

.gmap_iframe,
.tripadvisor-container iframe {
  width: 100%;
  aspect-ratio: 3/2;
  min-height: 300px;
  height: auto;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* Row 2: Form 1*/
.chain-form {
  grid-column: 1/3; /* Full width across both columns */
  grid-row: 2;
  margin: 0;
  padding: 0;
}

/* Row 3: Form 2*/
.contact-form {
  grid-column: 1/3; /* Full width across both columns */
  grid-row: 3;
  margin: 0;
  padding: 0;
}

/* Common form styling */
.form-container {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.13);
  border: 3px solid #917a15;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.title-form {
  font-weight: bold;
  font-size: x-large;
  color: #ffffff;
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

.title-form:hover {
  color: #917a15;
}

/**************RESPONSIVE******************/
@media (max-width: 768px) {
  .contact {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }
  .experience-container,
  .info-container,
  .chain-form,
  .contact-form {
    grid-column: 1/-1;
    grid-row: auto;
    width: 100%;
  }
  .experience-container iframe,
  .gmap_iframe {
    width: 100%;
    height: auto;
  }
}
/*******************NOSOTROS****************************/
.nosotros-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-items: center;
  gap: 20px;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.13);
}

.slider-col, .sobre_nosotros-col {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  width: 100%;
}

.slider-center {
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.swiffy-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  height: 100%;
  width: 100%;
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border: 5px solid rgba(255, 255, 255, 0.13);
}

.slider-container li {
  min-width: 100%;
  height: 100%;
  display: flex;
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sobre_nosotros-col {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  padding: 0 30px;
}

.nosotros-title {
  color: rgb(200, 159, 70);
  font-size: 40px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: -2px 2px 2px 0px #917a15;
}

.nosotros-txt {
  color: white;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .nosotros-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    padding: 20px;
  }
  .slider-center {
    max-width: 100%;
    aspect-ratio: 3/2;
    height: auto;
  }
  .sobre_nosotros-col {
    align-items: center;
    text-align: center;
    padding: 0 15px;
  }
  .nosotros-title {
    margin-left: 0;
    font-size: 32px;
  }
}
/*************PEDI-ACA*****************/
.pedi-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pedidos-title {
  font-size: 1.5rem;
  text-align: center;
  margin: 10px 0 30px;
  color: rgb(255, 255, 255);
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.form-container {
  width: 80%;
  height: auto;
  padding: 2rem;
  padding-top: 50px;
  background-color: rgba(255, 255, 255, 0.13);
  border: 3px solid #917a15;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-control, .form-select {
  width: 100%;
  color: #ffffff;
}

.form-container > div {
  margin-bottom: 1rem;
}

form input, select {
  display: block;
  height: 30px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
}

.form-label {
  color: white;
  font-size: large;
  margin-bottom: 0.5rem;
  display: block;
}

.boton-next {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-siguiente {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border: 2px solid rgb(119, 83, 5);
  padding: 1rem 2rem;
  background-color: rgb(200, 159, 70);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 15px;
  width: 230px;
  height: 70px;
}

.btn-siguiente:hover {
  background-color: rgb(200, 159, 70);
}

.btn-siguiente::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(147, 102, 6);
  z-index: -1;
  background-repeat: 10rem;
  transition: 0.3s ease all;
  transform: scale(0, 1);
  transform-origin: bottom left;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.btn-siguiente:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}

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

body {
  background-color: #080710;
  font-family: "Poppins", sans-serif;
}

.background {
  width: 430px;
  height: 520px;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.login-page form {
  height: 520px;
  width: 400px;
  background-color: rgba(255, 255, 255, 0.13);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
  padding: 50px 35px;
}
.login-page form * {
  color: #ffffff;
  letter-spacing: 0.5px;
  outline: none;
  border: none;
}
.login-page form h1 {
  margin-top: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 42px;
  text-align: center;
}
.login-page form label {
  display: block;
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}
.login-page form input {
  display: block;
  height: 50px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  padding: 0 10px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 300;
}
.login-page form input::placeholder {
  color: #e5e5e5;
}
.login-page form .login-button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  border: 2px solid rgb(119, 83, 5);
  padding: 1rem 2rem;
  background-color: rgb(200, 159, 70);
  color: white;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.15rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: 15px;
  width: 230px;
  height: 70px;
  border-radius: 5px;
  margin: 30px 48px;
}
.login-page form .login-button:hover {
  background-color: rgb(200, 159, 70);
}
.login-page form .login-button::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgb(147, 102, 6);
  z-index: -1;
  background-repeat: no-repeat;
  transition: transform 500ms cubic-bezier(0.86, 0, 0.07, 1);
  transform: scale(0, 1);
  transform-origin: bottom left;
}
.login-page form .login-button:hover::after {
  transform: scale(1, 1);
  transform-origin: top left;
}
.login-page form .social {
  display: flex;
}
.login-page form .social div {
  width: 150px;
  border-radius: 3px;
  padding: 5px 10px 10px 5px;
  background-color: rgba(255, 255, 255, 0.27);
  color: #eaf0fb;
  text-align: center;
  transition: background-color 0.3s;
}
.login-page form .social div:hover {
  background-color: rgba(255, 255, 255, 0.47);
}
.login-page form .social .fb {
  margin-left: 25px;
}
.login-page form .social i {
  margin-right: 4px;
}

h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 20px 0;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

.menu {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  justify-items: center;
  padding: 20px;
}
@media (min-width: 768px) {
  .menu {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  width: 300px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, rgba(47, 47, 47, 0.337) 50%, rgba(255, 255, 255, 0.792) 50%);
  box-shadow: 0 10px 20px black;
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}
.card:hover {
  transform: scale(1.05);
}
.card .card-image {
  align-items: center;
  width: 100%;
  height: 85%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}
.card .card-info {
  height: 15%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background-color: rgba(0, 0, 0, 0.878);
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.card-image.anana {
  background-image: url(../img/anana.png);
}

.card-image.pepperoni-img {
  background-image: url(../img/pepperoni.png);
}

.card-image.m-cherry-img {
  background-image: url(../img/m-cherry.png);
}

.card-image.anchoas-img {
  background-image: url(../img/anchoas.png);
}

.card-image.napolitana-img {
  background-image: url(../img/napolitana.png);
}

.card-image.cuatro-quesos-img {
  background-image: url(../img/cuatro-quesos.png);
}

.card-image.fugazzeta-img {
  background-image: url(../img/fugazzeta.png);
}

.card-image.capresse-img {
  background-image: url(../img/pizza-caprese.png);
}

.card-image.bacon-img {
  background-image: url(../img/bacon.png);
}

.card-image.anana {
  background-size: 150%;
  background-position: 37% center;
}

.card-image.pepperoni-img {
  background-size: 150%;
  background-position: 53% center;
}

.card-image.m-cherry-img {
  background-size: 148%;
  background-position: 51% center;
}

.card-image.anchoas-img {
  background-size: 150%;
  background-position: 42% center;
}

.card-image.napolitana-img {
  background-size: 150%;
  background-position: 45% center;
}

.card-image.cuatro-quesos-img {
  background-size: 150%;
  background-position: 55% center;
}

.card-image.fugazzeta-img {
  background-size: 145%;
  background-position: 49% center;
}

.card-image.capresse-img {
  background-size: 160%;
  background-position: 51% center;
}

.card-image.bacon-img {
  background-size: 162%;
  background-position: 49% center;
}

/*# sourceMappingURL=styles.css.map */
