/* impact.brussels Design System */

:root {
  --color-navy: #020617;
  --color-emerald-deep: #064e3b;
  --color-emerald: #10b981;
  --color-blue-deep: #0f172a;
}

/* Typography */
.font-serif-display {
  font-family: 'Playfair Display', serif;
}

.font-sans-ui {
  font-family: 'Inter', sans-serif;
}

.font-bricolage {
  font-family: 'Bricolage Grotesque', sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
}

/* Animations */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes float-reverse {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Backgrounds & Panels */
.bg-navy-emerald {
  background-color: #020617;
  background-image: radial-gradient(circle at 70% 0%, #064e3b 0%, #0f172a 40%, #020617 100%);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.glass-card-dark {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.glass-card-light {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-overlay {
  background: rgba(2, 6, 23, 0.75);
}

/* Policy Pages */
.policy-page .policy-hero {
  background: radial-gradient(circle at 70% 0%, rgba(16, 185, 129, 0.25) 0%, rgba(2, 6, 23, 0.95) 45%, #020617 100%);
}

.policy-page .policy-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
}

.policy-content h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.policy-content h2 {
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 600;
  color: #0f172a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.policy-content p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin-bottom: 1rem;
  color: #475569;
}

.policy-content li {
  margin-bottom: 0.5rem;
}

/* Cookie Banner */
.cookie-banner {
  max-width: 320px;
  width: 50vw;
  min-width: 240px;
}

/* Hover Effects */
.shine-hover {
  position: relative;
  overflow: hidden;
}

.shine-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
}

.shine-hover:hover::after {
  left: 150%;
}

/* Dropdown Menu Custom Styles */
.dropdown-transition {
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

#mobile-nav.scale-y-100 {
  transform: scaleY(1);
}

#mobile-nav.scale-y-0 {
  transform: scaleY(0);
}
