body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: white;
  text-align: center;
}

/* Banner Slider */
.banner-slider {
  position: relative;
  overflow: hidden;
  max-height: 90vh;
}
.banner-slider img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.banner-text {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(0,0,0,0.5);
  padding: 10px 20px;
  border-radius: 10px;
}
.fade { animation: fadeEffect 3s ease-in-out; }
@keyframes fadeEffect { from {opacity: 0.4;} to {opacity: 1;} }

/* T-shirt Gallery */
.tshirts { padding: 40px 20px; background: #1b1b1b; }
.tshirt-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.tshirt {
  width: 200px;
  background: #222;
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}
.tshirt-slider img {
  width: 100%;
  display: none;
}
.tshirt-slider img.active {
  display: block;
}

/* Contact */
.contact { padding: 40px; }
.contact form {
  max-width: 400px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
.contact input, .contact textarea {
  padding: 10px;
  margin: 8px 0;
  border: none;
  border-radius: 5px;
}
.contact button {
  background: crimson;
  color: white;
  border: none;
  padding: 12px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
}

/* Footer */
footer {
  background: black;
  padding: 20px;
}
