@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Condiment&display=swap');

* {
  margin: 0;
  padding: 0;
  /*background: #325c74;*/
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 8vh;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  /*background: rgba(0,0,205,0.9);*/
}

nav,
nav .logo,
nav .logo h4,
nav .nav-links,
nav .nav-links li,
nav .nav-links a,
nav img {
  /*background-color: #0000cd; #325c74;*/
  
  -webkit-animation: bgcolor 60s infinite;
    animation: bgcolor 40s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    z-index: 1;
}

.logo {
  color: rgb(226, 226, 226);
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 3.6rem;
  /*background-color: #325c74;*/
  font-family: 'Condiment', cursive;
}

.nav-links {
  display: flex;
  justify-content: space-around;
  width: 45%;
  padding: 1rem 1rem;
}

.discord:link{
  color:yellow;
  padding: 1rem 1rem;
  border: 0.2rem solid white;
}


/*.discord{
  position: absolute;
  z-index:2;
  right: 15rem;
  top: 12px;
  color:yellow;
  padding: 0.5rem 0.8rem;
  background-color: transparent;
  text-decoration: none;
}

.discord:hover {
  
    margin: auto;
    border: 8px solid;
    border-image: linear-gradient(45deg, gold, deeppink) 1;
    clip-path: inset(0px round 10px);
    animation: huerotate 6s infinite linear;
    filter: hue-rotate(360deg);
}

@keyframes huerotate {
  0% {
      filter: hue-rotate(0deg);
  }
  100% {
      filter: hue-rorate(360deg);
  }
}*/

/*----- button 6 -----*/


.nav-links li {
  list-style: none;
}

.nav-links a {
  color: rgb(226, 226, 226);
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
}

.nav-links a:hover{
  color:yellow;
  top: -5px;
}

.discord:hover{
  padding: 1rem 1rem;
  border: 0.4rem solid yellow;
  box-shadow: 0 0.5rem 0.5rem -0.4rem yellow;
  transform: translateY(-2px);
}


.burger {
  display: none;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: rgb(226, 226, 226);
  margin: 5px;
  transition: all 0.3s ease;
}


body {
  margin: 0;
  /*font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;*/
  font-family: "Josefin Sans", sans-serif;
  font-size: 24px;
  /*background-color: #0000cd; #0374C0;*/
  line-height: 1.6;
   /* changes color of background on a rotating basis*/
  -webkit-animation: bgcolor 60s infinite;
    animation: bgcolor 40s infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@keyframes bgcolor {
  0% {
      background-color: #4166f5
  }

  30% {
      background-color: #325c74
  }

  60% {
      background-color: #191970
  }

  90% {
      background-color: #4f86f7
  }

  100% {
      background-color: #0000cd
  }
}

/* end of color rotation */

#showcase {
  background: url("./images/surfing-with-sharks.jpg")no-repeat center/cover;
  background-size:100% 160vh;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

#showcase-text {
  position: absolute;
  top: 31rem;
  left: 50%;
  align-text:center;
  transform: translate(-50%, -50%); 
  /*background-color: #000000; */
  color: #fff; 
  /*padding: 10px 20px; */
  word-spacing: 1rem;
  font-weight: bold;
  font-family: "Josefin Sans", sans-serif;
  font-size: 8.1rem;
  letter-spacing: .1rem;
   text-shadow: 
      -2px -2px 2px #111, 
      3px 3px 2px #363636;
}

