/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Poppins:wght@400;500&display=swap&family=Audiowide&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

/*=============== FONTS ==================*/
@font-face {
  font-family: 'Balistany';
  src: url('/fonts/Balistany.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Billistone';
  src: url('/fonts/Billistone.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Dream\ Angel';
  src: url('/fonts/Dream\ Angel.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Freeflow';
  src: url('/fonts/Freeflow.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Neoneon';
  src: url('/fonts/Neoneon.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AceSans';
  src: url('/fonts/AceSans-FREE.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Handestonie';
  src: url('/fonts/Handestonie\ .otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Funky\ Signature';
  src: url('/fonts/Funky\ Signature.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'AmandaVinola';
  src: url('/fonts/AmandaVinola.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Butterland';
  src: url('/fonts/Butterland.woff') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Bastogne';
  src: url('/fonts/Bastogne.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'CharlesSebastian';
  src: url('/fonts/CharlesSebastian.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Barques';
  src: url('/fonts/Barques-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Foundry-Font';
  src: url('/fonts/Foundry-Font\ Pack.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Cosmodrome';
  src: url('/fonts/Cosmodrome\ Monoline.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Geraldyne';
  src: url('/fonts/Geraldyne\ Demo.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Rocket';
  src: url('/fonts/Rocket\ Clouds.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'GoldenHopes';
  src: url('/fonts/GoldenHopes_PERSONAL_USE_ONLY.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Higher';
  src: url('/fonts/Higher\ Monday.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Acoustica';
  src: url('/fonts/Acoustica.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Adelya';
  src: url('/fonts/Adelya.otf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --title-color: hsl(0, 0%, 95%);
  --text-color: hsl(0, 0%, 70%);
  --text-color-light: hsl(0, 0%, 60%);
  --body-color: hsl(0, 0%, 0%);
  --container-color: hsl(0, 0%, 8%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Montserrat", sans-serif;
  /* --third-font: "Audiowide", sans-serif; */
  --third-font: "Montserrat", sans-serif;
  --biggest-font-size: 2.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}


/*========== Responsive typography ==========*/
@media screen and (min-width: 1152px) {
  :root {
    --biggest-font-size: 5.5rem;
    --h1-font-size: 2.4rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  /* Scrollbar width */
::-webkit-scrollbar {
  width: 5px; /* Adjust the width as needed */
}

/* Scrollbar track */
::-webkit-scrollbar-track {
  background: #021b37; /* Adjust the color as needed */
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #0077ff; /* Adjust the color as needed */
  border-radius: 15px; /* Optional: makes the scrollbar thumb rounded */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
  background: #0077ff; /* Adjust the hover color as needed */
}

  overflow-x: hidden;

  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  color: var(--text-color);
}

body {
background: black;
}

button,
input {
  outline: none;
  border: none;
}

h1, h3, h4 {
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

h2{
  color: var(--title-color);
  font-family: var(--third-font);
  font-weight: var(--font-semi-bold);
}

ul {
  list-style: none;
  font-weight: var(--font-semi-bold);
}

a {
  text-decoration: none;
}

p{
  font-size: 1.3rem;
  text-align: center;
  color: white;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 0rem 0rem;
}

.section__title {
  text-align: center;
  font-size: var(--h1-font-size);
  margin-bottom: 1rem;
}

.main {
  overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
header{
  position: relative;
  width: 100%;
  background-color: transparent;
  top: 0;
  left: 0;
  z-index: var(--z-fixed);
}

nav{
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
}

.sale{
  height: 3rem;
  justify-content: center;
}

.sale p{
  color: rgb(47, 255, 0);
  font-family: var(--second-font);
  font-size: 1rem;
  font-weight: bolder;
}

.fea{
  border-top: 2px solid rgb(66, 65, 65);
  border-bottom: 2px solid rgb(66, 65, 65);
  height: 3rem;
  justify-content: center;
}

.fea p{
  font-size: 0.8rem;
  padding-left: 2%;
}

.fea h5{
  font-weight: 100;
  font-size: var(--small-font-size);
  padding-left: .5%;
  color: white;
}

.nav__logo{
  color: var(--title-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  width: 20%;
  padding-left: 5%;
}

.nav__logo img{
  width: 100%;
  height: 100%;
}

.nav__item P{
  font-size: 1.5rem;
  padding-left: 2%;
}

.nav__toggle,
.nav__close{
  display: flex;
  font-size: 1.25rem;
  color: var(--title-color);
  cursor: pointer;
}

/* Navigation for mobile devices */
@media screen and (max-width: 1023px) {
  nav{
    padding-left: 1rem;
    padding-right: 1.5rem;
  }

  .nav__menu{
    position: fixed;
    top: -100%;
    left: 0;
    background-color: hsla(0, 0%, 0%, .3);
    width: 100%;
    padding-block: 4rem;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px); /* For safari */
    transition: top .4s;
  }
}

.nav__list{
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: var(--small-font-size);
  row-gap: 2.5rem;
}

.nav__link{
  position: relative;
  color: var(--title-color);
}

.nav__link::after{
  content: '';
  width: 0;
  height: 2px;
  background-color: var(--title-color);
  position: absolute;
  left: 0;
  bottom: -.5rem;
  transition: width .3s;
}

.nav__link:hover::after{
  width: 30px;
}

.nav__close{
  position: absolute;
  top: 1rem;
  right: 1.5rem;
}

/* Show menu */
.show-menu{
  top: 0%;
}

/* Add blur to header */
.blur-header::after{
  content: '';
  position: absolute;
  width: 1000%;
  height: 100%;
  background-color: hsla(0, 0%, 0%, .3);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  top: 0;
  left: 0;
  z-index: -1
}

/*=============== BUTTON ===============*/
.button{
  background-color: hsla(0, 0%, 100%, .2);
  padding: 1rem 1.5rem;
  color: var(--title-color);
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
}

.button i{
  font-size: 1.25rem;
  transition: transform .4s;
  font-weight: initial;
}

.button:hover i{
  transform: translateX(1rem);
}

/*=============== JOIN ===============*/
.join__container{
  margin-top: 2%;
  row-gap: 3rem;
  padding-bottom: 2.5rem;
}

.join__data{
  text-align: center;
}

.font-options{
  height: 20rem;
  overflow: scroll;
  overflow-x: hidden;
  padding-right: 5%;
}

.join__description{
  margin-bottom: .5rem;
}

.join__form{
  display: grid;
  row-gap: 1rem;
}

.join__input{
  padding: 1.25rem 1rem;
  background-color: var(--container-color);
}

.join__button{
  cursor: pointer;
}

.join__image{
  position: relative;
  justify-self: center;
  overflow: hidden;
  height: 100%;
  transition: transform .4s;
}

.join__img{
  width: 100%;
  transition: transform .4s;
  height: 100%;
}

.join__shadow{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
              hsla(0, 0%, 0%, 0) 10%,
              hsl(0, 0%, 0%) 175%);
}

/*=============== FORM ================*/
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure it's above other elements */
}

.Checkout{
  width: 300px;
  height: 410px;
  background-color: hsla(0, 0%, 0%, .1);
  border: 1px solid white;
  border-radius: 10px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  padding: 40px 30px;
  display: none;
  flex-direction: column;
  -webkit-box-shadow: 0px 1px 27px -3px rgba(0,0,0,0.87); 
  box-shadow: 0px 1px 27px -3px rgba(0,0,0,0.87);
  z-index: 1000;
}

.payTitle{
  font-size: 20px;
  color: rgb(158, 156, 156);
}

label{
  font-size: 14px;
  font-weight: 300;
  margin-top: 15px;
}

.payInput{
  padding: 5px;
  margin: 1px 0px;
  border: none;
  background-color: transparent;
  border-bottom: 1px solid gray;
}

.payInput::placeholder{
  color: rgb(163, 163, 163);
}

.payButton{
  position: absolute;
  height: 40px;
  bottom: 0px;
  width: 100%;
  left: 0;
  -webkit-box-shadow: 0px 1px 27px -3px rgba(0,0,0,0.87); 
  box-shadow: 0px 1px 27px -3px rgba(0,0,0,0.87);
  background-color: rgb(0, 177, 0);
  color: white;
  border: none;
  cursor: pointer;
  border-bottom-left-radius: 10px ;
  border-bottom-right-radius: 10px ;
}

.close{
  font-size: x-large;
  position: absolute;
  width: 30px;
  background-color: transparent;
  color: white;
  top: 10px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 2px;
  z-index: 1001;
}

/*=============== FOOTER ===============*/
.footer{
  padding-block: 2.5rem;
  background-color: hsla(0, 0%, 0%, .2);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* For safari */
}

.footer__content{
  row-gap: 3.5rem;
}

.footer__logo{
  display: inline-block;
  color: var(--title-color);
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  margin-bottom: 1rem;
}

.footer__data{
  grid-template-columns: repeat(2, max-content);
  gap: 2.5rem 3.5rem;
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: 1rem;
}

.footer__links{
  display: grid;
  row-gap: .75rem;
}

.footer__link{
  color: var(--text-color-light);
  transition: color .4s;
}

.footer__link:hover{
  color: var(--title-color);
}

.footer__group,
.footer__social{
  display: flex;
}

.footer__group{
  margin-top: 5rem;
  flex-direction: column;
  align-items: center;
  row-gap: 2rem;
}

.footer__social{
  column-gap: 1.5rem;
}

.footer__social-link{
  color: var(--text-color);
  font-size: 1.25rem;
  transition: color .4s, transform .4s;
}

.footer__social-link:hover{
  color: var(--title-color);
  transform: translateY(-.25rem);
}

.footer__copy{
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  text-align: center;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: 0.6rem;
  border-radius: .5rem;
  background-color: hsl(0, 0%, 10%);
}

::-webkit-scrollbar-thumb{
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 20%);
}

::-webkit-scrollbar-thumb:hover{
  background-color: hsl(0, 0%, 30%);
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  right: 1rem;
  bottom: -50%;
  background-color: hsla(0, 0%, 100%, .1);
  padding: 6px;
  display: inline-flex;
  color: var(--title-color);
  font-size: 1.25rem;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); /* for Safari */
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover{
  transform: translateY(-.25rem);
}

/* Show Scroll Up */
.show-scroll{
  bottom: 3rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 340px) {
  .container{
    margin-inline: 1rem;
  }

  .footer__data{
    grid-template-columns: max-content;
  }
}

/* For mobile devices */
@media screen and (min-width: 341px){
  .join__container{
    grid-template-columns: 330px;
    margin-top: 2%;
    justify-content: center;
  }

  .join__img{
    width: 100%;
  }

  .neon-text{
    top: 20%;
  }

  .Checkout{
    transform: translate(0%, 10%);
    height: 480px;
  }

  .payInput{
    width: 100%;
    padding-bottom: 10px;
  }

  .join__data{
    margin-top: 1%;
    /* height: 20rem;
    overflow: scroll;
    overflow-x: hidden;
    padding-right: 5%; */
  }

  .reviews-header h2{
    text-align: center;
  }

  .reviews-summary {
    display: grid;
    grid-template-columns: 300px;
    justify-content: center;
  }

  .summary-left, .summary-right {
    height: 8rem;
}

.star-rating {
  justify-content: center;
}

.summary-left .stars{
  margin-left: 28%;
}

.summary-left p{
  font-size: 15px;
  text-align: center;
}

.review-images{
  margin-top: 5%;
  display: grid;
  grid-template-columns: repeat(3, 5.5rem);
  padding-left: 20px;
}

.review-images img {
  width: 80px;
  height: 80px;
  margin:5px 6%;
}

.write-review button {
  border: 2px solid #fbcd0a;
  background-color: transparent;
  padding: 15px 50px;
  cursor: pointer;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
  margin-left: 18%;
  margin-top: 10%;
}

.review-card .star-rating .stars{
  font-size:large;
}

.review-card {
  width: calc(90%);
}

.review-card p {
  font-size: 12px;
}

}

/* For medium devices */
@media screen and (min-width: 576px){
  .nav__logo{
    width: 15%;
  }

  .join__container{
    grid-template-columns: 450px;
    justify-content: center;
    margin-top: 2%;
  }

  .neon-text{
    top: 20%;
  }

  .color-options {
    grid-template-columns: repeat(12, 2.5rem);
    justify-content: left;
  }

  .preview__image{
    width: 60%;
  }

  .Checkout{
    width: 550px;
  }

  .reviews-header h2{
    text-align: left;
  }

  .reviews-summary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .summary-left {
    flex: 0 0 15%;
    text-align: left;
  }

  .summary-left, .summary-right {
    border-right: 3px solid #888;
    height: 8rem;
}

.summary-left .stars{
  margin-left: 0%;
}

.summary-left p{
  font-size: 15px;
  text-align: left;
}

.review-card {
  width: calc(45%);
}

  .footer__data{
    grid-template-columns: repeat(3,max-content);
  }

}

  @media screen and (min-width: 768px){
    .fea p{
      font-size: 2rem;
    }

    .join__container{
      grid-template-columns: 600px;
      align-items: center;
      margin-top: 5%;
    }

    .join__img{
      width: 100%;
    }

    .neon-text{
      top: 20%;
    }

    .preview__image{
      width: 60%;
    }

    .join__data{
      margin-top: 1%;
    }

    .section__title{
      text-align: center;
    }

    .review-card {
      width: calc(29% - 15px);
    }

    .review-card .star-rating .stars{
      font-size: x-large;
    }

    .review-card p {
      font-size: 12px;
    }

    .footer__content{
      grid-template-columns: repeat(2, max-content);
      justify-content: space-between;
    }

    .footer__group{
      flex-direction: row;
      justify-content: space-between;
    }

    .footer__copy{
      order: -1;
    }

}

/* For large devices */
@media screen and (min-width: 1023px){
  .nav__logo{
    width: 10%;
  }

  nav{
    padding-left: 1%;
    padding-right: 2%;
  }

  .nav__close,
  .nav__toggle{
    display: none;
  }

  .nav__list{
    flex-direction: row;
    column-gap: 2rem;
  }

  .join__container{
    grid-template-columns: 600px 350px;
    margin-top: 0%;
  }

  .join__image{
    height: 80%;
  }

  .join__img{
    width: 100%;
  }

  .preview__image{
    width: 40%;
  }

  .neon-text {
    top: 20%;
  }

  .join__data{
    margin-top: 25%;
  }

  .Checkout{
    top: 500px;
    transform: translate(0%, -50%);
  }

  .reviews-summary {
    display: flex;
    justify-content: left;
  }

  .review-images{
    margin-top: 0%;
    display: grid;
    grid-template-columns: repeat(3, 4rem);
    padding-left: 20px;
  }

.review-images img {
  width: 60px;
  height: 60px;
  margin: 0 1px;
}

.write-review button {
  margin-left: 30%;
}

  .footer__data{
    grid-template-columns: repeat(4, max-content);
    column-gap: 4.5rem;
  }

}

@media screen and (min-width: 1152px){

  p{
    text-align: left;
  }

  .container{
    margin-inline: auto;
  }

  .section__title{
    text-align: left;
  }

  nav{
    height: calc(var(--header-height) + 1.5rem);
  }

  .blur-header::after{
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
  }


  .button{
    column-gap: 1.5rem;
  }
  
  .join__container{
    grid-template-columns: 600px 530px;
    column-gap: 1rem;
    padding-block: 1rem 5rem;
    margin-top: 0%;
  }

  .neon-text {
    top: 20%;
  }

  .Checkout{
    width: 700px;
  }

  .form-grid{
    display: grid;
    grid-template-columns: 300px 300px;
    column-gap: 40px;
    row-gap: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
  }

  .payInput{
    width: 100%;
  }

  .join__data{
    position: relative;
    margin-top: 0%;
  }

  .join__image{
    position: relative;
    justify-self: center;
    overflow: hidden;
    height: 50%;
    transition: transform .4s;
    top: -25%;
  }

  .sticky .join__image {
    position: sticky;
    top: 0%;
  }

  .join__img{
    width: 100%;
  }

  .join__description{
    margin-bottom: 1rem;
  }

  .footer{
    padding-block: 5rem 3rem;
  }

  .footer__title{
    margin-bottom: 1.5rem;
  }

  .footer__group{
    margin-top: 7rem;
  }

  .footer__social{
    column-gap: 2rem;
  }

  .footer__social-link{
    font-size: 1.5rem;
  }

  .scrollup{
    right: 3rem;
  }

}

@media screen and (min-width: 1450px) {
  .join__container{
    grid-template-columns: 800px 550px;
    column-gap: 0.1rem;
  } 
  
  .join__image{
    position: relative;
    justify-self: center;
    overflow: hidden;
    height: 50%;
    transition: transform .4s;
    top: -25%;
  }

  .join__data{
    margin-top: 0%;
  }
}


