/* =========================
 WORKS BASE
========================= */

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-primary);
}

/* =========================
 HERO WORKS
========================= */

.hero-works {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: 6px;
}

.hero-subtitle {
  margin-top: 1rem;
  opacity: 0.8;
  max-width: 600px;
}

/* =========================
 MINI MENU
========================= */

.works-filter {
  margin-top: 3rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.works-filter a {
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.works-filter a:hover {
  background: var(--color-accent);
  color: #000;
  box-shadow: 0 0 12px rgba(125, 210, 245, 0.6);
}

/* =========================
 WORKS SECTION
========================= */

.works-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.works-category h2 {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  color: var(--color-accent);
}

.works-category h3 {
  margin: 2rem 0 1rem;
  opacity: 0.85;
}

/* =========================
 VIDEO GRID
========================= */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  border: none;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* =========================
 IMAGE GRID
========================= */

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.work-card img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0 25px rgba(125, 210, 245, 0.35);
  transition: transform 0.3s ease;
}

.work-card img:hover {
  transform: scale(1.05);
}

/* =========================
 TIKTOK
========================= */

.tiktok-grid {
  display: flex;
  justify-content: center;
}

.tiktok-grid blockquote {
  max-width: 320px;
}

/* =========================
 MOBILE
========================= */

@media (max-width: 428px) {
  .hero-works {
    padding-top: 5rem;
  }

  .works-filter {
    gap: 1rem;
  }

  .works-filter a {
    font-size: 0.9rem;
  }
}
.soon-placeholder {
  border: 1px dashed var(--color-accent);
  border-radius: 16px;
  padding: 4rem 2rem;
  text-align: center;
  opacity: 0.7;
}
.floating-title {
  display: flex;
  gap: 0.15em;
}

.floating-title span {
  animation: floatWork 3s ease-in-out infinite;
  text-shadow: 0 0 12px var(--color-accent);
}

.floating-title span:nth-child(odd) {
  animation-delay: 0.15s;
}

@keyframes floatWork {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* =========================
 WORK CAPTIONS
========================= */

.work-caption {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  opacity: 0.75;
  text-align: center;
}
/* =========================
 SOON TEXT
========================= */

.soon-text {
  text-align: center;
  opacity: 0.65;
  font-style: italic;
  letter-spacing: 1px;
}
/* =========================
 GLOW TITLE WORKS
========================= */

.hero-title {
  text-shadow: 0 0 12px var(--color-accent);
  animation: worksFloat 3s ease-in-out infinite;
}

@keyframes worksFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/* =========================
 FOOTER FIX (CONTACT)
========================= */

.footer {
  font-family: var(--font-primary);
  text-align: center;
  padding: 2rem 1.5rem;
  opacity: 0.85;
}

.footer p {
  margin: 0;
}
