html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--text-default);
  font-family: "Montserrat-Thin", sans-serif;
  margin: 0;
  padding: 0;
}

header {
  position: fixed;
  top: 0;
  z-index: 1000;
  background-color: var(--background-transparent);
  padding-block: 0rem;
}

footer {
  padding: 0 2rem 0 1rem;
  min-height: 300px;
}

li {
  color: var(--text-default)
}

a {
  color: var(--text-default);
  text-decoration: none;
}

a:hover {
  color: var(--accent-default);
  text-decoration: underline;
}

h2 {
  color: var(--text-default);
}

p {
  color: var(--text-default);
}

.logo {
 height: 100px;
 padding: 0;
 margin: 0;
}

.container {
  margin: auto;
  padding: 2rem;
}

.container-nav {
  margin: auto;
  padding: 0 1rem 0 1rem;
}

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

/* Neon Buttons */
.button-neon {
  background-image: var(--button-background);
  border: 2px solid var(--accent-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  min-width: 50%;
  max-width: 500px;
  text-align: center;
}

.button-neon:hover {
  background: var(--accent-secondary);
}

.button-grid-col2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.button-grid-col2 > *:first-child {
  justify-self: end;
}

.button-grid-col2 > *:last-child {
  justify-self: start;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 12rem 2rem 6rem 2rem;
  background: var(--image-overlay), url("/assets/images/questiaBackground_01.jpg") center center / cover no-repeat;
  font-family: "Montserrat-Heavy", sans-serif;
}

.hero h1 {
  margin-bottom: 1rem;
  font-size: 5rem;
  color: inherit;
  font-family: inherit;
}

.hero h2 {
  color: var(--text-third);
  /* font-family: "Montserrat-Thin", sans-serif; */
}

.hero p {
  font-size: 1.2rem;
  color: inherit;
  font-family: inherit;
}

/* Current Season Section */
.current-season {
  text-align: center;
  padding: 3rem 2rem 3rem 2rem;
  background: var(--image-overlay), url("/assets/images/questiaBackground_03.png") center center / cover no-repeat;
  color: var(--text-default);
  font-family: "Montserrat-Heavy", sans-serif;
}

.current-season-info {
  text-align: left;
}

.current-season h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: inherit;
  font-family: inherit;
}

.current-season h2 {
  color: var(--accent-secondary);
  font-family: "Montserrat-Thin", sans-serif;
}

.current-season p {
  font-size: 1.2rem;
  color: inherit;
  font-family: inherit;
}

/* section-start */
.section-start {
  text-align: center;
  padding: 4rem 2rem 3rem 2rem;
  background: var(--accent-primary);
  color: var(--text-third);
  font-family: "Montserrat-Heavy", sans-serif;
}

.section-start-info {
  text-align: left;
}

.section-start h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: inherit;
  font-family: inherit;
}

.section-start h2 {
  color: var(--background);
  font-family: "Montserrat-Thin", sans-serif;
}

.section-start p {
  font-size: 1.2rem;
  color: inherit;
  font-family: inherit;
}

/* Section info */
.section-info {
  text-align: center;
  padding: 3rem 2rem 3rem 2rem;
  background: linear-gradient(rgba(67, 138, 242, 0.74), rgba(67, 138, 242, 0.74)), url("/assets/images/questiaBackground_02.jpg") center center / cover no-repeat;
  color: var(--text-default);
  font-family: "Montserrat-Heavy", sans-serif;
}

.section-info h1 {
  margin-bottom: 1rem;
  font-size: 2rem;
  color: inherit;
  font-family: inherit;
}

.section-info h2 {
  color: var(--accent-secondary);
  font-family: "Montserrat-Thin", sans-serif;
}

.section-info h3 {
  color: var(--text-default);
  font-family: "Montserrat-Heavy", sans-serif;
}

.section-info p {
  color: inherit;
  font-family: "Montserrat-Thin", sans-serif;;
}

.section-info a {
  color: inherit;
  font-family: "Montserrat-Thin", sans-serif;
  text-decoration: none;
}

.section-info a:hover {
  color: var(--accent-default);
  text-decoration: underline;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.nav-item {
  color: var(--text-default);
  text-decoration: none;
  padding: 0rem 0.5rem;
  transition: color 0.4s ease;
}

.nav-item:hover {
  color: var(--accent-default);
  text-decoration: underline;
}

/* Hamburger menu styles */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0;
}

.nav-toggle:focus {
  outline: none;
  box-shadow: none !important;
}

.box-filled {
  width: 60px;
  height: 60px;
  display: flex;
  -moz-box-pack: center;
  justify-content: center;
  -moz-box-align: center;
  align-items: center;
  background: linear-gradient(-180deg, rgb(115, 226, 255) 0%, rgb(66, 182, 254) 96%);
  box-shadow: none;
  border-radius: 10px;
  pointer-events: none;
  margin: 1rem;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  nav ul:last-child {
    display: none;
    flex-direction: column;
    width: 80%;
    position: absolute;
    top: 100%;
    left: 10%;
    background: var(--pico-background);
    border-top: var(--pico-border-width) solid var(--pico-muted-border-color);
    border-bottom: var(--pico-border-width) solid var(--pico-muted-border-color);
    margin: 0;
    padding: 1rem 1rem 1rem 1rem;
    z-index: 1000;
  }

  nav ul:last-child.show {
    display: flex;
    background-color: var(--accent-secondary);
    
  }

  nav ul:last-child li {
    width: 100%;
    text-align: right;
    padding: 0.5rem;
  }

  nav {
    position: relative;
    flex-wrap: wrap;
  }

  nav ul:first-child {
    flex: 1;
  }

  .button-grid-col2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .button-neon {
    min-width: 100%;
  }

  .button-grid-col2 > *:first-child{
    justify-self: center;
  }

  .button-grid-col2 > *:last-child {
    justify-self: center;
  }
}

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

.serverstatus-bg {
  background: url("/assets/images/serverstatusBackground.jpg") center center / cover no-repeat;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center
}

.button-img {
  max-height: 2rem;
  margin-right: 0.5rem;
}

.card-red {
  min-width: 75%;
  background-color: rgba(221, 45, 74, 0.5);
  padding: 2rem;
}

.d-none {
  display: none;
}

.button-flat {
  background-color: transparent;
  border-width: 0px;
  margin: 0px;
  padding: 0px;
}

.m-0 {
  margin: 0px;
}

.pr-1 {
  padding: 1rem;
}
