.home-container {
  width: 100%;
  min-height: 100vh; /* Use min-height for desktop to allow scrolling */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-image: url(./background.jpg);
  background-size: cover;
}

.cover-container {
  display: flex;
  flex-direction: column;
}

.cover-container .cover-title {
  width: 100%;
  font-size: 72px;
  padding: 32px 0;
  font-weight: bold;
  text-align: center;
}

.cover-container .cover-logo {
  width: 100%;
  font-size: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cover-container .cover-query {
  margin-top: 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cover-container .cover-query .query-item {
  display: flex;
  align-items: end;
  font-size: 48px;
}

.cover-container .cover-query .query-item .item-label {
  width: 240px;
  text-align: center;
  transform: translateY(4px);
}

.cover-container .cover-query .query-item .item-value {
  width: 220px;
  text-align: center;
  border-bottom: 2px solid;
}

.language-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #316400;
  color: white;
  font-size: 24px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile Styles */
@media (max-width: 768px) {
  html,
  body,
  #root,
  .home-container {
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
  }

  .cover-container .cover-title {
    font-size: 32px;
    padding: 16px 0;
  }

  .cover-container .cover-logo {
    font-size: 160px;
  }

  .cover-container .cover-query {
    margin-top: 32px;
    gap: 16px;
  }

  .cover-container .cover-query .query-item {
    font-size: 24px;
  }

  .cover-container .cover-query .query-item .item-label {
    width: 132px;
  }

  .cover-container .cover-query .query-item .item-value {
    width: 110px;
  }
}
