/*
-- || LATO || + Italic --
Thin: font-weight: 100 , Light: font-weight: 300 , Regular: font-weight: 400, Bold: font-weight: 700 , Black: font-weight: 900
-- || CORMORANT GARAMOND || + Italic --
Light: font-weight: 300 , Regular: font-weight: 400, Medium: font-weight: 500 , Semi-Bold: font-weight: 600 , Bold: font-weight: 700
-- || RALEYWAY || --
<weight>: Use a value from 100 to 900
  .raleway-<example> {
    font-family: "Raleway", serif;
    font-weight: <weight>;
    font-style: normal;
  }
*/
* {
  box-sizing: border-box;
  /* outline: 1px solid lime; /* to see ALL the elements */
}

.lato-thin{font-family:"Lato",serif;font-weight:100;font-style:normal}.lato-light{font-family:"Lato",serif;font-weight:300;font-style:normal}.lato-regular{font-family:"Lato",serif;font-weight:400;font-style:normal}.lato-bold{font-family:"Lato",serif;font-weight:700;font-style:normal}.lato-black{font-family:"Lato",serif;font-weight:900;font-style:normal}.lato-thin-italic{font-family:"Lato",serif;font-weight:100;font-style:italic}.lato-light-italic{font-family:"Lato",serif;font-weight:300;font-style:italic}.lato-regular-italic{font-family:"Lato",serif;font-weight:400;font-style:italic}.lato-bold-italic{font-family:"Lato",serif;font-weight:700;font-style:italic}.lato-black-italic{font-family:"Lato",serif;font-weight:900;font-style:italic}
.cormorant-garamond-light{font-family:"Cormorant Garamond",serif;font-weight:300;font-style:normal}.cormorant-garamond-regular{font-family:"Cormorant Garamond",serif;font-weight:400;font-style:normal}.cormorant-garamond-medium{font-family:"Cormorant Garamond",serif;font-weight:500;font-style:normal}.cormorant-garamond-semibold{font-family:"Cormorant Garamond",serif;font-weight:600;font-style:normal}.cormorant-garamond-bold{font-family:"Cormorant Garamond",serif;font-weight:700;font-style:normal}.cormorant-garamond-light-italic{font-family:"Cormorant Garamond",serif;font-weight:300;font-style:italic}.cormorant-garamond-regular-italic{font-family:"Cormorant Garamond",serif;font-weight:400;font-style:italic}.cormorant-garamond-medium-italic{font-family:"Cormorant Garamond",serif;font-weight:500;font-style:italic}.cormorant-garamond-semibold-italic{font-family:"Cormorant Garamond",serif;font-weight:600;font-style:italic}.cormorant-garamond-bold-italic{font-family:"Cormorant Garamond",serif;font-weight:700;font-style:italic}

:root {
  --white: #E8E8E8; 
  --platinum: #D9D9D9; 
  --light-blue: #A4C2CE; 
  --light-green: #65888E; 
  --green: #375162;
  --dark-blue: #2C4964;
  --blue: #4B709D;
  --raleway-logo: "Raleway", sans-serif;
  font-weight: 650;
  --cormorant-bold: "Cormorant Garamond", serif;
  font-weight: 700;
}
::-webkit-scrollbar {
  width: 0.5em;
}
::-webkit-scrollbar-track {
  background-color: var(--platinum);
}
::-webkit-scrollbar-thumb {
  background-color: var(--blue);
}
body {
  background-color: var(--platinum);
  width: 100%;
  min-width: 320px;
  margin: 0;
  padding: 0;
}
nav {
  background-color: rgba(164,194,206,0.85);
  position: fixed;
  width: 100%;
  color: white;
  height: 90px;
  z-index: 9;
  top: 0px;
  left: 0px;
  box-shadow: 0 0 0.5em rgba(164,194,206,0.6);
}
.logo-nav {
  display: flex;
  width: 100%;
  justify-content: space-between;  /* Align horizontally */
  align-items: center;
  padding: 0;
}
.logo {
  display: flex;
/*   justify-content: space-between;
 */  font-family: var(--raleway-logo);
  font-size: 1.5em;
  margin-left: 2%;
  max-width: fit-content;
  transition: transform 0.5s;
}
.logo a {
  text-decoration: none;
  color: white;
}
.logo:hover {
  transform: scale(1.06);
  cursor: pointer;
}
.llamada {
  display: block;
  background-color: var(--dark-blue);
  padding: 0.5em;
  text-align: center;
  font-size: 14px;
}
.llamada i {
  margin-left: 20px;
  margin-right: 10px; /* To separate the elements */
}
.index {
  width: 38%;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-evenly;
  list-style: none;
}
.index li {
  text-align: center;
  vertical-align: middle;
  padding-left: 0.5em;
  line-height: 60px;
}
.index li a {
  font-size: 20px;
  font-family: "Raleway", Serif;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition-duration: 0.5s;
  transition-timing-function: ease-in-out;
}
.index li a:hover {
  color: var(--blue);
}
.cita {
  border: 1px solid white;
  background-color: var(--blue);
  padding: 10px;
  border-radius: 10px;
  font-style: italic;
  transition: 1s ease-in-out;
}
.cita:hover {
  background-color: white;
  transform: scale(1.04);
}
.hamburguer {
  display: none;
}
/* ------------------ */
#header {
  background-image: url("https://i.imgur.com/UMMpAGV.jpeg");
  /*background-image: url(/img/fondo.jpeg);*/  
  background-position: center;
  background-size: cover;
  padding-top: 200px;
  padding-bottom: 720px;
  overflow: hidden;
}
main {
  display: flex;
  flex-wrap: wrap;
/*   top: 0px;
 */  width: 100%;
}
#about {
  top: 30px;
  position: relative;
  width: 65%;
  margin: 0px auto;
  padding: 1em;
