@font-face {
  font-family: 'Futura PT Medium';
  src: url('fonts/futura-pt/FuturaPTMedium.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body {
  margin: 0;

  background-color: hsl(34, 13%, 44%)
}



.container {
  margin-left:  5%;
  margin-right: 5%;
  width: auto;
  gap: 8px;

  
}


.container-destacado {

  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Adjust the number of columns as needed */

}


.container-vertical {

  display: flex;
}

.container-destacado > .card{
  aspect-ratio: 16/9;

}

.container-vertical > .card{
  aspect-ratio: 10/16;

  width: 90%;
}

.card {
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out, border 0.3s ease-in-out
}

.card:hover {
  transform: scale(1.01);

}

.card > a {
  z-index: 1000;
}

.container > .card img {
  width: 100%;
  object-fit: fill;
  object-position: center;
}


.title-card {
  z-index: 100;
  text-shadow: 2px 2px 5px rgb(29, 28, 28);
  
  position: absolute;
  bottom: 2rem;
  left: 1rem;
  margin-right: 80px;
  color: #eee; /* Text color */
  text-align: left;
}

h1 {
  font-family: 'Futura PT Medium', sans-serif;

  margin-bottom: 0;
  margin-top: 0;
  font-size: 1.6rem;



}

h2 {
  margin-top: 0.4rem;
  margin-bottom: 0;
  font-size: 0.5rem;

}


/** =============== RESPONSIVE CONTAINER  =================**/


@media (min-width: 768px) {
  .container-destacado > .card:first-child {
    grid-column: span 2;
    grid-row: span 2; /* Make the first card span two columns */
  }

}



@media (max-width: 768px) {
  .container {
    grid-template-columns: repeat(1, 1fr); /* Change to two columns on smaller screens */
  }
  .container-vertical {
    flex-flow: column;
    align-items: center;
  }

}





/* ===================== NAVBAR, HERO, ETC ===================**/


.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: #706557;
}



.logo img {
  width: 300px;
  padding: 0;
  margin: 0;
}

.logo a {
  padding: 0;
  margin: 0;
}

.menu-icon {
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 3px 0;
}




.hero-section {
  position: relative;
  overflow: hidden;
}

.hero-section2 {
  position: relative;
  overflow: hidden;

}

.hero-section2 img {
  transition: transform 0.3s ease-in-out;

}

.hero-section2 img:hover {
  transform: scale(1.01);

}

.image-container {
  display: flex;
  transition: transform 0.2s ease-in-out;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}










