/*
Theme Name: EULEX
Theme URI: https://eulex.com
Description: Modern landing page theme for EULEX - AI-powered research assistant for EU regulatory professionals
Version: 1.0.0
Author: EULEX Team
Author URI: https://eulex.com
Text Domain: eulex
*/

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Screen reader only text */
.screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.screen-reader-text:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  display: block;
  width: auto;
  height: auto;
  padding: 15px 23px 14px;
  background-color: var(--color-beige-light);
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 0 2px 2px rgba(0,0,0,.6);
}

/* Skip link for accessibility */
.skip-link {
  background-color: var(--color-green);
  color: var(--color-dark);
  padding: 10px 20px;
  position: absolute;
  left: -9999px;
  top: 10px;
  z-index: 100000;
}

.skip-link:focus {
  left: 10px;
}

