/* ============================================
   IMPERIO SNEAKERS - Streetwear Landing
   ============================================ */

:root {
  --color-primary: #FFCC00;
  --color-primary-dark: #E6B800;
  --color-primary-light: #FFE066;
  --color-secondary: #00FF88;
  --color-secondary-dark: #00CC6A;
  --color-accent: #FF1744;
  --color-bg: #0A0A0A;
  --color-bg-card: #161616;
  --color-bg-elevated: #1F1F1F;
  --color-text: #FFFFFF;
  --color-text-muted: #A0A0A0;
  --color-text-dim: #6B6B6B;

  --ease-out-expo: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-button: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-enter: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  background: var(--color-bg);
}

body {
  background: var(--color-bg);
  overflow-x: hidden;
}

/* Selection */
::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

/* ============================================
   NOISE OVERLAY
   ============================================ */

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ============================================
   HEADER (H8 Glass Dock)
   ============================================ */

#header .nav-link {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s ease;
  position: relative;
}

#header .nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s ease, left 0.3s ease;
}

#header .nav-link:hover {
  color: #FFFFFF;
}

#header .nav-link:hover::after {
  width: 100%;
  left: 0;
}

#header .nav-cta:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(255, 204, 0, 0.4);
}

#header .nav-cta {
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

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

#mobile-menu .mobile-link {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.5rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

#mobile-menu .mobile-link:hover,
#mobile-menu .mobile-link:active {
  color: var(--color-primary);
  transform: translateX(4px);
}

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

.hero-bg-base {
  background:
    radial-gradient(ellipse 60% 50% at 20% 30%, rgba(255, 204, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 60% at 90% 80%, rgba(0, 255, 136, 0.06), transparent 60%),
    linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #0A0A0A 100%);
}

.hero-bg-dots {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at center, black 30%, transparent 80%);
}

.hero-photo-clip {
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 5% 100%);
}

@media (max-width: 768px) {
  .hero-photo-clip {
    clip-path: polygon(0 35%, 100% 25%, 100% 100%, 0 100%);
    opacity: 0.4;
  }
}

/* Gradient text accent */
.hero-gradient-text {
  background: linear-gradient(120deg, #FFCC00 0%, #FFE066 30%, #FFCC00 50%, #FF8800 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(255, 204, 0, 0.3));
  animation: shimmer-gradient 6s linear infinite;
}

@keyframes shimmer-gradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* CTA buttons */
.cta-primary {
  transition: transform 0.2s var(--ease-button), box-shadow 0.2s var(--ease-button), background 0.2s ease;
  box-shadow: 0 4px 24px rgba(255, 204, 0, 0.25);
}

.cta-primary:hover {
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 204, 0, 0.45);
}

.cta-primary .cta-arrow {
  transition: transform 0.2s ease;
}

.cta-primary:hover .cta-arrow {
  transform: translateX(4px);
}

.cta-secondary {
  transition: background 0.2s ease, border-color 0.2s ease;
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta-on-primary {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.cta-on-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BRANDS MARQUEE
   ============================================ */

.marquee-container {
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-content {
  display: flex;
  gap: 2rem;
  animation: scroll-left 35s linear infinite;
  width: max-content;
  align-items: center;
  padding: 1rem 0;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-pill {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.5rem, 7vw, 5rem);
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.3s ease;
  white-space: nowrap;
  line-height: 1;
}

.brand-pill.brand-accent {
  color: rgba(255, 204, 0, 0.4);
  -webkit-text-stroke: 1px rgba(255, 204, 0, 0.6);
}

.marquee-content:hover .brand-pill {
  color: rgba(255, 255, 255, 0.4);
}

.marquee-content:hover .brand-pill.brand-accent {
  color: rgba(255, 204, 0, 0.8);
}

/* ============================================
   STATS
   ============================================ */

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================
   ABOUT - Feature cards
   ============================================ */

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.25rem;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(255, 204, 0, 0.3);
  background: rgba(255, 204, 0, 0.04);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.15), rgba(255, 204, 0, 0.05));
  border: 1px solid rgba(255, 204, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-bottom: 0.875rem;
}

.feature-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.feature-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

/* ============================================
   CATEGORIES
   ============================================ */

.category-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--color-bg-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  aspect-ratio: 3/4;
  transition: transform 0.4s var(--ease-out-expo), border-color 0.3s ease, box-shadow 0.4s ease;
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 204, 0, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 204, 0, 0.15);
}

.category-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.55) saturate(1.1);
}

.category-card:hover .category-image img {
  transform: scale(1.08);
  filter: brightness(0.7) saturate(1.2);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.4) 60%, transparent 100%);
}

.category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 2;
}

.category-number {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.category-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.category-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  margin-bottom: 0.875rem;
}

.category-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.category-card:hover .category-arrow {
  background: var(--color-primary);
  color: var(--color-bg);
  transform: rotate(-45deg);
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: var(--color-bg-elevated);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-3px);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: background 0.3s ease, opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(10, 10, 10, 0.6);
  opacity: 1;
}

/* GLightbox custom styling */
.glightbox-clean .gslide-media {
  max-width: 90vw !important;
  max-height: 90vh !important;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  overflow: hidden;
}

.glightbox-clean .gslide-image img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.glightbox-container .goverlay {
  background: rgba(0, 0, 0, 0.92) !important;
}

/* ============================================
   REVIEWS
   ============================================ */

.review-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 1.75rem;
  transition: border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 204, 0, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover {
  border-color: rgba(255, 204, 0, 0.2);
  background: rgba(255, 204, 0, 0.025);
}

.review-card:hover::before {
  opacity: 1;
}

.review-author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  display: inline-block;
  transition: color 0.2s ease;
  text-decoration: none;
}

.review-author:hover {
  color: var(--color-primary);
}

/* ============================================
   CONTACT
   ============================================ */

.contact-info-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 2rem;
}

.info-row {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:first-child {
  padding-top: 0;
}

.info-row:last-of-type {
  border-bottom: none;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.12), rgba(255, 204, 0, 0.04));
  border: 1px solid rgba(255, 204, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  flex-shrink: 0;
}

.info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.info-value {
  font-size: 0.9375rem;
  color: #FFFFFF;
  line-height: 1.5;
  font-weight: 500;
}

.info-link {
  display: inline-block;
  font-size: 0.8125rem;
  color: var(--color-primary);
  margin-top: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: var(--color-primary-light);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-btn:hover {
  background: var(--color-primary);
  color: var(--color-bg);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.contact-btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--color-primary);
  color: var(--color-bg);
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.contact-btn-call:hover {
  background: var(--color-primary-light);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(255, 204, 0, 0.3);
}

.contact-btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #25D366;
  color: #FFFFFF;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.contact-btn-wa:hover {
  background: #1FB055;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-list a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--color-primary);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-enter), transform 0.7s var(--ease-enter);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .stat-number {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  #mobile-menu .mobile-link {
    font-size: 2rem;
  }

  .review-card {
    padding: 1.5rem;
  }

  .contact-info-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1rem;
  }

  .feature-title {
    font-size: 1.0625rem;
  }

  .category-title {
    font-size: 2rem;
  }
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee-content {
    animation: none;
  }
}
