* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  overflow: hidden; /* prevent vertical scroll */
}

.container {
  background-image: url("/assets/images/background.png");
  background-attachment: fixed; /* makes background fixed */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.logo__container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0;
  flex-shrink: 0;
}

.logo {
  width: 25%;
  max-width: 250px;
}

.cards__container {
  height: calc(100vh - 250px); /* 200px */
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 20px;
  padding: 0 10px;
  align-items: center;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}


.cards__container::-webkit-scrollbar {
  display: none; /* optional: hides scrollbar */
}

.card {
  flex: 0 0 auto;
  scroll-snap-align: center;
  width: 300px;
  height: 500px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
  border: 3px solid #edb4b4;
}



/* Responsive */
/* Responsive */
/* Responsive */
@media (max-width: 1280px) {
  .logo {
    width: 25%;
  }

  .cards__container {
    justify-content: start;
  }
}

@media (max-width: 1024px) {
  .logo {
    width: 30%;
  }
}

@media (max-width: 768px) {
  .logo {
    width: 40%;
  }

  .card {
    width: 250px;
    height: 450px;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 80%;
    padding-bottom: 0;
  }
  
  .cards__container {
    align-items: center;
  }

  .card {
    width: 200px;
    height: 350px;
  }
}


.powered-by {
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 20px;
  font-family: sans-serif;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  opacity: 0.8;
  z-index: 100;
  text-decoration: none;
}

.powered-by:hover {
  opacity: 1;
  text-decoration: underline;
}