@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&family=Oswald:wght@400;500;600;700&display=swap');

:root {
  --blue-primary: #3b82f6;
  --blue-glow: rgba(59, 130, 246, 0.4);
  --bg-deep: #020202;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-deep);
}

.font-oswald {
  font-family: 'Oswald', sans-serif;
}

/* Cinematic Grain Effect */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.05;
}

/* Nav Styles */
nav.scrolled {
  background-color: rgba(2, 2, 2, 0.9);
  backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-link {
  color: #71717a;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Oswald', sans-serif;
  transition: all 0.4s ease;
  position: relative;
}

.nav-link:hover {
  color: #fff;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-primary);
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* Luxury Buttons */
.cta-button-luxury {
  background: var(--blue-primary);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.cta-button-luxury:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5);
}

/* Cards & Interactions */
.directory-card .inner-card {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.directory-card:hover .inner-card {
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(59, 130, 246, 0.1);
}

.directory-card .icon-brand {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.directory-card:hover .icon-brand {
    box-shadow: 0 0 30px var(--blue-glow);
}

.animate-pulse-slow {
  animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(0.98); }
}

/* Footer Link */
.footer-link {
  color: #52525b;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-family: 'Oswald', sans-serif;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  padding-left: 8px;
}

/* Reveal Animation Class */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Link */
.mobile-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  transition: color 0.3s ease;
}

.mobile-link:hover {
  color: var(--blue-primary);
}