.showcast-text-class{
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.showcase-text-class{
    list-style:none;
}
/*ul.showcase-text-class{
    list-style-image: url('./images/sharkpoint.png');
    display: inline-block;
    height: 1px;
    width: 2px;
}*/

.showcase-text-class li::before {
  list-style:none;
  content: '';
  list-style-image: url('./images/sharkpoint.png');
  display: inline-block;
  height: 4rem;
  width: 5rem;
  background-image: url('./images/sharkpoint.png');
  background-size: cover;
  padding-left: -2em;
}

/*  scroll arrow function */
.arrows {
  width: 60px;
  height: 72px;
  position: absolute;
  left: 50%;
  margin-left: -30px;
  bottom: 20px;
}

.arrows path {
  stroke: #000000;/*#2994D1;*/
  fill: transparent;
  stroke-width: 3px;  
  animation: arrow 2s infinite;
  -webkit-animation: arrow 2s infinite; 
}

@keyframes arrow
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

@-webkit-keyframes arrow /*Safari and Chrome*/
{
0% {opacity:0}
40% {opacity:1}
80% {opacity:0}
100% {opacity:0}
}

.arrows path.a1 {
  animation-delay:-1s;
  -webkit-animation-delay:-1s; /* Safari 和 Chrome */
}

.arrows path.a2 {
  animation-delay:-0.5s;
  -webkit-animation-delay:-0.5s; /* Safari 和 Chrome */
}

.arrows path.a3 { 
  animation-delay:0s;
  -webkit-animation-delay:0s; /* Safari 和 Chrome */
}

/*  end scroll arrows*/

#about{
  color: #ffffff;
  padding: 20px;
  margin: auto;
}

#about h2,
#about .words,
#about .imgrow{
  text-align: center;
  margin: auto;
}

#lore,
#lore .words{
  color: #ffffff;
  font-weight: 400;
  padding: 20px 0px;
  /*background: linear-gradient(rgba(0,0,0,0.9),transparent),url(images/water.jpg);*/
  text-align: center;
  /*margin: auto;*/
  position: relative;
}

#lore::before {
  content: "";
  background: url(./images/water.jpg);
  opacity: 0.3;
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
}

#lore h3{
  margin: auto;
  width: 40%;
  border-radius: 50%;
  background-color: #0374C0;
  padding: 1rem;
}

#lore p{
  padding: 2.5rem 2.5rem;
  width: 80%;
  margin: auto;
  border-radius: 10%;
  background-color: #0374C0;
}

#roadmap{
  color: #ffffff;
  padding: 0 2rem;
  padding-top: 3rem;
  /*margin-top: 3rem;*/
  text-align: center;
  background: linear-gradient(rgba(0,0,0,0.5),transparent),url(images/sidesand_2.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
}

/* TimeLine Component */
.containert {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  /*background-color: #111;*/
}
.timeline {
  width: 80%;
  height: auto;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline ul {
  list-style: none;
}
.timeline ul li {
  padding: 20px;
  background-color: #1e1f22;
  color: white;
  border-radius: 10px;
  margin-bottom: 20px;
}
.timeline ul li:last-child {
  margin-bottom: 0;
}
.timeline-content h1 {
  font-weight: 500;
  font-size: 25px;
  line-height: 30px;
  margin-bottom: 10px;
}
.timeline-content p {
  font-size: 16px;
  line-height: 30px;
  font-weight: 300;
}
.timeline-content .date {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
/* End Timeline Component */

#team{
  color: #ffffff;
  padding-top: 3rem;
  text-align: center;
}

hr.blue{
  width:30%;
  margin:auto;
  background-color: #8ed1fc;
  height:3px;
  border:none;
  border-radius: 25%;
}

hr.blue1{
  width:15%;
  margin:auto;
  background-color: #8ed1fc;
  height:3px;
  border:none;
  border-radius: 25%;
}

#about .words{
  border-radius: 10px;
  width:80%;
  padding:10px 10%;
}

/*#lore .words{
  border-radius: 10px;
  width:80%;
  padding:10px 10%;
}*/


/*#roadmap .words{
  border-radius: 10px;
}*/

.team-box{
  padding: 3rem;
  /*min-height: 30vh;*/
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  /*background-image: url("./images/sunsetbeach.jpg");
  background-size:cover;*/
}

#team .words h3{
  margin: auto;
  width: 30%;
  /*border-radius: 50%;
  background-color: #0374C0;*/
  padding: 1rem;
}

