/*
=============== 
Fonts
===============
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans|Roboto:400,700&display=swap");

/*
=============== 
Variables
===============
*/


/*
=============== 
Global Styles
===============
*/

*,
::after,
::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.img{
  position: fixed;
  top: 0;
  left: 0;
  display:block;
  margin:auto;
  width: 100px;
  height: auto; /* Ajusta esto según tus necesidades */
  z-index: 1000; /* Asegura que la imagen esté por encima de otros elementos */
}
body {
  font-family: var(--ff-secondary);
  background: none;
  color: rgb(2, 2, 250);
  line-height: 1.5;
  font-size: 0.875rem;
  background-image: url("img/fondoalebrijes.jpg");
   height: auto;
  margin-top: 50px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position:center ;
  background-size: cover;
  
  
}


.hidden {
  display: none; /* Oculta el texto por defecto */
}
ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img:not(.logo) {
  width: 100%;
}
img {
  display: block;
}

h1,
h2,
h3,
h4 {
  letter-spacing: var(--spacing);
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
  font-family: var(--ff-primary);
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
  color:white;
}
h3 {
  font-size: 1.25rem;
}
h4 {
  font-size: 0.875rem;
}
p {
  margin-bottom: 0;
  color:rgb(252, 252, 251);
}
@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}
/*  global classes */


.btn:hover {
  color: black;
  background: white;
}
/* section */
.section {
  padding: 5rem 0;
}

main {
  min-height: 100vh;
  display: grid;
  place-items: center;
}
.ir-arriba{
    float: right;
    
    
}



/*
=============== 
Menu
===============
*/


.title {
  text-align: center;
  margin-bottom: 2rem;
}
.underline {
  width: 5rem;
  height: 0.10rem;
  background: white;
  margin-left: auto;
  margin-right: auto;
}
.btn-container {
  align-items: center;
  margin-bottom: 4rem;
  display:flex;
 

}
.filter-btn {
  background-color: rgb(0, 238, 255);
  background-size:cover ;
  border-color:rgb(244, 248, 3);
  font-size: 1rem;
  text-transform: capitalize;
  margin: 0 0.5rem;
  letter-spacing: 1px;
  border-radius: var(--radius);
  padding: 0.375rem 0.75rem;
  color: rgb(58, 3, 255);
  cursor: pointer;
  transition: var(--transition);
  border-radius: 10% 10% 10% 10% / 20% 20% 20% 20%
  
}
.filter-btn:hover {
  background: rgb(226, 187, 32);
  color: black;
}
.section-center {
  width: 90vw;
  margin: 0 auto;
  max-width: 1170px;
  display: grid;
  gap: 3rem 2rem;
  justify-items: center;
}
.menu-item {
  display: grid;
  gap: 1rem 2rem;
  max-width: 25rem;
}
.photo {
  object-fit: cover;
  height: 200px;
  border: 0.25rem solid white;
  border-radius: var(--radius);
}
.item-info header {
  display: flex;
  justify-content: space-between;
  border-bottom: 0.5px dotted white;
}
.item-info h4 {
  margin-bottom: 0.5rem;
}
.price {
  color: rgb(252, 4, 4);
}
.item-text {
  margin-bottom: 0;
  padding-top: 1rem;
    color: #3b4c92;
}
.logo{
    width: 200px;
  
    
}
.footer{
 
 position:relative;
 background-color:black;
 width:100%;
 padding-bottom: 10px;
 bottom:0;
}

.bi-instagram{
  width: 50px;
  height: 50px;
  padding: 5px;
  margin: 50px;
  color: red;
  cursor: pointer;
  background-color: white;
  border-radius: 15px;
}

@media screen and (min-width: 768px) {
  .menu-item {
    grid-template-columns: 225px 1fr;
    gap: 0 1.25rem;
    max-width: 40rem;
  }
  .photo {
    height: 175px;
  }

    
}
@media screen and (min-width: 1200px) {
  .section-center {
    width: 95vw;
    grid-template-columns: 1fr 1fr;
  }
  .photo {
    height: 150px;
  }
 img:not(.logo) {
  width: 50%;
  display: block;
  margin: 0 auto 50px;
}
}

