:root {
    --white: #f0f0f0;
    --blue: #2a5ada;
    --darkblue: #0e1e49;
    --black: #0f0f0f;
    --grey: #1d1d1d;
    --lightgrey: #9c9c9c;
}

body,
html {
  background-color: var(--black);
  margin: 0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a,
ul,
li,
h1 {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url('/assets/fonts/Helvetica_Neue_LT_Std_96_Black_Italic.otf') format('opentype');
    font-weight: bold;
    font-style: italic;
}

@font-face {
    font-family: 'ethnocentric';
    src: url('/assets/fonts/ethnocentric.otf') format('opentype');
    font-weight: bold;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    height: 10vh;
    background-color: #0f0f0f80;
    backdrop-filter: blur(10px);
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
    z-index: 100;
    width: calc(100% - 4rem);
}

nav img {
    height: 10vh;
}

nav .links {
    display: flex;
    justify-content: space-between;
}

nav .link a {
    font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
    color: var(--white);
    font-size: x-large;
    padding: 5px 1rem;
    display: inline-block;
    position: relative;
    overflow: hidden; /* Keeps the background contained */
    background: linear-gradient(to right, var(--blue) 100%, var(--white) 0%) no-repeat;
    background-size: 0% 3px; /* Starts with no blue visible */
    background-position: 100% 100%; /* Position the blue part out of visible area */
    transition: background-size 0.3s ease-in-out, background-position 0s ease-in-out; /* Smooth transition for background */
}

nav .link a:hover {
    background-size: 100% 3px; /* Expand the blue background to full width on hover */
    background-position: 0% 100%; /* Align the blue to fully cover the white border on hover */
}

nav .search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10rem;
    height: 2.5rem;
    background-color: #333333;
    border-radius: 1rem;
}

nav .search img {
    height: 1.5rem;
    color: #f0f8ff;
}

nav .search a {
    font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
    color: var(--white);
    font-size: large;
    padding: 5px 10px; /* Adjust padding as needed */
    text-decoration: 2px #f0f8ff underline;
}

.landing-page {
    display: flex;
    margin: 0rem 5rem;
    height: 100vh;
}

.landing-page .text {
    width: 100%;
    margin: auto;
}

.landing-page .media {
    width: 100%;
    margin: auto;
}

.landing-page h1 {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 72px;
}

.landing-page h2 {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 36px;
    width: 100%;
}

.landing-page h2>span {
    font-family: HelveticaNeue;
    color: var(--blue);
    font-size: 36px;
    width: 100%;
}

.landing-page span {
    color: var(--blue);
}

.landing-page img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80%;
}

.landing-page iframe {
    width: 100%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 1);
}

.landing-page>div>div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    gap: 2rem;
}

.landing-page>div>div button {
    width: 10rem;
    height: 3rem;
    margin: auto;
    border: 1px solid var(--blue);
    border-radius: 5px;
    background-color: var(--blue);
    box-shadow: 0 0 7px rgba(0, 123, 255, 0.75);
    transition: all 0.3s ease; /* Add this line */
}

.landing-page>div>div button:hover {
    transform: translateY(-3px);
}

.landing-page>div>div button:active {
    box-shadow: inset 0px 0px 4px 2px rgba(0, 0, 0, 0.507);
}

.landing-page>div>div button h1 {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 30px;
}

.title-info {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 36px;
    width: 30rem;
  }

  .typing-cursor {
    position: static;
    translate: -30px;
    display: inline;
    opacity: 1;
    animation: blink 1s steps(1) infinite;
  }
  
  /* The animation that makes our cursor blink */
  @keyframes blink {
    50% {
      opacity: 0;
    }
  }

.about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 1rem;
    padding-top: 2rem;
}

.about h1 {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 72px;
}

.about p {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 24px;
    margin-right: 10rem;
}

.about img {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 24px;
    margin-left: 10rem;
    box-shadow: 0px 8px 8px rgba(0, 0, 0, 1);
}

.about>div {
    display: flex;
    justify-content: center;
    gap: 5rem;
}

.store {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    gap: 1rem;
    padding-top: 2rem;
}

.store h1 {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 72px;
}

.store>div {
    display: flex;
    flex-direction: row;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.store .store-item {
    background-color: var(--grey);
    border-radius: 1rem;
    border: 1px solid var(--blue);
    overflow: hidden;
    height: 28rem;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.75);
}

.store .store-item img {
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.store .store-item-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--blue);
    padding: 1rem 2rem;
}

.store .store-item-pricing h2 {
    font-family: HelveticaNeue;
    color: var(--lightgrey);
    font-size: 18px;
}

.store .store-item-pricing p {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 24px;
}

.store button {
    background-color: #333333;
    border: 1px solid var(--blue);
    height: 3rem;
    width: 7rem;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--white);
    border-radius: 3rem;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 0 7px rgba(0, 123, 255, 0.75);
    transition: all 0.3s ease-in-out;
  }
  
  .store button:hover {
    transform: translateY(-3px);
  }

.contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    height: 100vh;
}

.contact h1 {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 72px;
}

.contact h2 {
    font-family: HelveticaNeue;
    color: var(--white);
    font-size: 24px;
    text-align: center;
    margin: 0;
}

.contact-background {
    width: 30%;
    height: 12rem;
    background: var(--grey);
    box-shadow: 0 0 7px rgba(0, 123, 255, 0.75);
    border-radius: 1rem;
    padding: 1rem 1rem 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-direction: column;
}

.contact a {
    padding: 1rem;
    background: #2a5ada;
    color: var(--white);
    text-align: center;
    font-family: HelveticaNeue;
    font-size: 18px;
    border-radius: 5rem;
}

.status {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.status h1 {
    font-family: ethnocentric;
    color: var(--white);
    font-size: 72px;
}
.status-background {
    width: 80%;
    background: var(--grey);
    border-radius: 1rem;
    box-shadow: 0 0 7px rgba(0, 123, 255, 0.75);
}

.status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 8rem;
    border-bottom: 1px solid var(--lightgrey);
    padding: 0rem 1rem;
}

.status-item:last-child {
    border-bottom: none;
}

.status-item div {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}

.status-item div:first-child {
    width: 33%;
    display: flex;
    justify-content: left;
    gap: 1rem;
}

.status-item div:last-child {
    width: 33%;
    display: flex;
    justify-content: right;
    gap: 1rem;
}

.status-item h2 {
    text-align: center;
    font-family: HelveticaNeue;
    font-size: 36px;
    color: var(--white);
}

.status-item a, p {
    text-align: center;
    font-family: Helvetica;
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
}

.status-item a:hover {
    text-decoration: underline;
}