

@charset "utf-8";

/* DYSPHORIA CLOTHING */
/* Gothic Cyber Sigilism Theme */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background:
    linear-gradient(rgba(0,0,0,.35), rgba(0,0,0,.88)),
    url("background.png");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  color: #f5f5f5;
  font-family: "Times New Roman", Georgia, serif;
  letter-spacing: 4px;
}

/* HEADER */

header {
  margin: 18px;
  padding: 18px;
  background: rgba(0,0,0,.85);
  border: 1px solid rgba(190,140,255,.55);
  box-shadow: 0 0 25px rgba(180,120,255,.35);
}

nav h1 {
  text-align: center;
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 22px;
  color: white;
  text-shadow: 0 0 18px white;
}

nav h1::before,
nav h1::after {
  content: " ✦ ";
  color: #c08cff;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 55px;
  margin-top: 20px;
  list-style: none;
  flex-wrap: wrap;
}

nav a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 15px;
  text-shadow: 0 0 12px white;
}

nav a:hover {
  color: #d6b0ff;
}

/* HERO */

.hero {
  position: relative;
  min-height: 70vh;
  padding: 130px 30px 90px;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  font-weight: 300;
  line-height: 1.7;
  color: white;
  text-shadow:
    0 0 8px white,
    0 0 22px white;
}

.hero p {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 8px;
  color: #eee;
  text-shadow: 0 0 12px white;
}

.button {
  display: inline-block;
  margin-top: 55px;
  padding: 16px 50px;
  border: 1px solid #b67cff;
  color: white;
  background: rgba(0,0,0,.75);
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(180,120,255,.7);
}

.button:hover {
  background: #d8b6ff;
  color: black;
}

/* JAPANESE SIDE TEXT */

.side-text {
  position: absolute;
  top: 120px;
  writing-mode: vertical-rl;
  font-size: 24px;
  color: white;
  text-shadow: 0 0 14px white;
}

.side-text.left {
  left: 40px;
}

.side-text.right {
  right: 40px;
}

/* FEATURED */

.featured {
  padding: 60px 40px;
}

.featured h2,
.newsletter h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 14px;
  margin-bottom: 35px;
  color: white;
  text-shadow: 0 0 14px white;
}

.featured h2::before,
.featured h2::after {
  content: " ✦ ";
  color: #b67cff;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 28px;
}

.product-card {
  background: rgba(0,0,0,.86);
  border: 1px solid rgba(190,140,255,.8);
  padding: 18px;
  text-align: center;
  box-shadow:
    0 0 25px rgba(180,120,255,.35),
    inset 0 0 30px rgba(255,255,255,.05);
}

.product-card::before {
  content: "✦ ⛧ ✦";
  display: block;
  color: #c08cff;
  margin-bottom: 12px;
}

.product-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  border: 1px solid #777;
  filter: grayscale(100%) contrast(120%);
  background: #050505;
}

.product-card h3 {
  margin-top: 18px;
  color: white;
  font-size: 17px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 5px;
}

.product-card p {
  color: #d8b6ff;
  margin: 10px 0;
}

.product-card a {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 35px;
  color: white;
  border: 1px solid #b67cff;
  text-decoration: none;
  text-transform: uppercase;
}

.product-card a:hover {
  background: #d8b6ff;
  color: black;
}

/* NEWSLETTER */

.newsletter {
  max-width: 650px;
  margin: 60px auto;
  padding: 30px;
  background: rgba(0,0,0,.82);
  border: 1px solid rgba(190,140,255,.65);
  text-align: center;
}

.newsletter p {
  margin-bottom: 20px;
  color: #ddd;
  line-height: 1.8;
}

input {
  padding: 15px;
  width: 75%;
  background: black;
  color: white;
  border: 1px solid #777;
}

button {
  padding: 15px 20px;
  background: black;
  color: #d8b6ff;
  border: 1px solid #b67cff;
  cursor: pointer;
}

button:hover {
  background: #d8b6ff;
  color: black;
}

/* FOOTER */

footer {
  padding: 45px;
  text-align: center;
  background: rgba(0,0,0,.9);
  border-top: 1px solid rgba(190,140,255,.65);
  color: #aaa;
}

footer h2 {
  font-weight: 300;
  color: white;
  letter-spacing: 14px;
  text-shadow: 0 0 12px white;
}

/* MOBILE */

@media (max-width: 700px) {
  nav h1 {
    font-size: 25px;
    letter-spacing: 8px;
  }

  nav ul {
    gap: 18px;
  }

  .hero h2 {
    font-size: 28px;
  }

  .side-text {
    display: none;
  }

  .featured h2 {
    letter-spacing: 6px;
  }
}