:root {
    font-size: 16px;
    font-family: 'Roboto';
    --text-primary: #b6b6b6;
    --text-secondary: #ececec;
    --bg-primary: #23232e;
    --bg-secondary: #141418;
    --swiper-theme-color:  rgb(99, 216, 99) !important;
}


body{
    color:black;
    background-color: white;    
    margin: 0;
    padding: 0;
}

body::-webkit-scrollbar{
    width: 0.5rem;

}

body::-webkit-scrollbar-track{
    background: #1e1e24;
}

body::-webkit-scrollbar-thumb{
    background: rgb(99, 216, 99);
}

main{
    padding: 5rem;
}

html {
  scroll-behavior: smooth;
}








/* NAVBAR */

.navbar{
  position:fixed;
  z-index: 5;
  background-color: var(--bg-primary);
  width:100%;
  height:4rem;
}

.navbar-nav{
  display:flex;
  margin:0;
  justify-content: end;
  align-items: center;
  gap:50px;
  list-style:none;
  padding-left:5rem;
  padding-right:5rem;
  height:100%;
}

.nav-item{
  height:3rem;
}

.nav-link {
  all:unset;
  display:flex;
  align-items: center;
  height: 100%;
  color: var(--text-primary);
  filter: grayscale(100%) opacity(0.7);
  transition: 600ms;
  cursor:pointer;
}

.nav-link:hover{
  filter: grayscale(0%) opacity(1);
  /* background-color: var(--bg-secondary); */
}

.link-text{
  margin-left: 1rem;
}

.nav-link svg {
  width:2rem;
  fill: rgb(99, 216, 99);
  
}

.logo {
  margin-right:auto;
}

.logo svg{
  transform: rotate(0deg);
  transition: transform 600ms;
}

.nav-link:hover svg {
  transform: rotate(360deg);
}

.scroll-down .navbar {
  transform: translate3d(0, -100%, 0);
  transition: 400ms ease;
}

.scroll-up .navbar {
  transform: translate3d(0, 0, 0);
  transition: 400ms ease;
}


/* END NAVBAR */
















/* HERO */

.hero{
  position:relative;
  z-index: 1;
  background-image: url(/assets/Hero-image.png);
  width:100%;
  height:100vh;
  background-size: cover;
  background-position: center;
}

.hero-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.hero-title{
  text-transform: uppercase;
  font-size:4rem;
  font-weight: 900;
  letter-spacing: 0.1ch ;
  color: white;
  text-align: center;
  max-width: 1000px;
  letter-spacing: 1.5px;
  margin:0;
}

.hero-text{
  font-size: 1.5rem;
  font-weight: 400;
  color:rgb(255, 255, 255);
  
  text-align: center;
  max-width:650px;
}

