/*-- style --*/
/* =================================
   ANIMATIONS CODE
   ================================= */
   

/* Spinning Logo Animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.spinning-logo {
  animation-name: spin;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/* Animated Buttons */
.btn-1, .btn-2 {
  transition: all 0.3s ease-out;
  cursor: pointer;
}

.btn-1:hover, .btn-2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Image Hover Zoom Effect */
.zoom-image-container {
  overflow: hidden;
  border-radius: 15px;
  transition: transform 0.4s ease;
}

.zoom-image-container:hover {
    transform: scale(1.05); /* Image halki si zoom hogi */
}

* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Gochi Hand", sans-serif;
  line-height: 1.5;
  letter-spacing: 0.1rem;
  color: var(--clr-1);
  background-color: var(--clr-bg-1);

  overflow-x: hidden;
}

header,
footer,
section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header {
  padding-inline: 2rem;
  padding-block: 1rem;
}
footer {
  padding-inline: 2rem;
  padding-block: 2rem;
}
section {
  padding-inline: 2rem;
  padding-block: 5rem;
}
.container {
  width: 1200px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.description {
  width: 80%;
  text-align: center;
  margin-bottom: 2rem;
}
.description p {
  margin-top: 1rem;
}

/*-- buttons --*/

button {
  font-size: 2rem;
  font-weight: 600;
  min-width: 200px;
  padding: 1rem 2rem;
  border: solid 3px var(--clr-1);
  border-radius: 1rem;
  transition: 300ms;
  cursor: pointer;
  white-space: nowrap;
}
button:hover {
  filter: brightness(50%);
}

.btn-1 {
  color: var(--clr-2);
  background-color: var(--clr-3);
}
.btn-2 {
  color: var(--clr-2);
  background-color: #38B8F4;
}

.btn-flex {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
/*-- header --*/

#header {
  background-color: #38B8F4;
}
#header-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
#header-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
}

/*-- hero --*/

#hero {
  background-image: url(../img/bg/bg-01.html);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#hero-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
#hero-box h2 {
  color: var(--clr-3);
}
#hero-box h1 span {
  font-size: 10rem;

  color: #38B8F4;
}

#hero-box img {
  width: 38vw;
}

/*-- about --*/

#about {
  background-color: white;
}
#about h1 {
  color: var(--clr-3);
}

#about-box {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  margin-bottom: 5rem;
}
#about-box img {
  width: 600px;

  border: solid 3px var(--clr-1);
  border-radius: 1rem;
}
#about-box h3 {
  margin-bottom: 1rem;
}

#about-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 1.33rem));
  gap: 2rem;
}
#about-grid > div {
  border: solid 3px var(--clr-1);
  border-radius: 1rem;
  padding: 2rem;
}
#about-grid > div h3 {
  margin-bottom: 1rem;
}

/*-- community --*/

#community {
  background-color: var(--clr-bg-1);
  background-image: url(../img/bg/bg-01.html);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#community h1 {
  color: #38B8F4;
}
#community .container {
  position: relative;
}
#community-box {
  position: relative;
  width: 100%;

  z-index: 2;
}
#community-box p {
  width: 50%;
}

#community-img-right {
  width: 500px;
  position: absolute;
  bottom: -5rem;
  right: 0;
  z-index: 0;
}

/*-- token --*/

#token {
  background-color: white;
}
#token h1 {
  color: var(--clr-3);
}
#token-grid {
  width: 100%;
  display: grid;
  grid-template-columns: calc(50% - 1rem) calc(50% - 1rem);
  gap: 2rem;
}
#token-grid > div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: solid 4px var(--clr-1);
  border-radius: 2rem;
  padding: 1rem 2rem;
}
#token-grid .ca {
  grid-column-start: 1;
  grid-column-end: 3;
  background-color: #38B8F4;

  overflow: hidden;
  white-space: nowrap;
}

/*-- howToBuy --*/

#howToBuy {
  background-color: var(--clr-bg-1);
}
#howToBuy h1 {
  color: #38B8F4;
}
#howToBuy-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, calc(33.33% - 1.33rem));
  gap: 2rem;
}
#howToBuy-grid > div {
  border: solid 4px var(--clr-1);
  border-radius: 2rem;
  padding: 2rem;
}
#howToBuy-grid > div h3 {
  margin-bottom: 1rem;
}
#howToBuy-grid > div h3 span {
  margin-bottom: 2rem;
  color: var(--clr-3);
}

/*-- footer --*/

#footer {
  background-color: #38B8F4;
}

#footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
#footer-grid h1 {
  color: white;
}
#footer-nav-2 {
  text-align: right;
}
