/* Reveryware AI - Main Stylesheet */

/* Import Inter font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Import Flag Icons CSS */
@import url('https://cdn.jsdelivr.net/gh/lipis/flag-icons@7.2.3/css/flag-icons.min.css');

/* CSS Custom Properties (Design System) */
:root {
  /* Colors */
  --primary-color: #1d3478;
  --secondary-color: #1e3a8a;
  --text-dark: #1a202c;
  --text-light: #1d3478;
  --background-white: #ffffff;
  --background-light: #f8fafc;
  --border-light: #e2e8f0;
  --shadow-light: rgba(0, 0, 0, 0.1);
  --shadow-medium: rgba(0, 0, 0, 0.15);
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-light: linear-gradient(135deg, rgba(29, 52, 120, 0.05), rgba(30, 58, 138, 0.05));
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8rem);
  --font-size-sm: clamp(0.825rem, 0.775rem + 0.25vw, 0.9rem);
  --font-size-base: clamp(0.875rem, 0.825rem + 0.25vw, 0.95rem);
  --font-size-lg: clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);
  --font-size-xl: clamp(1.05rem, 1rem + 0.25vw, 1.15rem);
  --font-size-2xl: clamp(1.2rem, 1.1rem + 0.5vw, 1.35rem);
  --font-size-3xl: clamp(1.4rem, 1.25rem + 0.75vw, 1.7rem);
  --font-size-4xl: clamp(1.75rem, 1.5rem + 1.25vw, 2rem);
  --font-size-5xl: clamp(1.9rem, 1.6rem + 1.5vw, 2.3rem);
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-base: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 64px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

h1 { font-size: var(--font-size-5xl); font-weight: 700; }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-3xl); }
h4 { font-size: var(--font-size-2xl); }
h5 { font-size: var(--font-size-xl); }
h6 { font-size: var(--font-size-lg); }

p {
  margin-bottom: var(--space-md);
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* Spacing Utilities */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-6 { margin-top: var(--space-xl); }
.mt-8 { margin-top: var(--space-2xl); }
.mt-12 { margin-top: var(--space-3xl); }
.mt-16 { margin-top: var(--space-4xl); }
.mt-20 { margin-top: var(--space-5xl); }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-6 { margin-bottom: var(--space-xl); }
.mb-8 { margin-bottom: var(--space-2xl); }
.mb-12 { margin-bottom: var(--space-3xl); }
.mb-16 { margin-bottom: var(--space-4xl); }
.mb-20 { margin-bottom: var(--space-5xl); }

.py-8 { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-12 { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }
.py-16 { padding-top: var(--space-4xl); padding-bottom: var(--space-4xl); }
.py-20 { padding-top: var(--space-5xl); padding-bottom: var(--space-5xl); }

/* Text Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-dark { color: var(--text-dark); }
.text-light { color: var(--text-light); }
.text-primary { color: var(--primary-color); }
.text-secondary { color: var(--text-light); }

/* Additional Utility Classes */
.mb-4 { margin-bottom: var(--space-lg); }
.mb-6 { margin-bottom: var(--space-xl); }
.font-semibold { font-weight: 600; }

/* Section Styles */
.section {
  padding: var(--space-4xl) 0;
}

.section-sm {
  padding: var(--space-3xl) 0;
}

.section-lg {
  padding: var(--space-5xl) 0;
}

.section-dark {
  background-color: var(--text-dark);
  color: var(--background-white);
}

.section-light {
  background-color: var(--background-light);
}

.section-gradient {
  background: var(--gradient-light);
}

/* Header Styles */
.header {
  background-color: var(--background-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  transition: all var(--transition-base);
}

.header.scrolled {
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) 0;
  min-height: 64px;
  gap: var(--space-lg);
}

.logo {
  display: flex;
  align-items: center;
  width: fit-content;
  flex-shrink: 0;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-dark);
  text-decoration: none;
  transition: transform var(--transition-fast);
}

.logo:hover {
  color: var(--primary-color);
  transform: scale(1.05);
}

.logo-img {
  height: 39px;
  width: auto;
  object-fit: contain;
  transition: all var(--transition-fast);
}

/* Navigation */
.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    height: 100%;
  }
}

