html,
body {
  margin: 0;
  padding: 0;
  background-color: #000;
  height: 100%;
  font-family: Arial, "Helvetica Neue", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  body {
    background-color: #000;
    color: #fff;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10;
}

.nav a {
  margin-left: 20px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;
}

.menu-btn {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

.dropdown {
  position: absolute;
  top: 70px;
  right: 40px;
  background: rgba(0, 0, 0, 0.95);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  min-width: 160px;
  padding: 12px 0;
}

.dropdown a {
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 14px;
}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* HERO(main) */
.hero {
  height: 100vh;
  min-height: 100svh;
  background-color: #000;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  animation: heroFadeIn 1.4s ease-out forwards;
}
@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 120px rgba(0, 0, 0, 0.75);
}

.hero__logo {
  width: min(92vw, 1100px);
  height: auto;
  margin: 0;
  display: block;
}

@media (min-width: 300px) {
  .hero__logo {
    max-width: 900px;
  }
}

.hero__overlay {
  display: none;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
  padding: 0 20px;
}

.hero__content p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.hero__content h1 {
  font-size: 64px;
  letter-spacing: 6px;
  margin-bottom: 16px;
}

.cta {
  padding: 12px 28px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  letter-spacing: 2px;
  cursor: pointer;
}

.cta:hover {
  background: #fff;
}

/* MAIN SITE visibility */
.site--hidden {
  display: none;
}

.site--show {
  display: block;
  animation: siteIn 700ms ease-out forwards;
}

@keyframes siteIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Fade intro out */
.hero--exit {
  animation: heroOut 600ms ease-in forwards;
}

@keyframes heroOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* MAIN SITE BASE */
.site {
  min-height: 100vh;
  background: #000;
  color: #fff;
}
.carousel-section {
  min-height: 60vh;
  display: grid;
  place-items: center;
}

.carousel-viewport {
  width: min(520px, 92vw);
  height: 320px;
  perspective: 1100px;
  display: grid;
  place-items: center;
}

.carousel {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  transform-style: preserve-3d;
}

.item {
  position: absolute;
  left: 50%;
  transform-style: preserve-3d;
  font-size: clamp(28px, 4vw, 44px);
  padding: 10px 18px;
  border-radius: 14px;
  transition:
    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
  white-space: nowrap;
}

.coverflow-section {
  min-height: calc(100vh - 80px); /* account for header */
  display: grid;
  place-items: center;
}

.coverflow-viewport {
  width: min(900px, 92vw);
  height: 360px;
  position: relative;
  perspective: 1200px;
  display: grid;
  place-items: center;
}

.coverflow {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(640px, 98vw);
  height: 620px;
  transform-style: preserve-3d;
  border-radius: 18px;
  overflow: visible;
  transition:
    transform 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 450ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 450ms cubic-bezier(0.2, 0.8, 0.2, 1);
  user-select: none;
}

/* ✨ glossy highlight + subtle vignette */
.card::before {
  content: "";
  position: absolute;
  inset: -2px;
  pointer-events: none;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  transition: background 400ms ease;
  pointer-events: none;
}

.card:not(.is-active)::after {
  background: rgba(0, 0, 0, 0.35);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: transparent;
  filter: drop-shadow(0 18px 45px rgba(0, 0, 0, 0.55))
    drop-shadow(0 2px 0 rgba(255, 255, 255, 0.06));
}

.card p {
  position: absolute;
  left: 14px;
  bottom: 12px;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  color: white;
}

.contact-card {
  background: rgba(15, 15, 15, 0.8);
  padding: 24px;
  border-radius: 22px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.contact-form h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0.04em;
}

.contact-sub {
  opacity: 0.7;
  font-size: 13px;
  margin-bottom: 8px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 4px;
  color: white;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: white;
}

.contact-form textarea {
  min-height: 80px;
}

.contact-form button {
  align-self: flex-start;
  background: white;
  color: black;
  border: none;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.card-label {
  margin-top: 16px;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.coverflow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
}

#prevBtn {
  left: 10px;
}
#nextBtn {
  right: 10px;
}

/* HIDE CONTENT BELOW CAROUSEL (TEMP) */
.home,
#apparel,
#contact {
  display: none;
}

.bubble {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
