@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
@import url("https://fonts.googleapis.com/css2?family=VT323&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@400..700&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: AmanSanoj;
  src: url('assets/AmanSanoj-Regular.ttf') format('ttf')
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: AmanSanoj, Poppins, sans-serif;
  background-color: #0e0b16;
  color: #e7dfdd;
}

header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 16px 16px 0;
  overscroll-behavior: contain;
  transform: translateX(-50%);
}
header .navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  justify-items: center;
  align-items: center;
  padding: 16px 32px;
  overflow: visible;
  width: 100%;
  height: 72px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(137deg, rgba(17, 18, 20, 0.75) 4.87%, rgba(12, 13, 15, 0.9) 75.88%);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
header .navbar #logo {
  height: 25px;
  transition: transform 0.2s ease;
  margin-top: 7px;
}
header .navbar #logo:hover {
  transform: scale(1.05);
}
header .navbar .navlink {
  padding: 12px 8px;
  color: #9c9c9d;
  letter-spacing: 0.2px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}
header .navbar .navlink:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  header .navbar .navlink {
    display: none;
  }
}
header .navbar #cta::part(base) {
  transition: all ease 0.3s;
}
header .navbar #cta::part(base):hover, header .navbar #cta::part(base):active, header .navbar #cta::part(base):focus {
  background-color: #35185a;
  border-color: rgba(0, 0, 0, 0);
  color: #e7dfdd;
}
@media (max-width: 768px) {
  header .navbar #cta {
    display: none;
  }
}
header .navbar sl-dropdown {
  display: none;
}
@media (max-width: 768px) {
  header .navbar sl-dropdown {
    display: block;
  }
}
header .navbar sl-dropdown sl-button::part(base) {
  transition: all ease 0.3s;
}
header .navbar sl-dropdown sl-button::part(base):hover, header .navbar sl-dropdown sl-button::part(base):active, header .navbar sl-dropdown sl-button::part(base):focus, header .navbar sl-dropdown sl-button::part(base):focus-visible {
  background-color: #35185a;
  border-color: rgba(0, 0, 0, 0);
  color: #e7dfdd;
}
header .navbar sl-dropdown sl-menu-item::part(base) {
  transition: all ease 0.3s;
}
header .navbar sl-dropdown sl-menu-item::part(base):hover, header .navbar sl-dropdown sl-menu-item::part(base):active, header .navbar sl-dropdown sl-menu-item::part(base):focus, header .navbar sl-dropdown sl-menu-item::part(base):focus-visible {
  background-color: #35185a;
  border-color: rgba(0, 0, 0, 0);
  color: #e7dfdd;
}

#section1 {
  height: 99vh;
  background: url("/assets/images/bg1.svg") no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
}
#section1 h1 {
  font-size: 192px;
  text-align: center;
  margin: auto;
  justify-content: center;
  line-height: 192px;
  font-family: "Pixelify Sans", sans-serif;
}
@media (max-width: 768px) {
  #section1 h1 {
    font-size: 150px;
    line-height: 150px;
  }
}
@media (max-width: 480px) {
  #section1 h1 {
    font-size: 96px;
    line-height: 96px;
  }
}

.fw-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.fw-wrapper sl-button::part(base) {
  box-shadow: 0 0 1rem #e7dfdd;
  transition: all ease 0.3s;
}
.fw-wrapper sl-button::part(base):hover, .fw-wrapper sl-button::part(base):active, .fw-wrapper sl-button::part(base):focus {
  background-color: #35185a;
  border-color: rgba(0, 0, 0, 0);
  color: #e7dfdd;
}

