@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@1,400;1,500;1,700&display=swap');
/*===== GOOGLE FONTS =====*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap");
/*===== VARIABLES CSS =====*/
:root {
  --header-height: 3rem;
  --font-semi: 600;
  /*===== Colores =====*/
  --hue-color: 224;
  --first-color: hsl(var(--hue-color), 89%, 60%);
  --second-color: hsl(var(--hue-color), 56%, 12%);
  /*===== Fuente y tipografia =====*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h2-font-size: 1.25rem;
  --normal-font-size: .938rem;
  --smaller-font-size: .75rem;
  /*===== Margenes =====*/
  --mb-2: 1rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
  /*===== z index =====*/
  --z-back: -10;
  --z-fixed: 100;
}

html{
  overflow-x: hidden;
}
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h2-font-size: 2rem;
    --normal-font-size: 1rem;
    --smaller-font-size: .875rem;
  }
}

* {
  margin: 0;
  padding: 0;
}
body{
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.uparrow {
  position: fixed;
  font-size: 50px;
  margin-top: 52vh; 
  margin-left: 97vw; 
  color: goldenrod;
  cursor: pointer; 
}

.uparrow:hover {
  color: #f1683a;
}

.downarrow {
  position: fixed;
  font-size: 50px;
  margin-top: 56vh; 
  margin-left: 97vw; 
  color: goldenrod;
  cursor: pointer; 
  z-index: 100;
}

.downarrow:hover {
  color: #f1683a;
}


#banner{
    height: 100vh;
    max-width: 100%;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url('assets/container.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    overflow-x: hidden;
}
.btn{
  border: none;
  font-style: none;
  border-radius: 50px;
  background-color:goldenrod;
  color: black;
}
.btn:hover{
  background-color: gold;
  color: #000;
}
.form-control{
  border-radius: 50px;
  border: none;
}
.d-flex{
  gap: 10px;
}

.logo img{
  width: 50px;
  height: 50px;
}

.banner-text h1{
  font-weight: 700;
  font-family: var(--body-font);
}
.banner-text{
  margin: 150px auto;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  text-align: center;
  align-items: center;
  max-width: 60%;
  font-size: 1.2rem;
}

.banner-text .btn{
  border-radius: 0;
  background: none;
  border: 2px solid goldenrod;
  color: gold;
}
.banner-text .btn:hover{
  color: #c00026;
  border: 2px solid #e00026;
}
#gallery .hero .swipe{
  display: none;
}


@media screen and (max-width: 768px){
  body{
    overflow-x: hidden;
  }
  .logo a{
    font-size: 1.5rem;
  }
  .banner-text{
    font-size: var(--normal-font-size);
    max-width: 100%;
    padding: 20px;
    margin: 50px auto;
  }
  #about .container1{
    flex-direction: column;
    gap: 10px;
  }
  #about .container1 img{
    width: 100%;
  }
  #gallery{
    display: none;
   }
  .service{
    gap: 30px;
  }
}
.dots{
   position: absolute;
   left: 45%;
}
.dots i{
    margin: 0 auto;
    color: white;
}
.service{
  margin: 0 auto;
  width: 80%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  padding-top: 10px;
  gap: 20px;
}

.service .card{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.service .card:hover{
  box-shadow: 0 0 10px rgba(0, 131, 254, 0.5);
  transform: scale(1.05);
  transition: all .5s;
}

.service .btn{
 width: 100%;
 font-weight: 700;
}
.service .btn:hover{
  box-shadow: 0 5px 10px rgba(0,0,0,0.5);
  color: gold;
}

#about h1{ 
  margin-top: 3%;
  text-align: center;
}
#about p{
  text-align: justify;
  width: 100%;
  padding: 20px;
  font-size: 15px;
}
#about .container1{
  display: flex;
  gap: 10px;
  width: 80%;
  margin: 0 auto;
}
.buttons{
  display: grid;
  grid-template-columns: repeat(2, 130px);
  grid-template-rows: 40px;
  gap: 5px;
  margin-top: 20px;
  margin-left: 20px;
}
.buttons button{
  border: none;
  background-color: gold;
  letter-spacing: 3px;
  font-family: Poppins;
  font-weight: 500;
}
.buttons button:hover{
  color: white;
  transform: scale(1.1);
  transition: all 0.5s;
  box-shadow: 5px 5px 10px rgba(0,0,0,0.5);
}
.buttons button:nth-child(2){
  background-color: transparent;
  border: 2px solid  #f1683a;
  color:  #f1683a;
}

