/* ============================================
   Woodconnection EU – Shared Design System
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  --color-primary: #52d411;
  --color-primary-dark: #3fa80d;
  --color-primary-10: rgba(82, 212, 17, 0.1);
  --color-primary-20: rgba(82, 212, 17, 0.2);
  --color-primary-05: rgba(82, 212, 17, 0.05);

  --color-bg-light: #f9fcf8;
  --color-bg-dark: #162210;
  --color-surface-light: #ffffff;
  --color-surface-dark: #1f2e18;
  --color-text-main: #121b0d;
  --color-text-muted: #5a6b52;
  --color-text-subtle: #576b53;
  --color-border-light: #ebf3e7;
  --color-border-dark: #2a3b22;
  --color-gold: #cfae70;

  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
}

/* ---- Base Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background: var(--color-bg-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* ---- Material Symbols ---- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

@keyframes pop {
  0% {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.animate-pop {
  animation: pop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* ---- No Scrollbar Utility ---- */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}

.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ---- Hero Overlay Gradient ---- */
.hero-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.15) 0%,
      rgba(0, 0, 0, 0.55) 100%);
}

/* ---- SVG Timer Animation ---- */
@keyframes timer-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.timer-circle {
  animation: timer-pulse 2s ease-in-out infinite;
}

/* ---- Subtle float animation ---- */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.float-anim {
  animation: float 3s ease-in-out infinite;
}

/* ---- Custom focus ring ---- */
.focus-ring:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

/* ---- Active nav style ---- */
.nav-link-active {
  color: var(--color-primary) !important;
  font-weight: 600;
}