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

@font-face {
  font-family: 'Nagayama';
  src: url('./nagayama_kai08.otf') format('opentype');
}

/*:root {*/
/*  --primary-color: #a678b6; */
/*  --primary-color-dark: #8c639b; */
/*  --secondary-color: #f3e6f7; */
/*  --text-dark: #4e2a47; */
/*  --text-light: #e1c6d5;*/
/*  --extra-light: #f9f1fc;*/
/*}*/



html, body {
  height: 100%; /* Ensures the body spans the full viewport height */
  margin: 0; /* Removes default margins to prevent unwanted spacing */
  overflow: auto; /* Enables scrolling for any overflowing content */
}

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

body {
  background: url('/background4.jpg'); /* Your background image */
  background-position: center; /* Centers the image */
  background-repeat: no-repeat; /* Ensures the image doesn't repeat */
  background-size: cover; /* Scales the image to cover the viewport */
  backdrop-filter: blur(1px); /* Optional: Adds blur effect */
  display: flex; /* Allows vertical centering */
  flex-direction: column; /* Ensures content flows top-to-bottom */
  min-height: 100%; /* Ensures body content fills the viewport */
}

/* header and navbar start */

header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  margin-bottom: 20px;
}

header .navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
}

.navbar a{
  color: #fff;
  text-decoration: none;
  transition: .2s ease;
}

/* .navbar a:hover{
  color: cadetblue;
} */

.navbar .lila{
  color: #fff;
  font-size: 3.5rem;
  /* font-weight: 600; */
  font-family: 'Nagayama';
  src: url('./nagayama_kai08.otf') format('opentype');
}

.navbar .logo{
  color: #fff;
  font-size: 2.5rem;
  font-family: 'Nagayama';
  src: url('./nagayama_kai08.otf') format('opentype');
}



.gato{
  height: 400px;
  pointer-events: none;
  z-index: -2;
  /* filter: contrast(150%); */
  filter: hue-rotate(330deg) saturate(120%) brightness(110%);
}

.navbar .logo span{
  color: cadetblue;
}

.navbar .menu-links{
  display: flex;
  gap: 40px;
  list-style: none;
}

.lastLink {
  position: relative;
  top: 0px;
  font-size: 2rem;
  cursor: pointer;
  list-style: none;
}

.lastLink span:hover {
  transform: scale(2.2); /* Scale to 120% of the original size */
}


/* header and navbar end */

/* hero-section starts */

.hero-section{
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}



.gallery {
  position: relative;
  margin-bottom: 50px;
  bottom: -140px;
}

.hero-section {
  flex: 1; /* Takes up remaining space and pushes footer down */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 20px;
}

.hero-section .content{
  color: #000;
  margin: 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 150vh;
  max-width: 1200px;
  width: 100%;
}

.hero-section .content h1{
  font-size: 3rem;
  max-width: 600px;
}

.hero-section .content p {
  font-weight: 400;
  max-width: 600px;
  background-color: rgba(255, 240, 245, 0.8); /* Light pastel pink with slight transparency */
  color: #5a3d3d; /* Soft dark brown for elegant readability */
  padding: 10px 15px; /* Adds space for better readability */
  border-radius: 8px; /* Softens the container edges */
  margin-top: 15px; /* Adds spacing above if needed */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
  border: 1px solid rgba(255, 182, 193, 0.5); /* Optional: Light pink border for detail */
}



.hero-section .content a{
  position: relative;
  bottom: -40px;
  
  background-color: rgba(255, 240, 245, 0.8);
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 38px;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
  text-decoration: none;
  color: #5a3d3d;
  animation: blinker 1.4s ease infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

/* .hero-section .content button{
  background: #fff;
  outline: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 38px;
  padding: 12px 30px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s ease;
} */

/* .hero-section .content button:hover{
  color: #fff;
  background: cadetblue;
} */

footer {
  text-align: center;
  font-size: 12px;
  color: #555;
  padding: 10px 0;
  width: 100%;
  
}

#menu-btn{
  font-size: 1.5rem;
  color: #cd91e5;
  cursor: pointer;
  display: none;
}

#close-menu-btn{
  position: absolute;
  font-size: 1.5rem;
  right: 20px;
  top: 20px;
  cursor: pointer;
  display: none;
}
/* hero-section ends */

/* media queries and responsiveness */

@media screen and (max-width: 900px) {
    

    
    .gato{
         pointer-events: none;
         z-index: -2;
        /* filter: contrast(150%); */
        filter: hue-rotate(330deg) saturate(120%) brightness(110%);
        }

  header {
   padding: 10px 20px;
  }

  .show-mobile-menu::before{
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
  }

  #menu-btn, #close-menu-btn{
    display: block;
  }

  .navbar .menu-links{
    position: fixed;
    left: -260px;
    top: 0;
    flex-direction: column;
    width: 260px;
    height: 100vh;
    background: white;
    color: rgb(26, 26, 91);
    padding: 70px 40px 0;
    transition: left 0.15s ease;
    border-bottom-right-radius: 45%;
    z-index: 3;
  }

  .navbar a{
    color: rgb(144, 95, 160);
    scale: 1.8;
  }

  .show-mobile-menu .navbar .menu-links{
    left: 0;
  }

  .hero-section .content{
    text-align: center;
  }

  /*.hero-section .content :is(h1, p){*/
  /*  max-width: 100%;*/
  /*}*/

  .hero-section .content h1{
    font-size: 2.3rem;
    line-height: 60px;
  }

  .hero-section .content button{
    padding: 9px 18px;
  }

  .hero-section .content a{
    padding: 9px 18px;
  }
}

/* Calendar */

.month {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  text-align: center;
  margin-bottom: 10px;
}

.calendar {
  max-width: 400px;
  margin: 0 auto;
  /* border: 1px solid #ccc; */
  padding: 20px;
}

#monthYear{
  color: white;
  font-size: 1.5rem;
}



.day-label {
  padding: 5px;
}



.day {
  text-align: center;
  padding: 10px;
  /* border: 0.5px snow #ddd; */
}

.unavailable {
  background-color: cadetblue;
  color: cadetblue; /* Light red background */
  border-radius: 15%; /* Circle shape */
}

.wrapper {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
}



.calendar button{
  
  padding: 0.5rem 1rem;
  outline: none;
  border: none;
  border-radius: 5px;
  background-color: transparent;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.wrapper .h1{
  position: relative;
  top:-130px;
  z-index: -1;
  color: white;
  font-size: 0.9rem;
  background-color: cadetblue;
  padding: 10px;
  border-radius: 6px;
  
}

/* Calendar Ends */

/* reviews */

.review-h1{
  background-color: cadetblue;
  color: white;
  padding: 10px;
  border-radius: 6px;
}

.reviews-section{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

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

.slide-container{
  margin-top: 40px;
  max-width: 300px;
  width: 100%;
  padding: 40px 0;
  
}

.slide-content{
  margin: 0 40px;
}

.card{
  width: 320px;
  border-radius: 25px;
  background-color: #FFF;
}

.image-content, .card-content{
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.image-content{
  background-color: white;
  position: relative;
  row-gap: 5px;
  border-radius: 25px 25px 25px 25px;
}

.overlay{
  border-radius: 25px 25px 0 25px;
  position: relative;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background-color: cadetblue;
}

.card-image{
  position: relative;
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background: #FFF;
  padding: 3px;

}
.card-image .card-img{
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid cadetblue;
}

.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.description{
  font-size: 14px;
  color: #707070;
  text-align: center;
}

.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: cadetblue;
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Reviews End */

/* Servicios Starts */

/* Servicios Ends */






