html, body {
  font-family: sans-serif;
  margin: 0 !important;
  height: -webkit-fill-available;
}

body {
  margin: 0px !important;
  font-family: sans-serif !important;
  background-color: var(--lmx-black);
}

h1, p {
  padding: 0;
  margin:0;
}


a {
  text-decoration: none !important;
}

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

* {
  font-family: 'Monaspace Neon', monospace;
}

main {
  display: flex;
  margin-left:40px;
}

.app-content {
  height: 100%;
  width: 100%;
}


:root {
  --lmx-black: #0B0B0B;
  --lmx-gray: #343434;
  --lmx-green: #0066ff;
  --lmx-green: #09DA96;
}


  .buttons a {
      margin-left: 20px;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      font-weight: bold
  }


  nav {
      margin:auto;
      max-width: 1300px;
      box-sizing: border-box;
      align-items: center;
      height: 100%;
      padding-left: 20px;
      padding-right: 20px;
  }

  header {
      margin:auto;
      width: 100%;
      z-index: 999;
      color: var(--lmx-gray);
  }

  header.compact {
    display: none;
  }

  header.default {
      display: block;
  }

  .nav-list .left {
      display: flex;
      align-items: center;
  }

  .nav-list .left .buttons {
      margin-left: 30px;
  }

  header h1 {
      margin:40px;
      font-size: 60px;
      font-family: nasalization;
  }



  header a.active {
    color: var(--aubaus-red);
  }


  .right a svg{
      width: 32px;
      height: 32px;
  }


  .right a {
      margin-left: 20px;
      cursor: pointer;
  }

  header .logo img {
      margin:0;
      padding:0;
      width: 24px;
      margin-right: 10px;
  }

  .logo h1 {
      font-family: nasalization;
      color: inherit;
  }

  .nav-list {
      display: flex;
      height: 100%;
  }

  
  .nav-list .search-field {
    flex:1;
    outline: none;
    width: 400px;
    padding: 10px;
    border-radius: 10px;
    border-style: solid;
    border-color: lightgray;
    border-width: 1px;
    transition: width 0.2s ease-in-out;
  }

  .nav-list .search-button {
    user-drag: none;
    -webkit-user-drag: none;
    border:none;
    background:none;
    display: flex;
    align-items: center;
    justify-content: center;
  }



  .nav-list .search-field.hidden {
    width: 0px;
    visibility: hidden;
    padding:0px;   
  }
  
  .compact-search {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 20px;
}

.compact-search .compact-search-field {
  flex: 1 1;
  outline: none;
  padding: 10px;
  border-radius: 10px;
  border-style: solid;
  border-color: #cdcdcd;
  font-size: 18px;
  border-width: 1px;
  transition: width 0.2s ease-in-out;
  background-color: #ffffff;
}

  .compact-search.hidden{
    display: none;
  }


  hr {
    border: none;
    height: 1px;
    background-color: #cfcfcf;
    width: 100%;
  }


  .header-menu {
    position: fixed;
    width: 100%;
    height: 400px;
  
    right: 0px;
    bottom: 0px;
    z-index: 998;
    left: 0px;
    background-color: rgb(255 255 255 / 80%);
    backdrop-filter: blur(30px);
  
    
}

.header-menu.opened {
  top: 60px;
}

@keyframes openinganimation{
  from {top: -460px;} 
  to{top:60px;} 
}


@keyframes closinganimation{
  from {top: 60px;} 
  to{top:-460px;} 
}​

  .header-menu.opened {
    top: 60px;
  }

  .header-menu.opening {
   
    animation:openinganimation 0.25s ease-out;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }

  .header-menu.closing {
    
    animation:closinganimation 0.25s ease-out;
    animation-timing-function: ease-out;
    animation-direction: alternate;
    animation-fill-mode: forwards;
  }

  .header-menu.closed {
    top:-400px;
    visibility: hidden;
  }

  .header-menu .menu-buttons {
    display: flex;
    flex-direction: column;
    gap:60px;
    align-items: center;
    justify-content: center;
    height:100%;
  }

  .header-menu .menu-buttons .menu-button {
    font-weight: bold;
    font-size: 25px;;
    color:black;
  }

  @media only screen and (max-width: 700px) {
    .header-menu {
      display: block;
    }
  }


  /* FOOTER */

 
  footer .logo-container p {
      margin-top:20px;
      color: gray;
      font-size: 14px;
  }

  footer h1 {
      color: white !important;
  }

  footer hr {
      border: none;
      height: 1px;
      background-color: #1D1D1D;
  }

  footer {
      color: rgb(150, 150, 150);
      background-color: #101010;
      text-align: center;
      padding: 20px;
  }


  .buttons a {
      margin-left: 20px;
      cursor: pointer;
  }

  footer .container {
      margin:auto;
      max-width: 1300px;
      box-sizing: border-box;
      padding: 20px;
      display: flex;
      justify-content: space-between;
  }

  footer .bottom-container {
      margin:auto;
      max-width: 1300px;
      box-sizing: border-box;
      padding: 20px;
  }

  footer .container .content {
      display: flex;
      justify-content: space-between;
  }

  footer a, a:visited {
    color: var(--lmx-green);
    font-weight: bold;
  }

  footer .container .left {
      display: flex;
      align-items: center;
      gap:20px;
  }

  footer .container .left span {
      font-size: 26px;
  }

  footer .container .right {
      display: flex;
      align-items: center;
  }


  .nav-list .left .buttons {
      margin-left: 30px;
  }

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

      height: 50px;
  }

 


  /* HOME */

