/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0);
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--primary);
  border-radius: 10px;
}

/* Root */
:root {
  --font: "Gilroy", sans-serif;
  --white: hsl(0, 0%, 100%);
  --background: hsl(288, 68%, 7%);
  --default: hsl(288, 45%, 13%);
  --primary: hsl(278, 100%, 71%);
  --footer: hsl(289, 65%, 8%);
  --green: hsl(105, 45%, 68%);
  --voucher: #220b27;
}

/* Website style */
* {
  padding: 0;
  margin: 0;
}

html {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  height: 100%;
  overflow-x: hidden;
  background-color: var(--background);
}

a {
  text-decoration: none;
}

.row-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Container */
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 0rem;
}

@media (min-width: 1700px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1550px;
  }
}

/* Navbar */
nav {
  margin: 50px 0%;

  display: flex;
  justify-content: space-between;
}

.active {
  color: var(--primary) !important;
}

.navbar__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.navbar__brand img {
  width: 70px;
}

.navbar__mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__toggle {
  display: none;
}

.status {
  margin: 0 25px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.status p {
  margin-top: 17px;
  font-size: 17px;
  color: var(--white);
  font-weight: 500;
}

.status span {
  font-weight: 600;
}

.pulse {
  width: 7px;
  height: 7px;
  margin-right: 24px;
  background-color: var(--green);
  box-shadow: 0 0 15px 1px var(--green);
  border-radius: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pulse::before {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  border: solid 1px var(--green);
  opacity: 0.5;
  border-radius: 20px;
  animation: pulse-before 1s infinite;
}

@keyframes pulse-before {
  0% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(0.4);
  }
}

.pulse::after {
  content: "";
  position: absolute;
  width: 33px;
  height: 33px;
  border: solid 2px var(--green);
  opacity: 0.05;
  border-radius: 20px;
  animation: pulse-after 1.1s infinite;
}

@keyframes pulse-after {
  0% {
    transform: scale(0.4);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(0.4);
  }
}

.navbar__links {
  display: flex;
  gap: 20px;
}

.navbar__links ul {
  display: flex;
  gap: 50px;
  margin-bottom: 0;
  padding-left: 0;
}

.navbar__links li {
  list-style: none;
}

.navbar__links a {
  color: var(--white);
  font-weight: 500;
  transition: 0.3s;
}

.navbar__links a:hover {
  opacity: 0.6;
  transition: 0.3s;
}

.navbar__nav,
.navbar__social {
  background-color: var(--default);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 50px;
  border-radius: 10px;
}

@media only screen and (max-width: 1290px) {
  nav {
    margin: 50px 5%;
    flex-direction: column;
  }

  .navbar__links {
    display: none;
    margin-top: 20px;
    position: absolute;
    width: 90%;
    top: 120px;
  }

  .navbar__nav,
  .navbar__social {
    padding: 50px 30px;
    margin-top: 10px;
  }

  .navbar__social {
    padding: 30px;
  }

  .navbar__nav ul {
    text-align: center;
    gap: 20px;
    flex-direction: column;
  }

  .navbar__mobile {
    width: 100%;
  }

  .navbar__toggle {
    display: block;
    color: var(--white);
  }

  .navbar__toggle h5 {
    font-weight: 600;
    font-size: 16px;
  }

  .navbar__nav--active {
    display: block;
  }
}

@media only screen and (max-width: 500px) {
  .status {
    display: none;
  }
}

/* Header */
header {
  margin: 50px 0;
  padding: 70px;
  border-radius: 23px 23px 0 0;
  background: linear-gradient(180deg, #240c2a 0%, rgba(36, 12, 42, 0) 103.9%);
}

.header-right {
  display: flex;
  justify-content: flex-end;
}

header img {
  margin-top: -80px;
}

header h1 {
  color: var(--white);
  font-weight: 800;
}

.header__info {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  color: gray;
  font-weight: 500;
}

.header__info--box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--default);
  border-radius: 15px 15px 15px 0;
}

.button__section {
  margin-top: 50px;
}