.members {
  
  /*margin: auto;*/
  display: flex;
/*min-height: 50vh;*/
  align-items: center;
  flex-wrap: wrap;
}

.member {
  text-align: center;
  justify-content:center;
    flex: 1 1 15rem;
    /*min-width: 20vw;
    width: 40vw;*/
    margin: 2rem 5rem;
    /*border-style: solid;
    border-radius: 20%;*/
    padding: 1rem;
    /*background: #02568e;*/
}

.team-box .members .member img{
  height: 17rem;
  width: 17rem;
}

.member p{
  font-size: 1.9rem;
}

#team .words{
  border-radius: 10px;
}

.imgrow{
  display:flex;
}


.roadmap-box{
  padding: 3rem;
  min-height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

#roadmap-box h3 {
  text-align:center;
  background-color: #0374C0;
}
roadmap-box hr{
  width:15%;
  margin:auto;
  background-color: #000;
  height:3px;
  border:none;
  border-radius: 25%;
  padding-bottom: 10px;
}

.cards {
  width: 90%;
  margin: auto;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.card {
  text-align: center;
    flex: 1 1 15rem;
    /*min-width: 20vw;
    width: 40vw;*/
    margin: 2rem 5rem;
    border-style: solid;
    border-radius: 10%;
    padding: 2rem 2.5rem;
    background: #02568e;
}

.card h3{
  padding: 1rem 0;
  text-align:center;
}

.surfer-list{
  list-style: none;
  padding: 0;
  margin: 0;
}

.surfer-list li:before {
  content: '~ ';
  display: inline-block;
  height: 1rem;
  width: 2rem;
  /*background-image: url('./images/surfershadow.png');
  background-size: cover;
  padding-left: -2em;*/
}

/*.surfer{
  list-style-image: url('./images/surfer.png');
  height: 2rem;
  padding-left: 0;
}*/

/*.card h3{
  padding: 1rem;
  background: #03578f;
}*/

.card hr{
  margin-bottom: 2rem;
}

#vision{
  color: #ffffff;
  font-weight: bold;
  font-size: 3.6rem;
  margin: auto;
  text-align:center;
  padding: 1rem;
}

#holder-benefits{
  /*background-image: url("./images/holder-benefits.png");
  background-size:stretch;
  background-repeat: no-repeat;
  background-position:center;
  min-height: 110vh;*/
  background-position: center;
}

/* Accordion  */
/* Sets the width for the accordion. Sets the margin to 90px on the top and bottom and auto to the left and right */
.accordion-body{
  /*background-color:black;*/
  color:white;
  margin:0;
  padding:0;
}
.accordion {
  width: 60%;
  margin: 90px auto;
  color: white;
  /*background-color: black;*/
  padding: 45px 45px;
}

.accordion h1{
  text-align: center;
}

.accordion .container {
  position: relative;
  margin: 10px 10px;
}

/* Positions the labels relative to the .container. Adds padding to the top and bottom and increases font size. Also makes its cursor a pointer */

.accordion .label {
  position: relative;
  padding: 10px 10px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}
/* Positions the plus sign 5px from the right. Centers it using the transform property. */

.accordion .label::before {
  content: '+';
  color: white;
  position: absolute;
  top: 50%;
  right: -5px;
  font-size: 30px;
  transform: translateY(-50%);
}

.accordion .label:hover {
  color: #8ed1fc;
}
/* Hides the content (height: 0), decreases font size, justifies text and adds transition */

.accordion .content {
  position: relative;
  /*background-color: #000;*/
  height: 0;
  font-size: 20px;
  text-align: justify;
  width: 100%;
  overflow: hidden;
  transition: 0.5s;
}

/* Adds a horizontal line between the contents */

.accordion hr {
  width: 100;
  margin-left: 0;
  border: 1px solid grey;
}
/* Unhides the content part when active. Sets the height */

.accordion .container.active .content {
  height: fit-content;
  width: 90%;
  padding: 0 30px;
}