.buttons button:nth-child(2):hover{
  color:  #000000;
}

.container1 h1{
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 700; 
  margin-left: 2%; 
  text-decoration: underline;
}

#gallery{
  width: 95%;
  margin: 0 auto;
}
#gallery .hero{
  width: 100%;
  height: 85vh;
  background: #000;
  margin: 0 auto;
  overflow: hidden;
}

#gallery .hero .carousel{
  width: 500px;
  margin: 100px auto 0;
  overflow: visible;
  transition: 0.5s;
}
#gallery .carousel img{
  -webkit-box-reflect: below 20px 
  linear-gradient(rgba(255,255,255,0.1),rgba(255,255,255,0.3));
}

#gallery .hero .icons1{
  display: flex;
  justify-content: space-between;
}

label {
  display: block;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
textarea {
  width: 95%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #000000;
  border-radius: 5px;
  background: transparent;
  color: #000000;
}

.review {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 80%;
  margin: 0 auto;
  padding-bottom: 50px;
}

.feedback {
  display: none; /* Initially hide all feedback */
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.feedback p {
  margin-bottom: 10px;
  position: relative;
}

.feedback p:last-child {
  margin-bottom: 0;
}

.user {
  border: 2px solid rgb(52, 52, 52);
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.show-feedback {
  display: block !important;
}
.user-info{
  display: flex;
  gap: 20px;
  font-size: 20px;
}

.user-info p{
  margin-top: 15px;
}


#review{
  box-shadow: 0 0 10px rgba(0, 131, 254, 0.5);
  border-radius: 10px;
  width: 90%;
  margin: 0 auto;
  margin-top: 10px;
  margin-bottom: 30px;
}

#review .feedback{
  background: rgba(201, 223, 244, 0.5);
  backdrop-filter: blur(50px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#review .btn{
  width: 50%;
  margin-left: 25%;
  font-family: 'Protest Revolution', sans-serif;
  font-size: 16px;
  color: #fff;
  height: 3rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image: radial-gradient(#2873ad, #052434);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(0, 131, 254, 0.9);
}
#review .btn:hover:enabled{
  color: #000;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

@media screen and (max-width: 700px) {
  #about p{
    padding: 10px 0;
  }
  #gallery .hero{
    height: 100vh;
  }
  #contact{
    padding: 10px;
    margin-left: -3px;
  }
  #contact .title-ct{
    margin-left: -10%;
  }
  #review{
    width: 98%;
    margin-top: 10%;
    padding: 10px;
  }
  .container{
      width: 100%;
      padding: 10px;
  }
  .review{
    grid-template-columns: repeat(2, 1fr);
    margin: 0 auto;
  }
  #review .btn{
      width: 80%;
      margin-left: 10%;
  }
  .user-info{
    gap: 10px;
  }
  .user-info p{
    width: 100%;
    font-size: 13px;
    margin: 0 auto;
  }
  .user{
    width: 30px;
    height: 30px;
  }
  .feedback p{
    margin-bottom: -5px;
  }
  #review .feedback {
    width: 160px;
    padding: 10px;
  }
  .dots {
      left:28%;
  }
}

.star-filled {
  color: gold; /* Color of filled stars */
  font-size: 25px;
}

.star-unfilled {
  color: #ccc; /* Color of unfilled stars */
  font-size: 25px;
}

fieldset {
  margin-inline-start: 2px;
  margin-inline-end: 2px;
  padding-block-start: 0.35em;
  padding-inline-start: 0.75em;
  padding-inline-end: 0.75em;
  padding-block-end: 0.625em;
  min-inline-size: min-content;
  border-width: 2px;
  border-style: groove;
  border-color: rgb(192, 192, 192);
  border-image: initial;
  display:flex; 
  gap:10px; 
  font-size:20px
}

.show-more-button{
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  height: 3rem;
  line-height: 2.5rem;
  padding: 0 3rem;
  border: 0;
  border-radius: 3rem;
  background-image: radial-gradient(#2873ad, #052434);
  background-size: 300% 100%;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255, 227, 14, 0.5);
}
.show-more-button:hover:enabled{
  color: #000;
  background-size: 100% 100%;
  transform: translateY(-0.15em);
}

/***********************Custom Scrollbar**********************************/
/* Track */
::-webkit-scrollbar {
  width: 10px; 
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-image: radial-gradient(#320643, #140534);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ff9900; 
}

/* Track */
::-webkit-scrollbar-track {
  background: #d1e5ff;
}

/* Corner */
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}
