@import url('variables.css');


body {
  font-family: 'Changa', sans-serif;
  background-image: url("/images/background.webp");
  background-size: cover;
  background-position: center;
  color: var(--primary-color);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 90vh;
}

header {
  margin-bottom: 170px;
}

header h1 {
  font-size: 2rem;
  color: #333;
}

main {
  margin-top: 50px;
  justify-content: center;
  position: sticky;
  display: flex;
  text-decoration: none;
  list-style: none;
}

.explore {
  position: sticky;
  color: var(--primary-color);
  background-color: rgba(0, 0, 0, 0.774);
  justify-content: center;
  text-decoration: none;
  max-width: 100%;
  display: flex;
  padding: var(--standard-padding20);
  margin: 20px;
  margin-left: var(--standard-margin-px300);
  margin-right: var(--standard-margin-px300);
  margin-bottom: 80px;
}

.explore a {
  padding: var(--standard-padding10);
  flex: auto;
}

.explore:hover {
  background-color: var(--red-color);
  cursor: pointer;
}

.image-placeholder-container:hover {
  box-shadow: 0 4px 50px rgb(95, 76, 202);
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.product-card {
  background: rgba(20, 20, 20, 0.85);
  border: 2px solid #ff4500;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  padding: 20px;
  width: 260px;
  text-align: center;
  color: #f9f9f9;
  margin: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.6);
}

.product-card h3 {
  font-size: 1.3rem;
  margin: 0.7rem 0;
  font-weight: bold;
}

.product-card p {
  font-size: 1rem;
  margin: 0.5rem 0;
}

.product-card button {
  background: linear-gradient(45deg, #ff4500, #ff8c00);
  border: none;
  color: #fff;
  padding: 8px 15px;
  margin: 8px 5px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background: linear-gradient(45deg, #ff8c00, #ff4500);
}

@media (max-width: 700px) {
  .explore {
    width: 90%;
    justify-content: center;
    margin: var(--standard-margin-auto-px);
  }
}

@media (max-width: 300px) {
  body {
    justify-content: center;
  }
  .explore {
    width: 100%;
    justify-content: center;
  }
}