/* Import Fonts */
@import url("https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:wght@300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

:root {
  /* Colours */
  --white-colour: #fff;
  --dark-colour: #252525;
  --primary-colour: #000000;
  --secondary-colour: #60d54e;
  --medium-grey-colour: #ccc;
  --light-pink-colour: #faf3f5;

  /* Font Size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;
  --font-size-xxxl: 4rem;
  --font-size-title: 2.9rem;

  /* Font Weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border Radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;
  --border-radius-full: 999px;

  /* Site Max Width */
  --site-max-width: 1300px;
}

/* Entire Site Styling */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #000000;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .about-us {
    width: 100%;
  }
  .current-auction-section .auction-container {
    width: 90%;
  }
}

@media screen and (max-width: 900px) {
  :root {
    --font-size-s: 0.5rem;
    --font-size-n: 0.75rem;
    --font-size-m: 1rem;
    --font-size-l: 1.3rem;
    --font-size-xl: 1.5rem;
    --font-size-xxl: 1.8rem;
    --font-size-xxxl: 2.25rem;
    --font-size-title: 2.3rem;
  }

  body.show-mobile-menu header:before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
  }

  .navbar :where(#menu-close-button, #menu-open-button) {
    display: block;
    font-size: var(--font-size-l);
  }

  .navbar #menu-open-button {
    color: var(--white-colour);
  }

  .navbar #menu-close-button {
    position: absolute;
    right: 30px;
    top: 30px;
    color: var(--white-colour);
  }

  .navbar .nav-menu {
    display: block;
    position: fixed;
    left: -300px;
    top: 0;
    width: 300px;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding-top: 100px;
    background: rgba(0, 0, 0, 0.85);
    transition: left 0.3s ease;
    color: var(--white-colour);
  }

  body.show-mobile-menu .navbar .nav-menu {
    left: 0;
  }

  .navbar .nav-menu .nav-link {
    color: var(--white-colour);
    display: block;
    margin-top: 17px;
    font-size: var(--font-size-l);
  }

  .current-auction-section .auction-container {
    flex-direction: column;
    text-align: center;
  }
  .current-auction-section .auction-container .auction-image img {
    width: 200px;
  }
  .current-auction-section .auction-container 
  .auction-info .auction-description {
    display: none;
  }
  .current-auction-section .auction-container 
  .auction-info .auction-name {
    margin-bottom: 2rem;
  }
}

@media screen and (max-width: 640px) {
  :root {
    --font-size-m: .7rem;
    --font-size-l: 0.9rem;
    --font-size-xl: 1rem;
    --font-size-xxl: 1.2rem;
  }

  .hero-details .description {
    display: none;
  }

  .hero-details .subtitle {
    margin: 20px;
  }
  .auction-details .auction-list {
    width: 95%;
  }
  .auction-details .img-container {
    flex-direction: column;
  }
  .auction-details .img-container img {
    width: 90%;
  }
  .hero-section .hero-details .gamebid-logo {
    margin-bottom: 2.5rem;
  }
  .hero-section .hero-details .subtitle {
    margin-bottom: 2.5rem;
  }
  .hero-section .hero-details .gamebid-logo .hero-img {
    width: 70px;
  }
  .section-content {
    margin: 0;
    padding: 0;
    height: auto;
  }
  .hero-details {
    height: auto;
  }
  
  .hero-section .gamebid-stats .hero-stat {
    font-size: 32px;
  }
  .hero-section .gamebid-stats .hero-stat-text {
    font-size: 14px;
  }
  .auction-info .current-auction-title {
    font-size: 12px;
  }
  .about-us .about-container .about-description {
    margin-top: 10px;
  }
}