.button__purple {
  border: none;
  background-color: var(--primary);
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  padding: 23px 40px;
  border-radius: 11px;
  box-shadow: 0 7px hsla(278, 100%, 71%, 0.5);
  animation: 0.3s buttonAll forwards;
}

.button__purple:hover {
  animation: 0.3s button forwards;
}

@keyframes button {
  0% {
    box-shadow: 0 6px hsla(278, 100%, 71%, 0.5);
  }
  10% {
    box-shadow: 0 5px hsla(278, 100%, 71%, 0.5);
  }
  30% {
    box-shadow: 0 4px hsla(278, 100%, 71%, 0.5);
  }
  40% {
    box-shadow: 0 3px hsla(278, 100%, 71%, 0.5);
  }
  60% {
    box-shadow: 0 2px hsla(278, 100%, 71%, 0.5);
  }
  80% {
    box-shadow: 0 1px hsla(278, 100%, 71%, 0.5);
  }
  100% {
    box-shadow: 0 0px hsla(278, 100%, 71%, 0.5);
  }
}

@keyframes buttonAll {
  0% {
    box-shadow: 0 1px hsla(278, 100%, 71%, 0.5);
  }
  10% {
    box-shadow: 0 2px hsla(278, 100%, 71%, 0.5);
  }
  30% {
    box-shadow: 0 3px hsla(278, 100%, 71%, 0.5);
  }
  40% {
    box-shadow: 0 4px hsla(278, 100%, 71%, 0.5);
  }
  60% {
    box-shadow: 0 5px hsla(278, 100%, 71%, 0.5);
  }
  80% {
    box-shadow: 0 6px hsla(278, 100%, 71%, 0.5);
  }
  100% {
    box-shadow: 0 7px hsla(278, 100%, 71%, 0.5);
  }
}

.button__purple svg {
  margin-left: 20px;
}

@media only screen and (max-width: 1290px) {
  header {
    padding: 40px;
    margin: 50px 4%;
  }

  header img {
    display: none;
    margin-top: -80px;
  }

  .header__info {
    margin-top: 30px;
  }

  .header__info--box {
    min-width: 50px;
  }

  .button__section {
    margin-top: 60px;
  }

  .button__purple {
    border: none;
    background-color: var(--primary);
    color: var(--white);
    font-size: 17px;
    font-weight: 400;
    padding: 23px 40px;
    border-radius: 11px;
    box-shadow: 0 7px hsla(278, 100%, 71%, 0.5);
  }

  .button__purple svg {
    margin-left: 20px;
  }
}

/* Footer */
footer {
  background-color: var(--footer);
  padding: 80px 0% 20px;
}

.footer__nav {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

footer img {
  width: 70px;
  margin-bottom: 20px;
}

.footer-right {
  display: flex;
  justify-content: flex-end;
}

footer .navbar__nav,
footer .navbar__social {
  padding: 25px 50px;
}

.footer__copy {
  background-color: var(--default);
  border-radius: 11px;
  padding: 20px 30px;
  font-weight: 500;
  color: var(--white);
  font-size: 14px;
  margin-top: 50px;
}

.footer__info {
  margin-top: 20px;
  display: flex;
  gap: 30px;
  align-items: center;
  color: gray;
  font-weight: 500;
}

.footer__info p {
  width: 65%;
  margin-top: 15px;
}

.footer__info--box {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--default);
  border-radius: 15px 15px 15px 0;
}

@media only screen and (max-width: 1290px) {
  footer {
    padding: 40px 5%;
  }

  footer img {
    width: 70px;
  }

  footer .navbar__links {
    display: flex;
    position: static;
    width: 100%;
    flex-direction: column;
  }

  footer .navbar__nav,
  footer .navbar__social {
    padding: 30px 50px;
    margin-top: 0px;
  }

  .footer-right {
    display: flex;
    justify-content: flex-end;
  }

  .footer__info p {
    width: auto;
    font-size: 14px;
  }

  .footer__info--box {
    min-width: 50px;
  }
}