#section2 {
  background-color: #e7dfdd;
  color: #0e0b16;
  padding: 2.5em;
  font-size: 26px;
  background: linear-gradient(0deg, rgb(231, 223, 221) 0%, rgb(53, 24, 90) 80%, rgb(14, 11, 22) 100%);
}
@media (max-width: 1024px) {
  #section2 {
    font-size: 24px;
    padding: 2em;
  }
}
@media (max-width: 768px) {
  #section2 {
    font-size: 22px;
    padding: 1.5em;
  }
}
@media (max-width: 480px) {
  #section2 {
    font-size: 20px;
    padding: 1em;
  }
}
#section2 .card {
  padding: 2em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  background-color: #f4f0ef;
}
@media (max-width: 1024px) {
  #section2 .card {
    padding: 1.6em;
  }
}
@media (max-width: 768px) {
  #section2 .card {
    padding: 1.2rem;
  }
}
@media (max-width: 480px) {
  #section2 .card {
    padding: 0.5em;
  }
}
#section2 .card sl-button {
  margin: 0 auto;
}
#section2 .card sl-button::part(base) {
  box-shadow: 0 0 1rem #e7dfdd;
  transition: all ease 0.3s;
}
#section2 .card sl-button::part(base):hover, #section2 .card sl-button::part(base):active, #section2 .card sl-button::part(base):focus {
  background-color: #35185a;
  border-color: rgba(0, 0, 0, 0);
  color: #e7dfdd;
}

#section3 {
  background-color: #e7dfdd;
  color: #0e0b16;
  display: flex;
  flex-direction: column;
}

#section4 {
  background-color: #e7dfdd;
  color: #0e0b16;
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

#section4 .grid {
  display: grid;
  gap: 5px;
  justify-content: center;
  align-content: center;
  justify-items: center;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

#section4 .grid img {
  width: 90%;
}

#section4 .grid #a {
  grid-area: auto;
}

#section4 .grid #b {
  grid-area: auto;
}

#section4 sl-button {
  margin: 4px auto 0;
}

#section4 sl-button::part(base) {
  transition: all ease 0.3s;
}
#section4 sl-button::part(base):hover,
#section4 sl-button::part(base):active,
#section4 sl-button::part(base):focus {
  background-color: #35185a;
  border-color: transparent;
  color: #e7dfdd;
}

#section5 {
  background: url("/assets/images/bg2.svg") no-repeat;
  background-size: cover;
  background-position: center;
  height: 3em;
}

footer {
  display: grid;
  gap: 5px;
  grid-auto-flow: row;
  grid-template-areas: ". . . ";
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: left;
  align-content: left;
  justify-items: left;
  align-items: left;
}
footer ul {
  list-style-type: none;
  padding: 40px;
  font-size: 20px;
}
footer ul h3 {
  font-size: 28px;
  color: #9867d7;
}
footer ul sl-icon {
  margin-right: 5px;
  justify-content: center;
}
@media (max-width: 768px) {
  footer {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 0.2fr 1fr;
    grid-template-areas: "a a " ". . ";
  }
  footer #a {
    grid-area: a;
  }
  footer ul {
    padding: 20px;
    font-size: 20px;
  }
  footer ul h3 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  footer {
    grid-template-columns: 1fr;
    grid-template-areas: "a " ". " ". ";
    gap: 0px;
  }
  footer :first-child {
    padding-bottom: 0;
  }
  footer ul {
    padding: 1em 2em;
    font-size: 20px;
  }
}

.gradient-text {
  background-size: 100%;
  background-repeat: repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  background-clip: text;
  -moz-text-fill-color: transparent;
}

#copyright {
  font-size: 18px;
  padding: 1em 3em;
  display: flex;
  justify-content: space-between;
}
#copyright sl-icon {
  transform: translateY(3px);
}
@media (max-width: 480px) {
  #copyright {
    padding: 1em;
  }
}
@media (max-width: 350px) {
  #copyright {
    flex-direction: column;
  }
}

div[id^=section] {
  padding-top: 3.7em;
}
@media (max-width: 1024px) {
  div[id^=section] {
    padding-top: 3.9em;
  }
}
@media (max-width: 768px) {
  div[id^=section] {
    padding-top: 4.3em;
  }
}
@media (max-width: 480px) {
  div[id^=section] {
    padding-top: 5em;
  }
}

a {
  color: inherit;
  text-decoration: none;
}