/*   background-color: grey;
 */  margin-top: 1em;
  font-family:"Lato",serif;
  font-weight:400;
  font-style:normal;
  text-align: justify;
}
#about h1 {
  text-transform: uppercase;
  text-align: center;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
}
hr {
  border: 2px solid var(--light-green);
}

/* -----------------------------------  */
#media {
  width: 100%;
  height: 100vh;
  background-color: var(--light-green);
  display: flex;
  align-items: center;
  justify-content: center;
}
#about, #media {
  flex: 1 1 auto; /* Avoid shrinking below natural width */
  min-width: 300px; /* Prevent extreme shrinking */
}
.slider-images{
  display: flex;
  align-items: center;
  gap: 21px;
  flex-wrap: wrap;
}
.slider-images img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.slider-img{
  width: 110px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.7s ease;
}
.slider-images .slider-img:first-child, .slider-images .slider-img:last-child{
  height: 480px;
}
.slider-images .slider-img:nth-child(2), .slider-images .slider-img:nth-child(6){
  height: 560px;
}
.slider-images .slider-img:nth-child(3), .slider-images .slider-img:nth-child(4), .slider-images .slider-img:nth-child(5){
  height: 665px;
}

.slider-img.active{
  width: 766px !important;
  height: 750px !important;
}

.maps iframe {
  border: 0;
}
footer {
  display: flex;
  justify-content: space-between; /* To ensure equal spacing */
  flex-wrap: wrap;
  background-color: var(--dark-blue);
  color: white;
  padding: 20px;
  font-family:"Lato",serif;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
  font-family: "Cormorant Garamond", Serif;
  font-size: 20px;
}
footer .block1, footer .block2 {
  flex: 1;
  margin: 10px;
  max-width: 28%;
  margin: 0 100px;
}
footer .block2 {
  padding-top: 20px;
  text-align: left;
}
footer .block1 h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Serif;
}
footer ul {
  list-style: none;
  padding: 0;
}
footer ul li {
  display: flex;
  justify-content: space-between;
}
footer ul li p {
  margin: 5px;
}
footer .block2 h2 {
  margin-top: 10px;
  font-family: "Cormorant Garamond", Serif;
}
.dias {
  font-weight: 600;
}
@media (width <= 1572px) {
  .slider-img {
    width: 50px;
  }
  .slider-img.active {
    width: 600px !important;
    height: 650px !important;
  }
}
@media (width <= 1024px) {
  .index {
    display: none;
  }
  .hamburguer .menu {
    display: none;
  }
  .hamburguer {
    font-family: var(--raleway-logo);
    display: inline-block;
    position: absolute;
    right: 0px;
    margin-right: 0.5em;
  }
  .hamburguer button {
    background-color: rgba(164,194,206,0.85);
    color: white;
    border: none;
    line-height: 41px;
    padding: 10px 20px; 
    font-size: 2.2em;
    text-decoration: none;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
  }
  .hamburguer .menu {
    position: absolute;
    background-color: var(--light-blue);
    width: 160px;
    height: max-content;
    right: -7.5px;
    box-shadow: -5px 5px 5px var(--light-green);
  }
  .menu {
    width: 38%;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
  }
  .menu li {
    list-style: none;
    vertical-align: middle;
    line-height: 60px;
  }
  .menu li a {
    font-size: 20px;
    font-family: "Raleway", Serif;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition-duration: 0.5s;
    transition-timing-function: ease-in-out;
  }
  .menu li a:hover {
    color: var(--blue);
  }
  .hamburguer:hover .more {
    display: grid;
  }
  .hamburguer:hover .menu {
    display:block;
    height: 18em;
  }
  .slider-images {
    gap: 15px;
  }
  .slider-img {
    width: 30px;
  }
  .slider-img:first-child,
  .slider-img:last-child {
    height: 400px;
  }

  .slider-img:nth-child(2),
  .slider-img:nth-child(6) {
    height: 450px;
  }
  .slider-img:nth-child(3),
  .slider-img:nth-child(4),
  .slider-img:nth-child(5) {
    height: 500px;
  }
  .slider-img.active {
    width: 400px !important;
    height: 650px !important;
  }
  footer .block1, footer .block2 {
    flex: 1;
    margin: 10px; 
    max-width: 50%; 
    margin: 0 45px;
  }
}
@media (width <= 768px) {
  footer {
    flex-direction: column; /* Stacks blocks vertically on smaller screens */
    align-items: center; /* Centers content */
    text-align: center;
  }

  footer .block1, footer .block2 {
    max-width: 100%; /* Blocks take full width */
    margin: 10px 0; /* Space between stacked blocks */
  }

  footer .block2 {
    max-width: 50%;
    text-align: center;
  }
  .mail {
    position: absolute;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    padding-top: 20px;
  }
  .slider-images {
    gap: 10px;
  }
  .slider-img {
    width: 20px;
  }
  .slider-img.active {
    width: 300px !important;
    height: 650px !important;
  }
}
/* Custom media query, not standard. */
@media (width <= 500px) {
  .slider-images {
    gap: 5px;
  }
  .slider-img {
    width: 15px;
  }
  .slider-img.active {
    width: 250px !important;
    height: 650px !important;
  }
}