/* Changes from plus sign to negative sign once active */

.accordion .container.active .label::before {
  content: '-';
  font-size: 30px;
}

.accordion a:visited,a:link{
  color: white;
}

.accordion a:hover{
  color:yellow;
}
/*  end Accordion  */

img {
  display: block;
  margin: auto;
}

#summary {
  display: absolute;
  margin: 0 auto;
  width: 60%;
  padding: 20px 20px;
  background: linear-gradient(#f0f8ff, #f0ffff); /*#fffafa, #f5fffa);*/
  border: 2px dotted lightblue;
}

#info {
  display: block;
}

.info-box {
  display: absolute;
  margin: 0 auto;
  background: #191970;
  font-weight: bold;
  color: #fff;
  align-items: center;
  text-align: center;
  font-size: 32px;
  padding: 20px 0;
}

footer {
  display: absolute;
  margin: 0 auto;
  background: #000;
  color: #fff;
  align-items: center;
  text-align: center;
  padding: 10px 0;
}

/* media queries */

@media screen and (max-width: 1500px) {
  .nav-links{
    width: 40%;
  }
}


@media screen and (max-width: 1224px) {
  body {
    overflow-x: hidden;
  }

  .nav-links {
    position: fixed;
    right: 0px;
    height: 62vh;
    top: 8vh;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    transform: translateX(100%);
    transition: transform 0.5s ease-in;
  }

  .nav-links li {
    opacity: 0;
  }

  .nav-links a{
    font-size: 3rem;
  }

  .discord:link{
    font-size: 1.4rem;
  }

#showcase{
  height:80vh;
}

  .burger {
    display: block;
    cursor: pointer;
  }

  #about .words{
    width: 100%;
  }

#lore .words p{
  width: 100%;
}

#roadmap{
  width: 100%;
  padding: 0 0;
  padding-top: 3rem;
  /*background: #02568e;*/
}
.roadmap-box{
  width: 100%;
  /*display: inline;
  justify-content: center;
  align-items: center;*/
  padding: 0;
}
.cards{
  width: 100%;
  font-size: 2.8rem;
  display: inline;
  align-items: center;
  justify-content: center;
}
.card h3{
  padding: 1rem;
  width: 50%;
  margin: auto;
  text-align: center;
}
.card hr{
  margin-bottom: 2.5rem;
}
.card {
  /*width: auto;*/
  /*border-style: none;*/
  padding: 1rem 1rem;
}


.accordion-body,
.accordion-body .accordion,
.container,
.container .label,
.container .label .content{
  width: 100%;
}
#holder-benefits{
  min-height: 50vh;
  width: 100%;
}
#showcase-text{
      display:none;
  }
}

.nav-active {
  transform: translateX(0%);
}

@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media only screen and (min-width: 768px) {
  .timeline:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: gray;
  }
  .timeline ul li {
    width: 50%;
    position: relative;
    margin-bottom: 50px;
  }
  .timeline ul li:nth-child(odd) {
    float: left;
    clear: right;
    transform: translateX(-30px);
    border-radius: 20px 0px 20px 20px;
  }
  .timeline ul li:nth-child(even) {
    float: right;
    clear: left;
    transform: translateX(30px);
    border-radius: 0px 20px 20px 20px;
  }
  .timeline ul li::before {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background-color: gray;
    top: 0px;
  }
  .timeline ul li:nth-child(odd)::before {
    transform: translate(50%, -50%);
    right: -30px;
  }
  .timeline ul li:nth-child(even)::before {
    transform: translate(-50%, -50%);
    left: -30px;
  }
  .timeline-content .date {
    position: absolute;
    top: -30px;
  }
  .timeline ul li:hover::before {
    background-color: aqua;
  }
}
@media only screen and (max-width: 768px) {
  #showcase-text{
      display:none;
  }
}

@media (orientation: landscape){
  #showcase{
    height: 100vh;
  }
}