body {
  margin: 0;
  min-height: 100vh;

  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("background.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: white;
  font-family: Arial, sans-serif;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 60px;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pearl-logo {
  width: 55px;
  height: auto;
  cursor: pointer;
  transition: 0.3s;
  filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.8));
}

.pearl-logo:hover {
  opacity: 0.8;
}

header h1 {
  color: #9e9a96;
  font-size: 28px;
  letter-spacing: 6px;
  margin: 0;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

nav {
  display: flex;
  gap: 30px;
}

nav a {
  color: #9e9a96;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 3px;
  transition: 0.3s;
  text-shadow:
    0px 0px 10px rgba(0,0,0,1),
    0px 0px 20px rgba(0,0,0,1),
    0px 0px 30px rgba(0,0,0,1);
}

nav a:hover {
  color: white;
}

.hero {
  min-height: 100vh;
  position: relative;
  padding-left: 80px;
  padding-bottom: 80px;
  box-sizing: border-box;
  z-index: 1;
}

.hero p {
  color: #9e9a96;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.hero-sub {
  color: #d4d0cb;
  font-size: 18px;
  line-height: 1.8;
  max-width: 700px;
  margin-top: 10px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.hero-center {
  position: absolute;
  top: 32%;
  max-width: 700px;
}

.hero-bottom {
  position: absolute;
  bottom: 80px;
  left: 80px;
}

.about,
.apparel,
.socials,
.garage {
  min-height: 100vh;
  padding-top: 220px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 120px;
  box-sizing: border-box;
}

.about-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 80px;
  margin-bottom: 140px;
}

.about-text {
  flex: 1;
}

.about h2,
.apparel h2,
.socials h2,
.garage h2 {
  color: #9e9a96;
  font-size: 52px;
  letter-spacing: 6px;
  margin-bottom: 20px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.about p {
  color: #d4d0cb;
  font-size: 22px;
  line-height: 2;
  max-width: 900px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.about-img {
  width: 500px;
  border-radius: 10px;
  box-shadow: 0px 0px 40px rgba(0,0,0,0.6);
}

.apparel-subtitle,
.socials-subtitle,
.garage-subtitle {
  color: #d4d0cb;
  font-size: 20px;
  margin-bottom: 70px;
  letter-spacing: 2px;
  line-height: 1.8;
  max-width: 900px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.apparel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.apparel-card {
  background: rgba(0,0,0,0.35);
  padding: 25px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
}

.apparel-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}

.apparel-card h3 {
  color: #9e9a96;
  margin-top: 20px;
  letter-spacing: 4px;
  font-size: 18px;
  text-align: center;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.drop3 {
  object-position: top;
}

.apparel-card:nth-child(3) img {
  object-position: center 20%;
}

.apparel-card:nth-child(1) img {
  object-fit: contain;
  background: black;
}

.garage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  margin-bottom: 80px;
}

.garage-card {
  background: rgba(0,0,0,0.25);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(4px);
  box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
}

.garage-card h3 {
  color: #9e9a96;
  letter-spacing: 4px;
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 15px;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.garage-card p {
  color: #9e9a96;
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  text-shadow: 0px 0px 10px rgba(0,0,0,0.8);
}

.garage-notice {
  max-width: 900px;
  background: rgba(0,0,0,0.35);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 0px 40px rgba(0,0,0,0.4);
}

.garage-notice h3 {
  color: #9e9a96;
  letter-spacing: 5px;
  font-size: 24px;
  margin-top: 0;
}

.garage-notice p {
  color: #9e9a96;
  line-height: 1.8;
  margin-bottom: 0;
}

.social-links {
  display: flex;
  gap: 25px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.social-links a {
  color: #9e9a96;
  text-decoration: none;
  letter-spacing: 3px;
  font-weight: bold;
  padding: 18px 28px;
  border: 1px solid #9e9a96;
  background: rgba(0,0,0,0.35);
  box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}

.social-links a:hover {
  color: white;
  border-color: white;
}

.disabled-link {
  opacity: 0.45;
  pointer-events: none;
}

.contact-box {
  max-width: 700px;
  background: rgba(0,0,0,0.35);
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 0px 40px rgba(0,0,0,0.5);
}

.contact-box h3 {
  color: #9e9a96;
  letter-spacing: 5px;
  font-size: 28px;
  margin-top: 0;
}

.contact-box p {
  color: #d4d0cb;
  line-height: 1.8;
}

.contact-box input,
.contact-box textarea {
  width: 100%;
  padding: 16px;
  margin-top: 18px;
  box-sizing: border-box;
  background: rgba(255,255,255,0.08);
  border: 1px solid #9e9a96;
  color: white;
  font-size: 16px;
}

.contact-box textarea {
  height: 160px;
  resize: none;
}

.contact-box button {
  margin-top: 20px;
  padding: 16px 32px;
  background: #9e9a96;
  color: black;
  border: none;
  font-weight: bold;
  letter-spacing: 3px;
  cursor: pointer;
}

.contact-box button:hover {
  background: white;
}

.direct-email a {
  color: #9e9a96;
}

@media (max-width: 768px) {
  body {
    background-position: center top;
    background-attachment: scroll;
  }

  header {
    position: relative;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    padding: 20px;
    z-index: 10;
  }

  .logo-section {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero {
    min-height: calc(100vh - 190px);
    position: relative;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 50px;
  }

  .hero-center {
    position: absolute;
    top: 20%;
    max-width: 100%;
  }

  .hero-bottom {
    position: absolute;
    bottom: 50px;
    left: 25px;
    right: 25px;
  }

  .hero p,
  .hero-sub {
    font-size: 16px;
    max-width: 100%;
  }

  .about,
  .apparel,
  .socials,
  .garage {
    padding-left: 25px;
    padding-right: 25px;
    padding-top: 140px;
    padding-bottom: 60px;
  }

  .about-row {
    flex-direction: column;
  }

  .about-img {
    width: 100%;
  }

  .apparel-grid,
  .garage-grid {
    grid-template-columns: 1fr;
  }

  .apparel-card img {
    height: auto;
  }

  .garage h2 {
    font-size: 38px;
  }

  .garage-subtitle {
    font-size: 16px;
    margin-bottom: 35px;
  }

  .garage-grid {
    gap: 22px;
    margin-bottom: 40px;
  }

  .garage-card {
    padding: 25px;
  }

  .garage-notice {
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
  }

  .social-links {
    flex-direction: column;
  }

  .contact-box {
    width: 100%;
    padding: 25px;
    box-sizing: border-box;
  }

  .contact-box input,
  .contact-box textarea {
    width: 100%;
  }
}