.hero-text-container{
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-btn{
  all:unset;
  cursor:pointer;
  padding: 1rem 2.5rem;
  background-color: rgb(99, 216, 99);
  border-radius: 0.2rem;
  cursor:pointer;
  transition: filter 500ms ease;
  position:relative;
  font-weight:900;
  filter: grayscale(100%);
  margin-top:1rem;
  display:flex;
  gap: 1rem;
  width:106px;
  transition: width 300ms ease;
}

.hero-btn svg{
  position:absolute;
  width:1rem;
  margin-top:1px;
  margin-left:120px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.hero-btn:hover{
  filter: grayscale(0%);
  width: 120px;
}

.hero-btn:hover svg{
  opacity: 1;
  transform: translateX(0); /* Move arrow into view */
}

.hero-btn-link{
  all:unset;
  margin-top:1.5rem;
}

.hero-overlay{
  position:absolute;
  width:100%;
  height:100%;
  z-index: -1;
  background-color: hwb(0 0% 100% / 0.60);
}



/* END HERO */
















/* SECTION 1 */

.section1{
  display:flex;
  justify-content: center;
}


.section-1-wrapper{
  display:flex;
  padding-top:4rem;
  padding-bottom: 2rem;
  max-width: 1600px;
  align-items: center;
  gap:50px;
}

.section-1-text-container{
  margin-top:-75px;
  width:45vw;
}

.section-1-image-wrapper{
  background-image: url(/assets/info-image.jpg);
  width:45vw;
  height:500px;
  background-position: center;
  background-size:cover;
  border-radius: 1rem;
}

.section-1-text-1{
  max-width: 650px;
  margin:0;
}

.section-1-title{
  font-size: 2.5rem;
}

.section-1-btn{
  margin-top:2rem;
}

/* END SECTION 1 */
















/* SECTION 2 */


.section-2-image-wrapper{
  background-image: url(/assets/info-image2.JPG);
  width:45vw;
  height:500px;
  background-position: center;
  background-size:cover;
  border-radius: 1rem;
}

.section-2-text-container{
  width: 45vw;
}

/* END SECTION 2 */












/* INBETWEEN */

.inbetween{
  width:100%;
  height:550px;
  background-image: url(/assets/cue-tip.jpg);
  background-position:center;
  background-size: cover;
  background-attachment: fixed;
  margin-top: 4rem;
}

/* END INBETWEEN */














/* SECTION 4 */
.section-4{
  padding-bottom:4rem;
  display:flex;
  justify-content: center;
}

.section-4-wrapper{
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.section-4-title{
  font-size: 2.5rem;
  text-align: center;
  margin-top:4rem;
  margin-bottom:1rem;
}

.section-4-text{
  text-align: center;
  width:auto;
  max-width: 600px;
  margin-bottom:2rem;
}


.section-4-btn-link{
  all:unset;
  display:flex;
  justify-content: center;
}

.section-4-btn{
  all:unset;
  cursor:pointer;
  padding: 1rem 2.5rem;
  background-color: rgb(99, 216, 99);
  border-radius: 0.2rem;
  cursor:pointer;
  transition: filter 500ms ease;
  position:relative;
  font-weight:900;
  filter: grayscale(100%);
  margin-top:1rem;
  display:flex;
  gap: 1rem;
  width:130px;
  transition: width 300ms ease;
}

.section-4-btn:hover{
  filter: grayscale(0%);
  width: 120px;
}

.section-4-btn svg{
  position:absolute;
  width:1rem;
  margin-top:1px;
  margin-left:140px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 300ms ease, transform 300ms ease;
}

.section-4-btn:hover{
  width: 150px;
}

.section-4-btn:hover svg{
  margin-left:140px;
  transform: translateX(0);
  opacity:1;
}

/* END SECTION 4 */















/* SWIPER */

/* .swiper{
width: 100%;
height: 100%;
max-width: 1440px;
} */

.swiper-title{
  font-size:2.5rem;
  text-align: center;
}

.swiper-section{
  background-color: #ececec;
  padding-bottom: 5rem;
  padding-top: 2rem;
}


.swiper {
  width: 100%;
  max-width: 1440px;
  position: relative !important;
  padding-bottom:50px !important;
  padding-top: 2rem !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #00000099;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left:2rem;
  padding-right:2rem;
  padding-top:2rem;
  padding-bottom:4rem;
  border-radius:1rem;
  box-sizing: border-box; /* Ensures padding doesn't affect width */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-top{
  display:flex;
  gap:30px;
  margin-bottom:2rem;
  margin-left:1rem;
}

.swiper-top img{
  width: 75px;
}

.name{
  color:white;
  font-size:1.5rem;
  font-weight: 600;
}

.swiper-content{
  color:white;
  font-size:1rem;
  font-weight: 300;
  line-height: 1.3rem;
}

.carmen img{
  width:60px;
}




/* END SWIPER */














/* CONTACT */


.contact{
  display:flex;
  justify-content: center;
  padding-top:10rem;
  padding-bottom:10rem;
}

.contact-wrapper{
  width:100%;
  max-width: 1440px;
  display:flex;
  justify-content: space-around;
  gap:50px;
  padding-left: 5rem;
  padding-right:5rem;
}

.contact-title{
  font-size: 2.5rem;
}

.contact-left{
  margin-top: -50px;
  flex-shrink:0;
}

.contact-left p{
  font-size:1rem;
}

.contact-right{
  display:flex;
  flex-direction: column;
  justify-content: center;
  width:100%;
  max-width: 700px;
  flex-shrink:1;

}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:1rem;
}

.form-title{
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom:1.5rem;
}

.name-field{
  outline:none;
  height:35px;
  font-size: 0.9rem;
  padding-left: 1rem;
  border-radius: 0.3rem;
  border-style: solid;
}

.name-field:focus{
  border-color:rgb(99, 216, 99);
}

.name-field::placeholder{
  font-size: 0.9rem;
  
}
.email-field{
  outline:none;
  border-style: solid;
  border-radius: 0.3rem;
  height:35px;
  font-size: 0.9rem;
  padding-left: 1rem;
}

.email-field:focus{
  border-color:rgb(99, 216, 99);
}

.email-field::placeholder{
  font-size: 0.9rem;
  
}

.phone-field{
  outline:none;
  border-style: solid;
  border-radius: 0.3rem;
  height:35px;
  font-size: 0.9rem;
  padding-left: 1rem;
}

.phone-field:focus{
  border-color:rgb(99, 216, 99);
}

.phone-field::placeholder{
  font-size: 0.9rem;
  
}

.messagebox{
  outline:none;
  border-style: solid;
  border-radius: 0.3rem;
  height:80px;
  padding-left: 1rem;
  font-size: 0.9rem;
  padding-top:0.5rem;
  font-family: 'Roboto';
  max-width: 100%;
  border-width: 2px;;
}

.messagebox:focus{
  border-color:rgb(99, 216, 99);
}

.messagebox:placeholder{
  font-size:0.9rem;
}


.span-style{
  color:rgb(99, 216, 99);
}

.submit-btn{
  font-size: 1rem;
  font-family: 'Roboto';
  font-weight:600;
  background-color: black;
  color: white;
  outline:none;
  padding: 1rem;
  border-radius: 0.3rem;
  transition: background-color 300ms ease;
  transition: color 300ms ease;
  cursor: pointer;
  border-width: 1px;
}

.submit-btn:hover{
  background-color: rgb(99, 216, 99);
  color: black;

}

.contact-text{
  margin-bottom:2rem;
  max-width: 350px;
  line-height: 1.4rem;
}




/* END CONTACT */





/* FOOTER */


.footer{
  width: 100%;
  height:120px;
  background-color:rgb(99, 216, 99);
  display:flex;
  justify-content: center;
  align-items: center;
}

.footer-text{
  text-align: center;
}



/* END FOOTER */










/* BREAKPOINTS */

/* Mobile */
@media (max-width: 480px) {

  /* INBETWEEN */
.inbetween{
  background-position: 20% 50%;
  background-attachment:scroll;
}
/* END INBETWEEN */

/* NAVBAR */

  .navbar-nav{
    justify-content: center;
    gap:3rem;
    margin:0;
  }

  .logo{
    margin:0;
  }

  .link-text{
    display:none;
  }

  /* END NAVBAR */

  /* HERO */

  .hero-title{
    font-size: 2.1rem;
    max-width: 400px;
  }

  .hero-text{
    font-size: 1rem;
    max-width: 250px;
  }

  /* END HERO */

    /* SECTION 1 */

.section-1-wrapper{
  flex-direction: column;
  padding-top:1rem;
}

.section-1-text-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  width:80vw;
  padding:0;
  margin:0;
}

.section-1-title{
  text-align: center;
  font-size:1.7rem;
}

.section-1-text-1{
  text-align: center;
  padding:0;
  max-width: none;
  
}

.section-1-text{
  text-align: center;
  padding:0;
  margin:0;
  margin-top:1rem;
}

.hero-btn-link{
  display:flex;
  justify-content: center;
}

.section-1-image-wrapper{
  width: 80vw;
}

/* END SECTION 1 */

/* SECTION 2 */

.section-2-image-wrapper{
  width: 80vw;
  order:2;
}

.section-2-text-container{
  order:1;
}

.section-2-wrapper{
  padding-top:0rem;
}

/* END SECTION 2 */





/* SECTION 4 */

.section-4-wrapper{
  width: 80vw;
}

.section-4-title{
  font-size: 1.8rem;
}


/* END SECTION 4 */



/* SWIPER */

.swiper-title{
  font-size: 1.8rem;
}

/* END SWIPER */


/* CONTACT */

.contact{
  padding-top:5rem;
  padding-bottom: 5rem;
}

.contact-wrapper{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-title{
  text-align: center;
  font-size: 2rem;
}

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

.contact-text{
  text-align: center;
}

.contact-right{
  justify-content: center;
}


/* END CONTACT */

}

/* Mobile Landscape */
@media (min-width: 481px) and (max-width: 768px) {

/* NAVBAR */

  .link-text{
    display:none;
  }
  .logo{
    margin:0;
  }

  .navbar-nav{
    justify-content: space-evenly;
    margin:0;
  }

  /* END NAVBAR */

  /* HERO */

  .hero-title{
    font-size: 2.5rem;
    max-width: 600px;
  }

  .hero-text{
    font-size: 1rem;
    max-width: 250px;
  }

  /* END HERO */

    /* SECTION 1 */

.section-1-wrapper{
  flex-direction: column;
  padding-top:1rem;
}

.section-1-text-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  width:80vw;
  padding:0;
  margin:0;
}

.section-1-title{
  text-align: center;
  font-size: 1.8rem;
}

.section-1-text-1{
  text-align: center;
  padding:0;
  max-width: none;
  
}

.section-1-text{
  text-align: center;
  padding:0;
  margin:0;
  margin-top:1rem;
}

.hero-btn-link{
  display:flex;
  justify-content: center;
}

.section-1-image-wrapper{
  width: 80vw;
}

/* END SECTION 1 */

/* SECTION 2 */

.section-2-image-wrapper{
  width: 80vw;
  order:2;
}

.section-2-text-container{
  order:1;
}

.section-2-wrapper{
  padding-top:0rem;
}


/* END SECTION 2 */


/* INBETWEEN */
.inbetween{
  background-position: 20% 50%;
}
/* END INBETWEEN */

/* SECTION 4 */

.section-4-wrapper{
  width: 80vw;
}

.section-4-title{
  font-size: 1.8rem;
}


/* END SECTION 4 */

/* SWIPER */

.swiper-title{
  font-size: 1.8rem;
}

/* END SWIPER */




/* CONTACT */

.contact-wrapper{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-title{
  text-align: center;
  font-size: 1.8rem;
}

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

.contact-text{
  text-align: center;
}

.contact-right{
  justify-content: center;
}

/* END CONTACT */

.inbetween {
  background-attachment: scroll; /* Fallback for mobile devices */
}

}

/* Tablet */
@media (min-width: 769px) and (max-width: 992px) {

  /* SECTION 1 */

.section-1-wrapper{
  flex-direction: column;
  padding-top:1rem;
}

.section-1-text-container{
  display:flex;
  flex-direction: column;
  justify-content: center;
  width:80vw;
  padding:0;
  margin:0;
}

.section-1-title{
  text-align: center;
}

.section-1-text-1{
  text-align: center;
  padding:0;
  max-width: none;
  
}

.section-1-text{
  text-align: center;
  padding:0;
  margin:0;
  margin-top:1rem;
}

.hero-btn-link{
  display:flex;
  justify-content: center;
}

.section-1-image-wrapper{
  width: 80vw;
}

/* END SECTION 1 */

/* SECTION 2 */

.section-2-image-wrapper{
  width: 80vw;
  order:2;
}

.section-2-text-container{
  order:1;
}

.section-2-wrapper{
  padding-top:0rem;
}

/* END SECTION 2 */





/* CONTACT */

.contact-wrapper{
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.contact-title{
  text-align: center;
}

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

.contact-text{
  text-align: center;
}

.contact-right{
  justify-content: center;
}

/* END CONTACT */


}





/* Desktop */
@media (min-width: 993px) {
  
}