.nav-link {
  color: var(--text-light);
  font-weight: 500;
  font-size: var(--font-size-lg);
  transition: color var(--transition-fast);
  position: relative;
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

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

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

/* Mobile Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform var(--transition-fast);
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

.mobile-menu-btn span {
  width: 24px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.mobile-menu-btn:hover span {
  background: var(--primary-color);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .header-actions {
    gap: var(--space-xl);
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--background-white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-100%);
  transition: transform var(--transition-base);
  z-index: var(--z-dropdown);
  padding-top: 80px;
}

.mobile-menu-header {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 10;
}

.mobile-menu-close {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.mobile-menu-close span {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 1px;
  transition: all var(--transition-base);
  position: absolute;
}

.mobile-menu-close span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-menu-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-menu-close:hover span {
  background: var(--primary-color);
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-nav {
  padding: var(--space-lg);
}

.mobile-nav-link {
  display: block;
  padding: var(--space-md) 0;
  color: var(--text-light);
  font-weight: 500;
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition-fast);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-color);
}

/* Header Actions (Language switcher + Mobile menu) */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  height: 100%;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: var(--space-xs);
  align-items: center;
  height: 100%;
}

.lang-btn {
  padding: var(--space-xs) var(--space-sm);
  border: none;
  background-color: transparent;
  color: var(--text-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: var(--font-size-base);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
}

.lang-btn:hover,
.lang-btn.active {
  background-color: rgba(29, 52, 120, 0.05);
  color: var(--primary-color);
  transform: translateY(-1px);
}

.lang-btn .fi {
  width: 20px;
  height: 15px;
  border-radius: 2px;
  display: inline-block;
}

/* Hero Section */
.hero {
  background: url('/images/hero/denhaag.jpg');
  background-size: 110%;
  background-position: center;
  background-repeat: no-repeat;
  padding: calc(var(--space-5xl) + 80px) 0 var(--space-5xl);
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: kenBurns 20s ease-in-out infinite alternate;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/hero/denhaag.jpg');
  background-size: inherit;
  background-position: inherit;
  background-repeat: no-repeat;
  z-index: 0;
  animation: kenBurns 20s ease-in-out infinite alternate;
}


.hero-content {
  position: relative;
  z-index: 2;
}

@keyframes kenBurns {
  0% {
    background-size: 110%;
    background-position: center center;
  }
  50% {
    background-size: 115%;
    background-position: 60% 40%;
  }
  100% {
    background-size: 120%;
    background-position: 40% 60%;
  }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin-bottom: var(--space-lg);
  color: white;
}

.hero .subtitle {
  font-size: var(--font-size-xl);
  color: white;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-image {
  margin-top: var(--space-2xl);
  max-width: 400px;
  height: 280px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  font-size: var(--font-size-lg);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: var(--font-size-base);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  gap: var(--space-sm);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--background-white);
  box-shadow: 0 6px 20px rgba(29, 52, 120, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 32px rgba(29, 52, 120, 0.35), 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--background-white);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background-color: var(--background-white);
  color: var(--primary-color);
  border: 1px solid rgba(29, 52, 120, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.hero .btn-secondary {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--background-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(29, 52, 120, 0.25), 0 4px 8px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-color);
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-dark);
  border: 2px solid var(--border-light);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-outline:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 52, 120, 0.15), 0 2px 8px rgba(0, 0, 0, 0.08);
  background-color: rgba(29, 52, 120, 0.05);
}

.btn-group {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

@media (max-width: 768px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .hero .btn-secondary {
    display: none;
  }
}

/* Cards */
.card {
  background-color: var(--background-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(226, 232, 240, 0.6);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.4));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(29, 52, 120, 0.1);
}

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

.card:hover h3,
.card:hover h4 {
  color: var(--primary-color);
  transform: translateY(-1px);
}

.card h3,
.card h4 {
  transition: all 0.3s ease;
}

.card-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  color: var(--background-white);
  font-size: var(--font-size-xl);
}

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform var(--transition-base);
}

.card-image:hover {
  transform: scale(1.02);
}

.card h3 {
  margin-bottom: var(--space-md);
  color: var(--text-dark);
}

.card p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

.card-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  transition: gap var(--transition-fast);
}

.card-link:hover {
  gap: var(--space-md);
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--background-white);
  padding: var(--space-xl) 0 var(--space-lg);
}

.footer-content {
  display: grid;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-section h4 {
  color: var(--background-white);
  margin-bottom: var(--space-md);
  font-size: var(--font-size-base);
}

.footer-section p,
.footer-section a,
.footer-section strong,
.footer-section div {
  color: #a0aec0;
  line-height: 1.6;
  font-size: var(--font-size-sm);
}

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

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-bottom {
  border-top: 1px solid #2d3748;
  padding-top: var(--space-md);
  text-align: center;
  color: #ffffff;
  font-size: var(--font-size-sm);
}

.footer-bottom p,
.footer-bottom a {
  color: #ffffff;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* Intersection Observer animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.loading {
  position: relative;
  overflow: hidden;
}

.loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(102, 126, 234, 0.1),
    transparent
  );
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus styles */
*:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--text-dark);
  color: var(--background-white);
  padding: 8px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  z-index: 1000;
}

.skip-link:focus {
  top: 6px;
}