@import url(scrollbar.css);

/* setup font */
@font-face {
  font-family: JosefinSans;
  src: url(../assets/font/JosefinSans-VariableFont_wght.ttf);
}

* {
  margin: 0;
  padding: 0;
  font-family: JosefinSans;
}

body {
  background-color: #faf1ed;
}

a {
  text-decoration: none;
}

nav {
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.container1 {
  /* 100px navbar, 32px footer */
  min-height: calc(100vh - 100px - 32px);
  padding: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.container2 {
  padding: 64px;
  max-width: 1000px;
  font-size: larger;
  line-height: 1.5;
}

footer {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  height: 20px;
  background-color: #2e2e2e;
  color: white;
  padding: 16px;
}

.footer-item {
  padding: 8px 16px;
  border-radius: 8px;
  color: white;
}

.footer-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.come-in-now-title {
  font-weight: bold;
  color: #f86320;
  font-size: 32px;
  margin-bottom: 8px;
}

.left-column {
  float: left;
  width: 550px;
}

.right-column {
  float: left;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  width: 600px;
}

.mockup {
  width: 100%;
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.logo {
  width: 64px;
  height: 64px;
}

.description-container {
  margin-bottom: 30px;
}

.language-row {
  display: flex;
  flex-direction: row;
  gap: 2px;
}

.language-button {
  background-color: #E4384C;
  color: white;
  width: 48px;
  height: 32px;
  padding: 2px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.language-button-disabled {
  border: #E4384C 2px solid;
  color: black;
  width: 48px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;

}

.language-button-disabled:hover,
.language-button:hover {
  cursor: pointer;

}

@media (max-width: 900px) {
  .container1 {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    float: none;
    width: 100%;
    max-width: 550px;
  }

  .right-column {
    padding-left: 0px;
    padding-top: 32px;
  }

  .left-column {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mockup {
    max-width: 450px;
  }
}

@media (max-width: 590px) {
  .container2 {
    padding: 16px;
  }
}