.row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}


.info {

  background-color: #efefef;
  text-align: center;
  display: flex;
  flex-direction: row;
}


.frontbox .search-field {
  max-width: 600px;
  width: 100%;
  border-radius: 10px;
  border:none;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(50px);
  display: flex;
}

@media only screen and (max-width: 700px) {
  .frontbox {
    border-radius: 0px;
    font-size:15px;
  }
  .frontbox .search-field {
    display:none;
  }
}


.main-buttons {
  padding:20px;
  display: flex;
  gap:40px;
}

.main-buttons a{

  color: var(--aubaus-red);
  font-weight: bold;
  font-size:20px;

}



.search-field button {
  border: none;
  margin: 10px;
  border-radius: 20px;
  padding-left: 20px;
  padding-right: 20px;
  cursor: pointer;
}

.search-field input {
  border:none;
  flex: 1;
  font-size: 18px;
  background: none;
  padding: 20px;
  outline: none;
}



/* 
Collection view */

.section-buttons {
  display: flex;
}

.section-buttons button {
  cursor: pointer;
  border: none;
  color: black;
  background: white;
  font-weight: bold;
  padding: 10px 20px 10px 20px;
  margin-right: 20px;
  border-radius: 10px;
}

.products .product:hover {
  background-color: #efefef;
}

.products .product {
  color: black;
}

.products .product {
  display: flex;
  flex-direction: row;
  background-color: white;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.products .product img {
  width: 100px;
}

.products .product .text {
  margin-left:20px;
}

.products .product h2 {
  font-size: 16px;
}

.card-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1300px;
  gap: 20px;
}

.card {
  background:linear-gradient(345deg, #cacaca, transparent);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-size:cover;
  flex:1;
  padding:20px;
}

.card .contents {
  bottom: 0px;
  position: absolute;
  text-align: center;
  width: 100%;
  flex: 1;
  background: linear-gradient(0deg, #000000ed, #00000005);
  padding: 30px;
}

.card .contents h1 {
  font-size: 40px;
  color: white;
  text-shadow: 1px 1px 4px black;
}

.card .contents h2 {
  font-size: 18px;
  color: white;
  font-weight: normal;
  margin-bottom:26px;
}

.card .contents a.view-product {
  color: white;
  background-color:var(--aubaus-red);
  padding: 10px 30px 10px 30px;
  border-radius: 10px;
  font-weight: bold;

}

.card hr {
  color: red;
}

.card h1 {
  font-size: 26px;
}


@media only screen and (max-width: 700px) {
  .row {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 5px;
  }

  .card {
    padding: 0px 20px 0px 20px;
    border-radius: 0px;
  }

  .card-container {
    gap: 5px;
  }
  

  .card .contents h1 {
    font-size:30px;
  }

  .card .contents h2 {
    font-size: 16px;
  }

}



.banner .contents h1 {
  margin: 20px;
}

.banner .contents {
  z-index: 10;
  height: 50%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  width: 100%;
}

.banner .filter {
  width: 100%;
  height: 100%;

  position: absolute;
  background: linear-gradient(90deg, #171717, transparent);
}

.app-content .banner {
  height: 150px;
  border-radius: 10px;
  overflow: hidden;

  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  color: white;

}


  
@media only screen and (max-width: 700px) {
  .app-content .banner {
    margin: 10px;
  }
  .card.highlight {
      min-height: 300px;
  }
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 20px;
  color: var(--lmx-gray);
}

.not-found a {
  color: var(--lmx-green);
  font-weight: bold;
}

.home-view .connect {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-view .connect a {
  color: var(--lmx-green);
  text-decoration: underline !important;
  cursor: pointer;
}


.email-popup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  z-index: 999;
}

.email-popup .background-blur {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.email-popup h1.email {
  font-size: 24px;
  color: white;
}

.email-popup .email-container {
  display: flex;
  gap: 20px;
  padding:50px;
  z-index: 999;
} 


.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  gap: 20px;
  color: var(--lmx-gray)
}

.not-found h1 {
  font-size: 60px;
}

.not-found a {
  color: var(--lmx-green);
  font-weight: bold;
}
