/* Base Styles */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background-color: #f6f2eb;
  color: #2c2c2c;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 16px;
  max-width: 90%;
}

.scroll-indicator {
  display: block;
  margin-top: 20px;
  font-size: 18px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}

/* The Set */
.the-set {
  height: 100vh;
  background: url('images/fullset.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
}

.the-set-content {
  background: rgba(0, 0, 0, 0.5);
  padding: 30px;
  border-radius: 16px;
  max-width: 90%;
}

/* Product Section */
.product-showcase {
  text-align: center;
  padding: 60px 20px;
}

.description {
  max-width: 600px;
  margin: auto;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.product-gallery img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Order Form */
.order-cta {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input, form select {
  padding: 14px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
  width: 100%;
  box-sizing: border-box;
}

button {
  background: #1a1a1a;
  color: white;
  padding: 16px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

button:hover {
  background: #444;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  color: #777;
}

/* Responsive Layouts */
@media (min-width: 600px) {
  .product-gallery {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .steam-text {
    font-size: 2.2rem;
  }
}

@media (min-width: 1024px) {
  .hero-content {
    max-width: 600px;
  }

  .product-gallery img {
    max-width: 350px;
  }
}
