/* ---- deletes hyperlink features ---- */
  a:link { text-decoration: none; }
  a:visited { text-decoration: none; }
  a:hover { text-decoration: none; }
  a:active { text-decoration: none; }

/* ---- applied to all content ---- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif ;
  font-family: 'Roboto', sans-serif ;
  font-family: 'Aquire', sans-serif ;
}

html {
  scroll-behavior: smooth;
}

/* ---- particles.js container ---- */
.particles-js-canvas-el {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

/* ---- applied to each section ---- */
section {
  position: relative;
}

/* ---- conteiner with all sections ---- */
#scroll-area {
  overflow: scroll;
  scroll-snap-type: y mandatory;
}

/* -------------- first (main) section -------------- */
.section-main {
  background-position: center;
  background-image: url(pictures/background-dubai2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  min-height: 100vh;

}

/* ---- navigation buttons container ---- */
#btns-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  height: fit-content;
}

/* ---- navigation buttons styling ---- */
.scroll-btn {
  padding: 20px;
  display: block;
  margin-top: 1.7em;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 21px;
  z-index: 1;
}

/* ---- navigation buttons color change ---- */
.scroll-btn:hover {
  color: #FFB700;
  transition: color 0,3 linear;
}


/* ---- logo styling ---- */
.name-logo {
  font-family: 'Aquire', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 4em;
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 120px;
  margin-bottom: 30px;
  color: #FFB700;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #FFFFFF;
} 

/* ---- logo + info container ---- */
#main-info {
    position: relative;
}

/* ---- info on main section ---- */
.tagline {
  text-align: center;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: white;
  display: flex;
  justify-content: center;
  align-content: center;
}

/* ---- LLC ---- */
#LLC-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#LLC {
  padding-bottom: 20px;
  text-align: center;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 38px;
  color: #FFB700;
  display: flex;
  justify-content: center;
}

/* -------------- sections -------------- */
#section-1 {
  background-color: #262523;
  color: #ffffff;
  font-size: 2.7em;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  height: fit-content;
  min-height: 100vh;

}

.about-us-txt {
    text-align: center;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 20px;
    line-height: 38px;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-right: 120px;
    padding-left: 120px;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* -------------- section-2-traidin -------------- */
#section-2-trading {
  background-color: #645C59;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  height: fit-content !important;
}

/* sub headers */
.trading-sub-titles {
    text-align: center;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 28px;
    line-height: 38px;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-right: 150px;
    padding-left: 150px;
    padding-top: 40px;
}

/* main text */
.trading-txt { 
    text-align:center;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 38px;
    color: white;
    display: flex;
    justify-content: center;
    align-content: center;
    padding-right: 150px;
    padding-left: 150px;
    padding-top: 10px;
}

/* -------------- carousel -------------- */

/* -------------- section-3-contact -------------- */
#section-3-contact {
  background-color: #262523;
  color: #ffffff;
  font-size: 2.7em;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  /* padding-bottom: 60px; */
  height: fit-content;
  min-height: 100vh;

}

#contact-info {
  padding-top: 60px;
}

.contact-title {
  text-align: center;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  line-height: 38px;
  color: white;
  display: flex;
  justify-content: center;
  align-content: center;
  padding-right: 150px;
  padding-left: 150px;
  padding-top: 30px;
}
.contact-txt {
  text-align:center;
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: white;
  display: flex;
  justify-content: center;
  align-content: center;
  padding-right: 150px;
  padding-left: 150px;
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

/* -------------- go up button -------------- */
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: #FFB700; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 0px; /* Some padding */
  border-radius: 50px; /* Rounded corners */
  font-size: 40px;  /* Increase font size */
  width: 70px;
  height: 70px;
}

#myBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}


/* -------------- responsive design -------------- */

/* -------------- IPhone 8+ -------------- */
@media only screen 
  and (min-width: 376px)
  and (max-width: 414px) {

  /* ---- main section ---- */
  .scroll-btn {
    font-size: 22px;
  }

  .name-logo {
    font-size: 2.5em;
  }

  .tagline {
    font-size: 26px;
  }

  #LLC {
    font-size: 22px;
  }

  /* ---- section-1-about us ---- */
  #section-1 {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .about-us-txt {
    padding-top: 40px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 18px;
  }

  /* ---- section-2-traiding ---- */
  #section-2-trading{
    font-size: 1.8em;
    padding-top: 40px;
  }

  .trading-sub-titles {
    font-size: 26px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .trading-txt {
    font-size: 16px;
    padding-right: 20px;
    padding-left: 20px;
  }

  /* ---- section-3-contact ---- */
  #section-3-contact {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-txt {
    font-size: 18px;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
  }

  #myBtn{
    font-size: 35px;
    height: 60px;
    width: 60px;
  }
}

/* -------------- IPhone 8 -------------- */
@media only screen 
  and (min-width: 321px)
  and (max-width: 375px) {

  /* ---- main section ---- */
  .scroll-btn {
    font-size: 20px;
  }

  .name-logo {
    font-size: 2.2em;
  }

  .tagline {
    font-size: 23px;
  }

  #LLC {
    font-size: 20px;
  }

  /* ---- section-1-about us ---- */
  #section-1 {
    font-size: 1.6em;
    padding-top: 38px;
  }

  .about-us-txt {
    padding-top: 38px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 16px;
  }

  /* ---- section-2-traiding ---- */
  #section-2-trading{
    font-size: 1.6em;
    padding-top: 38px;

  }

  .trading-sub-titles {
    font-size: 24px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .trading-txt {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  /* ---- section-3-contact ---- */
  #section-3-contact {
    font-size: 1.6em;
    padding-top: 38px;
  }

  .contact-title {
    font-size: 26px;
  }

  .contact-txt {
    font-size: 16px;
    padding-right: 20px;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
  }

  #myBtn{
    font-size: 30px;
    height: 55px;
    width: 55px;
  }
}

/* -------------- IPhone SE -------------- */
@media only screen 
  and (max-width: 320px) {

  /* ---- main section ---- */
  .scroll-btn {
    font-size: 17px;
  }

  .name-logo {
    font-size: 1.9em;
  }

  .tagline {
    font-size: 19px;
  }

  #LLC {
    font-size: 17px;
  }

  /* ---- section-1-about us ---- */
  #section-1 {
    font-size: 1.4em;
    padding-top: 34px;
  }

  .about-us-txt {
    padding-top: 34px;
    padding-right: 20px;
    padding-left: 20px;
    font-size: 14px;
  }
  
  /* ---- section-2-traiding ---- */
  #section-2-trading{
    font-size: 1.4em;
    padding-top: 34px;
  }

  .trading-sub-titles {
    font-size: 22px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .trading-txt {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 30px;
  }

  /* ---- section-3-contact ---- */
  #section-3-contact {
    font-size: 1.4em;
    padding-top: 34px;
  }

  .contact-title {
    font-size: 22px;
    padding-top: 20px;
  }

  .contact-txt {
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
    line-height: 24px;
    display: flex;
    flex-direction: column;
  }

  #myBtn{
    font-size: 25px;
    height: 50px;
    width: 50px;
  }
}
