@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

:root {
  --deep: #171921;
  --orange: #FF6A00;
  --purple: #D900FF;
  --blue: #008CFF;
  --yellow: #FFFF33;
  --white: #fff;
  --text: #f6f7fa;
}

/* BASE */
body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--deep);
  color: var(--text);
}

/* HERO BANNER */
.hero-banner {
  position: relative;
  width: 100vw;
  height: 360px; /* Adjust to your liking */
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #181a1d;
}

.hero-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  object-position: 50% 80%;  /* Moves the image up—shows more of the mountains, less bottom sand */
  z-index: 1;
  opacity: 0.97;
  pointer-events: none;
  user-select: none;
}


.hero-logo {
  position: relative;
  margin-top: 35px;
  max-width: 400px;
  width: 35vw;
  min-width: 180px;
  z-index: 2;
  display: block;
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
}

/* Responsive tweaks */
@media (max-width: 900px) {
  .hero-banner { height: 180px; }
  .hero-logo { margin-top: 8px; width: 60vw; max-width: 220px; }
}
@media (max-width: 600px) {
  .hero-banner { height: 100px; }
  .hero-logo { width: 48vw; min-width: 85px; margin-top: 4px; }
}


/* SLOGAN */
.hero-content {
  text-align: center;
  margin: 0 auto 1.6rem auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.slogan {
  color: var(--yellow);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 0 2px 10px #0009;
}

/* ABOUT */
.about-section {
  background: var(--deep);
  max-width: 650px;
  margin: 2.6rem auto 2.6rem auto;
  text-align: center;
  border-radius: 1.3rem;
  padding: 2rem 1.3rem 1.7rem 1.3rem;
  box-shadow: 0 3px 20px #000a;
}
.about-section h2 {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.about-section p {
  font-size: 1.07rem;
  color: var(--white);
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.55;
}

/* PRODUCTS */
.switcher {
  display: block;
  margin: 0 auto 2.2rem auto;
  background: #4115a9;
  color: #fff;
  border: none;
  border-radius: 1rem;
  padding: 0.35rem 1.2rem;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #2228;
  transition: background .13s;
  text-align: center;
}
.switcher:hover {
  background: #b341e0;
}
@media (min-width: 700px) {
  .switcher {
    margin-top: -1.8rem;
    margin-bottom: 1.8rem;
  }
}
.frontback-btns {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

}
.fb-btn {
  background: #292950;
  color: #fff;
  border: none;
  border-radius: 0.6rem;
  padding: 0.27rem 0.9rem;
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.11s, color 0.11s;
  outline: none;
  border: 1.5px solid transparent;
}
.fb-btn.active, .fb-btn:active {
  background: #FF6A00;
  color: #fff;
  border: 1.5px solid #D900FF;
}
.fb-btn:not(.active):hover {
  background: #008CFF;
  color: #fff;
}

.products-section {
  background: var(--deep);
  max-width: 1250px;
  margin: 0 auto 3rem auto;
  text-align: center;
  border-radius: 1.3rem;
  padding: 2.5rem 1rem 2.7rem 1rem;
  box-shadow: 0 2px 12px #0007;
}
.products-section h2 {
  color: var(--purple);
  font-size: 1.23rem;
  font-weight: 800;
  margin-bottom: 2.1rem;
  letter-spacing: 1.1px;
  text-align: center;
}
.products-row {
  display: flex;
  justify-content: center;
  gap: 2.2rem;
  flex-wrap: wrap;
}
.product-card {
  background: #22242a;
  border-radius: 0.4rem;
  min-width: 210px;
  max-width: 265px;
  width: 27vw;
  padding: 1.3rem 1.2rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 2.5px solid var(--white);
  margin: 0;
  transition: border-color 0.14s, transform 0.15s;
  position: relative;
}
.product-card.orange { border-color: var(--orange);}
.product-card.purple { border-color: var(--purple);}
.product-card.blue { border-color: var(--blue);}
.product-card:hover {
  transform: translateY(-7px) scale(1.033);
  border-color: var(--yellow);
}
.shirt-img {
  width: 110px;
  height: auto;
  margin-bottom: 0.9rem;
  background: #f5f6fb;
  border-radius: 0.12rem;
}
.product-card h3 {
  color: var(--yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  margin: 0.3rem 0 0.48rem 0;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.product-card .desc {
  color: var(--white);
  font-size: 0.99rem;
  margin-bottom: 0.2rem;
  text-align: center;
}
.product-card .sizes {
  color: var(--blue);
  font-size: 0.91rem;
  margin-bottom: 0.44rem;
  font-weight: 600;
}
.order-btn {
  border: none;
  border-radius: 0.25rem;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 0.65rem 1.3rem;
  margin-top: 0.3rem;
  color: #fff;
  cursor: pointer;
  transition: background 0.13s, color 0.12s, transform 0.11s;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px #1115;
}
.orange-btn { background: var(--orange);}
.orange-btn:hover { background: var(--yellow); color: #d900ff;}
.purple-btn { background: var(--purple);}
.purple-btn:hover { background: var(--yellow); color: var(--purple);}
.blue-btn { background: var(--blue);}
.blue-btn:hover { background: var(--yellow); color: var(--blue);}

/* FOOTER */
footer {
  background: #15151a;
  border-top: none;
  margin: 0;
  padding: 0;
}
.footer-text {
  font-size: 1rem;
  color: var(--yellow);
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 0.7rem 0 1.1rem 0;
  letter-spacing: 0.9px;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 1px 7px #000a;
}

/* Responsive */
@media (max-width: 900px) {
  .products-row { flex-direction: column; align-items: center; gap: 1.3rem; }
  .product-card { width: 90vw; max-width: 320px;}
  .logo { width: 33vw; }
  .about-section, .products-section { padding: 1.1rem 0.4rem; }
  .hero-banner { height: 120px; }
  .hero-banner img { height: 120px; }
}
@media (max-width: 600px) {
  .logo { width: 90px; }
  .hero-logo-overlay { top: 10px; }
  .hero-banner { height: 80px; }
  .hero-banner img { height: 80px; }
}
body {
  margin: 0;
  background: #14151a;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.logo {
  display: block;
  margin: 32px auto 8px auto;
  max-width: 270px;
}
.slogan {
  text-align: center;
  color: #FFFF33;
  font-weight: bold;
  font-size: 1.18rem;
  margin-bottom: 36px;
}
.shirts-grid {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 32px 0;
}
.shirt-card {
  background: #1b1c23;
  border-radius: 1.2rem;
  padding: 1.5rem 2.2rem 1.2rem 2.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 18px #0006;
  transition: transform 0.11s, box-shadow 0.11s;
}
.shirt-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 32px #000a;
}
.shirt-card img {
  width: 180px;
  height: auto;
  margin-bottom: 16px;
  border-radius: 0.8rem;
  background: #242427;
}
.shirt-name {
  color: #D900FF;
  font-size: 1.17rem;
  font-weight: bold;
  letter-spacing: 0.8px;
  text-align: center;
}
.product-detail {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 3rem;
  margin: 52px auto;
  max-width: 950px;
  padding: 32px;
  background: #191a21;
  border-radius: 2rem;
  box-shadow: 0 6px 32px #0009;
}
.detail-img {
  max-width: 340px;
  width: 100%;
  border-radius: 1.2rem;
  box-shadow: 0 3px 20px #0007;
}
.detail-info {
  flex: 1 1 300px;
  min-width: 260px;
}
.detail-info h1 {
  color: #008CFF;
  font-size: 2.4rem;
  margin: 0 0 0.8rem 0;
}
.detail-info p {
  font-size: 1.11rem;
  margin: 0.4rem 0 0.8rem 0;
}
.order-btn {
  background: linear-gradient(90deg, #FF6A00 20%, #D900FF 90%);
  color: #fff;
  border: none;
  border-radius: 1.1rem;
  padding: 0.7rem 2rem;
  font-size: 1.13rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 1.1rem;
  transition: background 0.15s, transform 0.13s;
}
.order-btn:hover {
  background: linear-gradient(90deg, #D900FF 20%, #008CFF 90%);
  transform: scale(1.05);
}
form label, form select, form input {
  font-size: 1.04rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
form input[type="number"] {
  width: 64px;
  margin-left: 0.5rem;
  background: #23242c;
  color: #fff;
  border: 1px solid #555;
  border-radius: 0.6rem;
  padding: 0.2rem 0.7rem;
}
form select {
  margin-left: 0.5rem;
  background: #23242c;
  color: #fff;
  border: 1px solid #555;
  border-radius: 0.6rem;
  padding: 0.3rem 0.7rem;
}
@media (max-width: 700px) {
  .shirts-grid { flex-direction: column; align-items: center; gap: 2rem; }
  .product-detail { flex-direction: column; gap: 2rem; padding: 15px; }
  .detail-img { max-width: 92vw; }
}
.hero-bg-detail {
  object-position: 50% 30% !important; /* Or whatever % looks perfect */
}
.order-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}
.order-row label {
  font-size: 1rem;
  margin-right: 0.15rem;
  color: #fff;
}
.order-row select, .order-row input[type="number"] {
  padding: 0.24rem 0.6rem;
  border-radius: 0.4rem;
  border: 1px solid #999;
  background: #22242a;
  color: #fff;
  font-size: 1rem;
  min-width: 68px;
}
hr {
  border: none;
  border-top: 1px solid #444;
  margin: 1.5rem 0;
}
.home-btn {
  display: inline-block;
  color: #008CFF;
  background: #23242c;
  border: 2px solid #008CFF;
  border-radius: 0.8rem;
  padding: 0.44rem 1.2rem;
  font-weight: bold;
  font-size: 1.09rem;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.13s, color 0.13s, border 0.13s;
}
.home-btn:hover {
  background: #008CFF;
  color: #fff;
  border: 2px solid #FF6A00;
}
