    /* ============================================================================
   NORTH FUNKTION - Design System
   Developed by staycreative.es 2025

   TABLE OF CONTENTS:
   1. CSS Variables (Design Tokens)
   2. Reset & Base Styles
   3. Typography
   4. Layout System
   5. Components
   6. Utilities
   7. Media Queries
   ============================================================================ */

/* ============================================================================
   1. CSS VARIABLES (DESIGN TOKENS)
   ============================================================================ */
:root {
  /* Colors - Primary Palette */
  --color-transparent: transparent;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-primary: #E8E0D4;
  --color-secondary: #E2D2BF;

  /* Colors - Neutrals */
  --color-gray-50: #F7F6EF;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #C5C5C5;
  --color-gray-300: #999999;
  --color-gray-400: #72706E;
  --color-gray-500: #5A5858;
  --color-gray-600: #545454;
  --color-gray-700: #323031;
  --color-gray-800: #262626;
  --color-gray-900: #000000;

  /* Colors - Semantic */
  --color-success: #42d1b5;
  --color-error: #f0506e;
  --color-warning: orange;

  /* Typography */
  --font-family-base: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Font Sizes - Fluid Scale */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.8rem;      /* 12.8px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-md: 1.1rem;      /* 17.6px */
  --font-size-lg: 1.4rem;      /* 22.4px */
  --font-size-xl: 1.6rem;      /* 25.6px */
  --font-size-2xl: 2rem;       /* 32px */
  --font-size-3xl: 2.5rem;     /* 40px */
  --font-size-4xl: 3rem;       /* 48px */
  --font-size-5xl: 4rem;       /* 64px */
  --font-size-6xl: 5rem;       /* 80px */

  /* Line Heights */
  --line-height-tight: 1;
  --line-height-snug: 1.1;
  --line-height-normal: 1.4;
  --line-height-relaxed: 1.6;

  /* Spacing Scale (based on 8px grid) */
  --space-0: 0;
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */

  /* Layout Sizes */
  --container-padding: 30px;
  --header-height: 80px;
  --section-padding: 5vh;
  --section-padding-large: 10vh;
  --section-padding-small: 3vw;

  /* Borders */
  --border-width: 1px;
  --border-width-thick: 1.5px;
  --border-color: var(--color-black);
  --border-style: solid;
  --border: var(--border-width) var(--border-style) var(--border-color);

  /* Border Radius */
  --radius-none: 0;
  --radius-sm: 5px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl:
  35px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 0 20px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 0 2.5em rgba(0, 0, 0, 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;
  --transition-none: 0s;

  /* Z-index Scale */
  --z-base: 0;
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  --z-preloader: 1111;

  /* Overlays */
  --overlay-dark: rgba(0, 0, 0, 0.6);
  --overlay-darker: rgba(0, 0, 0, 0.8);
  --overlay-light: rgba(224, 255, 83, 0.7);
}

/* ============================================================================
   2. RESET & BASE STYLES
   ============================================================================ */

/* Font Face */
@font-face {
  font-family: 'Satoshi';
  src: url('../../fonts/Satoshi-Variable.woff2') format('woff2'),
       url('../../fonts/Satoshi-Variable.woff') format('woff'),
       format('truetype');
  font-display: swap;
  font-style: normal;
}

/* Selection */
::selection {
  color: var(--color-white);
  background-color: var(--color-black);
}

/* Base Elements */
html,
body {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
  background-color: var(--color-primary);
  margin: 0;
  padding: 0;
}

/* Typography Reset */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  color: var(--color-black);
  margin: 0;
  line-height: var(--line-height-tight);
}

p {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: var(--font-weight-regular);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  margin: 0;
}

/* Lists */
ul {
  padding-left: 0;
  margin: 0;
}

ul li {
  list-style: none;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
}

.post ul li {
  list-style: initial !important;
}

/* Links */
a {
  color: var(--color-black);
  text-decoration: none;
  transition: var(--transition-base);
  word-wrap: break-word;
}

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

a span {
  display: inline-block;
}

/* Focus States */
:focus-visible {
  outline: 2px solid var(--color-gray-700);
  outline-offset: 2px;
}

/* Misc */
small {
  font-weight: var(--font-weight-regular) !important;
}

/* UIKit Overrides */
.uk-link:hover,
a:hover {
  text-decoration: none;
}

*+.uk-hr,
*+hr {
  margin-top: var(--space-1);
  margin-bottom: var(--space-4);
}


.uk-dotnav>*>* {
    border: 1px solid rgba(00, 00, 00, 1);
}

.uk-dotnav>.uk-active>* {
    background-color: rgba(00, 00, 00, 1);
}

hr.dark {
    border-top: 1px solid #000;
    margin-top: 20px;
}

.uk-navbar-toggle:hover, .uk-navbar-toggle[aria-expanded=true] {
    color: #000 !important;
}

/* ============================================================================
   3. TYPOGRAPHY SYSTEM
   ============================================================================ */

/* Heading Sizes */
h1 {
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
}

h3 {
  font-size: var(--font-size-lg);
}

.home h1 {
  font-size: 3.4rem;
}

/* Heading Utilities */
.uk-heading-xsmall {
  font-size: var(--font-size-lg) !important;
  margin: 0;
  line-height: var(--line-height-snug);
}

.uk-heading-small {
  font-size: var(--font-size-xl) !important;
  margin: 0;
  line-height: var(--line-height-snug);
}

.uk-heading-medium {
  font-size: var(--font-size-2xl) !important;
  margin: 0;
  line-height: var(--line-height-snug);
}

.uk-heading-large {
  font-size: var(--font-size-3xl) !important;
  margin: 0;
  line-height: var(--line-height-snug);
}

.uk-heading-xlarge {
  font-size: var(--font-size-5xl) !important;
  margin: 0;
  line-height: var(--line-height-snug);
}

/* Apply same sizes to paragraphs within headings */
.uk-heading-xsmall p { font-size: var(--font-size-lg) !important; }
.uk-heading-small p { font-size: var(--font-size-xl) !important; }
.uk-heading-medium p { font-size: var(--font-size-2xl) !important; }
.uk-heading-large p { font-size: var(--font-size-3xl) !important; }
.uk-heading-xlarge p { font-size: var(--font-size-5xl) !important; }

/* Text Utilities */
.uk-text-bold p {
  font-weight: var(--font-weight-bold);
}

.uk-text-medium {
  font-weight: var(--font-weight-semibold) !important;
}

.uk-text-large {
  font-size: 1.5rem;
  line-height: var(--line-height-normal);
}

.uk-text-large p {
  font-size: 1.5rem;
  line-height: var(--line-height-normal);
}

/* Text Truncation */
.ellipsis-two {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-three {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-two p,
.ellipsis-three p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ellipsis-two p {
  -webkit-line-clamp: 2;
}

.ellipsis-three p {
  -webkit-line-clamp: 3;
}

/* ============================================================================
   4. LAYOUT SYSTEM
   ============================================================================ */

/* Containers */
.uk-container-full {
  width: calc(100% - (var(--container-padding) * 2));
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-section {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container-border {
  border-top: var(--border-width-thick) var(--border-style) var(--border-color);
  border-bottom: var(--border-width-thick) var(--border-style) var(--border-color);
}

.container-text {
  max-width: 700px;
  margin: 0 auto;
}

.container-feed {
  width: calc(100% - 10%);
  padding-left: 10%;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-large {
  padding: var(--section-padding-large);
}

.section-small {
  padding: var(--section-padding-small);
}

/* Heights */
.uk-height-xlarge {
  height: 50vh;
}

/* ============================================================================
   5. COMPONENTS
   ============================================================================ */

/* Buttons */
button {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
}

.uk-button {
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
  font-weight: var(--font-weight-medium);
  border: 0;
  line-height: 1.5;
  text-transform: inherit;
  font-size: var(--font-size-md);
  -webkit-appearance: none !important;
  transition: var(--transition-base);
  padding: 0;
  border-radius: 30px;
    border-color: none;

  -webkit-transition: ease-in-out, .30s ease-in-out;
  transition: ease-in-out, .30s ease-in-out;


}

/* Button Default (Black underline) */
.uk-button-default {
  position: relative;
  background-color: var(--color-black) !important;
  color: var(--color-transparent) !important;
  padding: var(--space-4) var(--space-8);
  color: var(--color-white)  !important;
  border: 1px solid #000 !important;


}

.uk-button-default:hover {
  background-color: var(--color-transparent) !important;
  color: var(--color-black) !important;
}



/* Button Primary (White underline) */
.uk-button-primary {
  position: relative;
  background-color: transparent !important;
  color: var(--color-white) !important;
  padding: var(--space-1);
  text-decoration: none;
}

.uk-button-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: var(--border-width);
  width: 100%;
  background-color: var(--color-white);
  transition: width 0.4s ease;
}

.uk-button-primary::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 100%;
  transform: translateX(-5px);
  width: 5px;
  height: 5px;
  background-color: var(--color-white);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.uk-button-primary:hover::after {
  width: 0;
}

.uk-button-primary:hover::before {
  transform: translateX(0);
  opacity: 0;
}

/* Button Italic Effect */
#button-italic {
  display: inline-block;
  min-width: max-content;
  font-style: normal;
  border: var(--border);
  width: calc(100% - 100px);
  padding: var(--space-1) 0;
}

#button-italic span {
  width: 100%;
}

#button-italic span.italic-effect {
  font-style: italic;
}

/* Forms */
.form {
  position: relative;
}

.form input[type=text],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form input[type=tel],
.form input[type=search],
.form select,
.form textarea {
  min-height: 40px;
  margin-top: 0 !important;
  padding: var(--space-1) var(--space-2);
  border: 0;
  border-bottom: var(--border);
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  margin-bottom: var(--space-2);
  color: var(--color-black) !important;
  font-size: var(--font-size-base);
  height: auto;
  font-family: var(--font-family-base);
  font-optical-sizing: auto;
}

.form input::placeholder,
.form textarea::placeholder {
  color: var(--color-gray-400) !important;
  font-size: var(--font-size-sm) !important;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  background-color: transparent !important;
  color: var(--color-black) !important;
}

.form .uk-checkbox {
  border-color: var(--color-black) !important;
  border-radius: var(--radius-lg);
}

.form .uk-checkbox:checked,
.form .uk-checkbox:checked:focus {
  background-color: var(--color-black);
}

.form .uk-radio:checked,
.form .uk-radio:checked:focus {
  background-color: var(--color-black);
}

/* Preloader */
.preloader {
  position: fixed;
  z-index: var(--z-preloader);
  width: 100vw;
  height: 100vh;
  opacity: 1;
  background: var(--color-secondary);
  top: 0;
  left: 0;
}

.preloader img {
  animation: heartbeat 1.5s ease-out infinite normal;
  width: 120px;
  height: 120px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes heartbeat {
  0% { transform: scale(0.95) translate(-50%, -50%); opacity: 0.6; }
  15% { transform: scale(1) translate(-50%, -50%); opacity: 1; }
  30% { transform: scale(0.95) translate(-50%, -50%); opacity: 0.6; }
  45% { transform: scale(1) translate(-50%, -50%); opacity: 1; }
  80% { transform: scale(0.95) translate(-50%, -50%); opacity: 0.6; }
  100% { transform: scale(0.95) translate(-50%, -50%); opacity: 0.6; }
}

/* Header & Navigation */
header {
  height: var(--header-height);
}

nav {top: 20px;}


.uk-dropdown-nav>li>a {color: #000 !important;}


.uk-navbar .logo-center {
    background-image: url(../../front_img/logo-light.svg);
    width: 364px;
    display: block;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease-in-out;
    opacity: 1;
}


.uk-navbar.uk-active .logo-center {
    background-image: url(../../front_img/logo-light-alt.svg);
    width: 75px;
    height: 40px;
}

.uk-navbar {
  height: var(--header-height);
  background-color: var(--color-transparent);
  height: 60px !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fix para que el logo no bloquee los clics del menú en mobile */
.uk-navbar-center {
  pointer-events: none;
}

.uk-navbar-center > a {
  pointer-events: auto;
}

.uk-navbar-left {
  position: relative;
  z-index: 10;
}

.uk-navbar.uk-active  {
    top: 20px !important;
}

.home .uk-navbar .uk-dropdown.menu-drop {
    box-shadow: none !important;
    top: 60px !important;
    left: -31px !important;
    border: 1px solid #000;
    background-color: rgba(226, 210, 191, 1);
    min-width: 300px !important;
    padding: 30px !important;
}

.uk-navbar .uk-dropdown.menu-drop {
    box-shadow: none !important;
    top: 60px !important;
    left: -31px !important;
    border: 1px solid #000;
    background-color: rgba(232, 224, 212, 1);
    min-width: 300px !important;
    padding: 30px !important;
}


.blocks .uk-grid-large.uk-flex.uk-flex-middle {padding-top: 5vh;}

/* .menu-drop .uk-nav > li {
    margin: 5px 0;
} */
 .menu-drop .uk-nav > li:first-child > a {
    padding-top: 5px !important;
}


.menu-drop .uk-nav > li > a {
    font-size: 1.6rem !important;
    padding: 20px 0 0 !important;
    color: #000 !important;
    font-weight: 500;
    /* border-bottom: 1px solid rgba(0,0,0,0.1); */
}

.menu-drop .uk-nav > li:last-child > a {
    border-bottom: none;
}

.menu-drop .uk-nav > li > a:hover,
.menu-drop .uk-nav > li.uk-active > a {
    color: #000 !important;
    text-decoration: none;
}

.uk-navbar.uk-active .uk-dropdown.menu-drop {
    background-color: rgba(232, 224, 212, 1);
}

.uk-navbar .uk-container-xlarge {
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.uk-navbar.uk-active .uk-container-xlarge {
        /* background-color: var(--color-primary) !important; */
        /* background-color: rgba(232, 224, 212, 1); */
}

.navbar-container {
    margin-left: 30px;
    margin-right: 30px;
    width: calc(100% - 60px);
}


.border-menu {border: 1px solid #000; padding-left: 30px; padding-right: 30px; background-color: rgba(232, 224, 212, 1);}
.home .border-menu {background-color: transparent !important;}
.home .uk-navbar.uk-active  .border-menu {background-color: rgba(232, 224, 212, 1) !important;}

/* ========================================
   CLASES REUTILIZABLES - HOVER UNDERLINE
   ======================================== */

.langs .uk-drop.uk-open {
    box-shadow: none;
    background-color: #e8e0d4!important;
    border: 1px solid #000;
    width: 80px;
    top: 60px !important;
}



/* Clase base para hover con línea de 1px */
.hover-underline,
.uk-navbar-nav > li:not(.langs) > a,
.menu-drop .uk-nav > li > a,
footer a {
    position: relative;
    display: inline-block;
}

.hover-underline::after,
.uk-navbar-nav > li:not(.langs) > a::after,
.menu-drop .uk-nav > li > a::after,
footer a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

/* Hover directo en enlaces <a> con la clase */
a.hover-underline:hover::after,
.uk-navbar-nav > li:not(.langs) > a:hover::after,
.menu-drop .uk-nav > li > a:hover::after,
footer a:hover::after {
    width: 100%;
}

/* Hover desde enlace padre para elementos internos */
a:hover .hover-underline::after {
    width: 100%;
}

/* Animación inversa al quitar hover */
a.hover-underline:not(:hover)::after,
.uk-navbar-nav > li:not(.langs) > a:not(:hover)::after,
.menu-drop .uk-nav > li > a:not(:hover)::after,
footer a:not(:hover)::after,
a:not(:hover) .hover-underline::after {
    left: auto;
    right: 0;
    transition: width 0.3s ease-in-out;
}

/* Clase para hover con línea de 3px (bordes gruesos) */
/* Solo se activa cuando un enlace padre tiene hover */
.hover-underline-thick {
    position: relative;
}

.hover-underline-thick::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

a:hover .hover-underline-thick::after {
    width: 100%;
}

a:not(:hover) .hover-underline-thick::after {
    left: auto;
    right: 0;
    transition: width 0.3s ease-in-out;
}

/* Excluir enlaces con solo imágenes, botones, enlaces sociales y selector de idiomas de la animación */
.uk-navbar-nav > li > a:has(> img:only-child)::after,
.menu-drop .uk-nav > li > a:has(> img:only-child)::after,
footer a:has(> img:only-child)::after,
.uk-navbar-center > a:has(> img)::after,
.uk-navbar-toggle::after,
.uk-navbar-toggle::before,
.uk-navbar-toggle .uk-margin-small-left::after,
.menu-drop a.social::after,
footer a.social::after,
.uk-navbar-nav > li.langs > a::after {
    display: none !important;
}

/* Selector de idiomas - sin estilos de hover */
.uk-navbar-nav > li.langs {
    display: flex !important;
    align-items: center !important;
    height: 60px !important;
}

.uk-navbar-nav > li.langs > a {
    position: static !important;
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.uk-navbar-nav > li.langs > a::before,
.uk-navbar-nav > li.langs > a::after {
    content: none !important;
    display: none !important;
}

.uk-navbar-nav > li.langs .uk-navbar-dropdown-nav > li > a {
    position: relative !important;
    display: inline-block !important;
    color: #000;
}

.uk-navbar-nav > li.langs .uk-navbar-dropdown-nav > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: currentColor;
    transition: width 0.3s ease-in-out;
}

.uk-navbar-nav > li.langs .uk-navbar-dropdown-nav > li > a:hover::after {
    width: 100%;
}

.uk-navbar-nav > li.langs .uk-navbar-dropdown-nav > li > a:not(:hover)::after {
    left: auto;
    right: 0;
    transition: width 0.3s ease-in-out;
}

.uk-navbar-nav > li.langs > a:hover,
.uk-navbar-nav > li.langs .uk-navbar-dropdown-nav > li > a:hover {
    background-color: transparent !important;
    color: inherit !important;
    text-decoration: none !important;
}

.uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle {
    height: 60px;
    min-height: 60px;
}

.uk-navbar-right .uk-navbar-nav {
    display: flex;
    align-items: center;
}

.uk-navbar-right .uk-navbar-nav > li {
    display: flex;
    align-items: center;
    height: 60px;
}

.uk-navbar-right .uk-navbar-nav > li > a {
    display: flex;
    align-items: center;
    height: 100%;
}

.uk-navbar .uk-container-xlarge{
    /* border: 1px solid #000; */
    width: auto;
}

.uk-navbar-container {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  position: relative;
  z-index: var(--z-sticky);
}

.uk-navbar ul li a {
  color: var(--color-dark);
  font-size: var(--font-size-base);
}

.uk-navbar ul li.bg-dark a {
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    align-items: center;
    height: 100%;
}

.uk-navbar ul li.uk-active a {
  color: var(--color-primary);
}

.uk-navbar ul li a:hover {
  color: var(--color-primary);
}

.uk-navbar-nav > li > a {
  text-transform: initial;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-regular);
  color: var(--color-black);
  transition: var(--transition-none);
}

.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a[aria-expanded=true] {
  text-decoration: line-through;
  color: var(--color-black);
}

.uk-navbar-nav > li.uk-active > a {
  font-weight: var(--font-weight-bold);
}

/* Special 6th menu item styling */
.uk-navbar-nav > li:nth-child(6) a {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  border: var(--border);
  padding: 0.2rem 1rem !important;
  min-height:
  35px !important;
  border-radius: var(--radius-xl);
  margin-top: 20px;
}

.uk-navbar-nav > li:nth-child(6) a:hover {
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
  border: var(--border);
}

/* Icons */
.icon {
  background-image: url('../../front_img/assets-sprite.svg');
  display: inline-block;
  background-size: 1000px 500px;
  transition: var(--transition-base);
}

.icon.facebook { width: 30px; height: 30px; background-position: -125px 0; padding: 7px; box-sizing: content-box; }
.icon.instagram { width: 30px; height: 30px; background-position: -155px 0; padding: 7px; box-sizing: content-box; }
.icon.twitter { width: 30px; height: 30px; background-position: -185px 0; padding: 7px; box-sizing: content-box; }
.icon.linkedin { width: 30px; height: 30px; background-position: -215px 0; padding: 7px; box-sizing: content-box; }
.icon.user { width: 30px; height: 30px; background-position: -245px 0; padding: 7px; box-sizing: content-box; position: relative; margin-bottom: 4px; }
.icon.tripadvisor { width: 30px; height: 30px; background-position: -125px -30px; padding: 7px; box-sizing: content-box; }
.icon.check { width: 20px; height: 20px; background-position: -380px 0; position: relative; top: 5px; }

.icon.facebook:hover,
.icon.instagram:hover {
  filter: invert(100%);
}

/* Notifications */
.uk-notification-message {
  background-color: var(--color-white);
  border: var(--border-width) solid #eee;
  font-size: var(--font-size-base);
}

.uk-notification {
  width: 400px;
}

.uk-notification-top-center {
  margin-left: -200px;
}

.uk-notification-message.uk-notification-message-danger {
  background-color: var(--color-error);
  color: var(--color-white);
}

.uk-notification-message.uk-notification-message-primary {
  background-color: var(--color-success);
  color: var(--color-white);
}

/* ============================================================================
   6. UTILITIES
   ============================================================================ */

/* Color Utilities */
.bg-white { background-color: var(--color-white) !important; }
.bg-grey { background-color: var(--color-gray-500) !important; }
.bg-light { background-color: var(--color-gray-100) !important; }
.bg-dark { background-color: var(--color-black) !important; }
.bg-primary { background-color: var(--color-primary) !important; }
.bg-secondary { background-color: var(--color-secondary) !important; }

.white, .white p { color: var(--color-white) !important; }
.grey, .grey p { color: var(--color-gray-500) !important; }
.light { color: var(--color-gray-600) !important; }
.light p { color: var(--color-gray-200) !important; }
.dark, .dark p { color: var(--color-black) !important; }
.primary, .primary p { color: var(--color-black) !important; }

/* Border Utilities */
.b-bottom { border-bottom: var(--border); }
.b-top { border-top: var(--border); }
.border-left { border-left: var(--border); }
.border-top { border-top: var(--border); }
.b-right { border-right: var(--border); }

.uk-border-rounded { border-radius: var(--radius-lg) !important; }
.uk-border-rounded.left { border-radius: var(--radius-lg) 0 0 var(--radius-lg) !important; }
.uk-border-rounded.right { border-radius: 0 var(--radius-lg) var(--radius-lg) 0 !important; }
.uk-border-rounded-small { border-radius: var(--radius-lg) !important; }


.uk-slidenav {color: #000; border: 1px solid #000;}

/* Shadow */
.shadow {
  box-shadow: var(--shadow-sm);
}

/* Transition */
.transition {
  transition: var(--transition-base);
}

/* Background Image */
.bg-img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-img img {
  width: 100%;
}

/* Overlays */
.overlay {
  background-color: var(--overlay-dark);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  transition: var(--transition-base);
}

.overlay-light {
  background-color: var(--overlay-light);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  transition: var(--transition-base);
  mix-blend-mode: multiply;
}

.overlay-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, transparent 50%, var(--color-black) 100%);
  transition: var(--transition-base);
}

.overlay-bottom {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-base);
  mix-blend-mode: multiply;
  background: linear-gradient(to bottom, transparent 0%, var(--overlay-dark) 100%);
  transition: var(--transition-base);
}

/* Misc Utilities */
.clear {
  clear: both;
}

/* Lines with Dots */
hr.line-right {
  border-top: var(--border);
  position: relative;
}

hr.line-right::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--color-black);
  vertical-align: middle;
  position: absolute;
  right: 0;
  bottom: -3px;
}

hr.line-left {
  border-top: var(--border);
  position: relative;
}

hr.line-left::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  background-color: var(--color-black);
  vertical-align: middle;
  position: absolute;
  left: 0;
  bottom: -3px;
}

/* UK Overlay */
.uk-overlay-primary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 0%, var(--color-black) 100%);
}

/* ============================================================================
   7. PAGE-SPECIFIC STYLES
   ============================================================================ */

/* Home Page */
.home .header {
    height: 100vh;
    margin-top: -80px;
    min-height: calc(100vh - 80px);
}

.home .header .header-text {
    padding: 10vh;
}

.home .header .uk-background-cover {
         height: 100vh;
}

.home .projects .ellipsis-three {
  min-height: 80px;
}

.home .projects .grid-nav {
  border-bottom: var(--border);
  padding: 0 var(--container-padding) var(--container-padding) var(--container-padding);
}

.home .services ul li {
    border-top: 1px solid #000;
}

.home .services ul li:last-child {
    border-bottom: 1px solid #000;
    padding-bottom: 20px;
}

/* Prevent UIkit from adding extra borders when accordion item is open */
.home .services ul li.uk-open,
.home .services ul li.uk-open + li {
    border-top: 1px solid #000 !important;
    border-bottom: none !important;
}

.home .services .uk-accordion-content {
    border-bottom: none !important;
}

.home .services ul li .uk-accordion-title {
    font-size: 2.6rem;
    padding-top: 20px;
}

.home .services .uk-accordion-title::before {
    width: 30px !important;
    height: 60px !important;
    background-size: 20px 20px !important;
}

/* PRODUCTS */
.flat-desc p {margin: revert-layer;}
.flat-desc h3 {font-size: 1.6rem; font-weight: 600;}
.feed-products .border-top {border-top: 1px solid #000;}
.feed-products .border-left {border-left: 1px solid #000;}

.feed-products .uk-subnav-pill>*>:first-child {
    color: #000 !important;
}

.feed-products .uk-subnav-pill>*>a {
    padding: 0px 0px;
    margin: 0px 10px;
    border-radius: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feed-products .uk-subnav-pill>.uk-active>a {
    background-color: #000;
    border-radius: 30px;
    color: #fff !important;
    padding: 3px 10px;
    margin-left: -2px;
}

.feed-products .uk-subnav-pill>.uk-active>a::after {
    display: none !important;
}

.feed-products .uk-subnav-pill>.uk-active>a:hover {
    background-color: #000;
}

.feed-products .uk-subnav-pill>*>a:hover {
    background-color: transparent;
}


.landing .intro .uk-slideshow {
        aspect-ratio: 3/4;
    }
.landing .intro .uk-slideshow-items {
        height: 100%;
    }
.landing .intro .panel-video {
        width: 100%;
        height: 100%;
        position: relative;
    }
.landing .intro .panel-video video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* .projects .project img {
  width: 100%;
  height: auto;
  display: block;
}

.projects .project .project-name {
  position: absolute;
  top: -30px;
  font-weight: var(--font-weight-semibold);
}

.projects .project .project-cat {
  position: absolute;
  bottom: -30px;
}

.projects .project .project-base {
  position: absolute;
  bottom: -30px;
  right: 0;
}

.project-name,
.project-cat,
.project-base {
  display: none;
  transform: translateY(0);
  transition: opacity 0s ease, transform 0s ease;
  position: relative;
  z-index: 92;
  font-size: var(--font-size-sm);
}

.project.hover-visible .project-name,
.project.hover-visible .project-cat,
.project.hover-visible .project-base {
  display: block;
  transform: translateY(0);
  color: var(--color-black);
} */

/* Product Individual - Hover Effects */
.product-ind h4::after {
    bottom: -3px;
}

/* Footer */
/* footer {
  margin-bottom: var(--container-padding);
} */

footer .uk-nav-default > li > a {
  color: var(--color-white);
  padding: 2px 0;
}

footer .uk-nav-default > li > a:hover {
  color: var(--color-primary);
}

footer .footer-list {
  border-left: var(--border-width) solid var(--color-white);
  padding-right: var(--container-padding);
}

footer li a,
footer li {
  color: var(--color-white);
  list-style: none !important;
  font-size: var(--font-size-base);
  padding: 2px 0;
}

/* footer li a:hover {
  color: var(--color-secondary) !important;
} */

/* footer a:hover {
  color: var(--color-secondary) !important;
} */

footer small {
  font-size: var(--font-size-xs);
}

footer .b-left {
  border-left: var(--border-width) solid var(--color-white);
  padding-left: 20px;
}

footer .container-section {
  padding-left: 50px;
  padding-right: 50px;
}

footer .container-logo {
  padding: 0 40px;
}

.footer-logo {
  display: inline-block;
}

.footer-logo img {
  width: 100%;
  max-width: 250px;
}

.footer-logo p {
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 20px;
}

.copyright {
  font-size: var(--font-size-sm);
}

.autor {
  font-size: var(--font-size-sm);
  margin-bottom: 0;
  opacity: 0.6;
}

.autor a {
  font-weight: var(--font-weight-regular);
  margin-top: 10px !important;
  color: var(--color-gray-300);
}

.autor b {
  font-weight: var(--font-weight-bold);
}

/* Offcanvas Menu (Hamburger) */
.uk-navbar-toggle {
  width: 80px;
  color: var(--color-dark);
  transition: var(--transition-base);
  float: left;
}

.uk-navbar-toggle:hover {
  transform: scale(1.03);
}

.uk-navbar-toggle svg {
  width: 30px;
}

.uk-navbar-toggle.menu-open .uk-icon svg {
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  min-height: 30px !important;
}

.uk-navbar-toggle.menu-open span[class*="uk-icon"] {
  display: inline-block !important;
  width: 30px !important;
  height: 30px !important;
}

/* Offcanvas Sidebar */
#offcanvas-menu .uk-offcanvas-bar {
  padding: var(--space-16) var(--space-12);
  background-color: var(--color-primary);
  width: 320px;
}

/* Close Button */
#offcanvas-menu .uk-offcanvas-close {
  color: var(--color-black);
  transition: var(--transition-base);
}

#offcanvas-menu .uk-offcanvas-close:hover {
  transform: rotate(90deg);
}

/* Menu Items */
#offcanvas-menu .uk-nav-primary > li > a {
  color: var(--color-black);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-regular);
  padding: var(--space-3) 0;
  transition: var(--transition-base);
  position: relative;
}

#offcanvas-menu .uk-nav-primary > li > a:hover {
  color: var(--color-black);
  transform: translateX(10px);
}

#offcanvas-menu .uk-nav-primary > li.uk-active > a {
  font-weight: var(--font-weight-bold);
  color: var(--color-black);
}

/* Language Header */
#offcanvas-menu .uk-nav-header {
  color: var(--color-black);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-top: var(--space-4);
}

/* Language Items */
#offcanvas-menu .uk-nav-primary > li > a [uk-icon] {
  margin-right: var(--space-2);
}

/* Divider */
#offcanvas-menu .uk-nav-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  margin: var(--space-4) 0;
}

/* Animation for menu items */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================================================
   ACCESSIBILITY IMPROVEMENTS - WCAG 2.1 AA for Kit Digital
   ============================================================================ */

/* Skip to main content link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 9999;
  font-weight: bold;
}

.skip-link:focus {
  top: 0;
}

/* Enhanced focus styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #040f0c;
  outline-offset: 2px;
}

/* Focus visible for buttons */
.uk-button:focus-visible {
  outline: 3px solid #040f0c;
  outline-offset: 2px;
}

/* Focus for navigation items */
.uk-navbar-nav a:focus-visible,
.uk-nav a:focus-visible {
  outline: 3px solid #040f0c;
  outline-offset: 2px;
}

/* Cookies */
#cookieMessageWrapper {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 997;
  height: 100%;
  background: rgba(38,38,38,0.6);
}

#cookieMessage {
  margin: 0 auto;
  position: absolute;
  padding: 40px;
  width: 80%;
  left: 50%;
  top: 50%;
  max-width: 580px;
  transform: translateX(-50%) translateY(-50%);
  background-color: #EBE6DC;
  text-align: center;
}

#cookieMessage .cookies-logo {
  width: 130px;
}

#cookieMessage p {
  margin: 20px 0;
  color: #444;
  text-align: center;
}

.cookie-consent-options {
  margin-top: 10px;
  color: #000;
}

#cookieMessage h3 {
  font-size: 1.6rem;
}

#cookieMessage .uk-link {
  margin-top: 20px;
  color: #040f0c;
  display: inline-block;
  padding: 10px;
  vertical-align: middle;
}

#cookieMessage:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#cookieClose {
  display: inline-block;
  margin-top: 20px;
  cursor: pointer;
  margin-right: 5px;
}

#cookieClose:hover {
  color: #fff;
}

#cookieNone {
  margin-top: 20px;
}

#cookieMessageWrapper h4.uk-modal-title {
  font-size: 1rem;
}

#cookieMessageWrapper .uk-link {
  color: #040f0c;
  display: inline-block;
  padding: 20px;
  vertical-align: middle;
}

#cookieMessageWrapper label {
  margin-right: 10px;
  text-transform: uppercase;
  font-size: 0.8rem;
}

#cookieMessageWrapper .uk-checkbox {
  border-color: #040f0c !important;
  margin-right: 5px;
}

#cookieMessageWrapper .uk-checkbox:checked {
  background-color: #040f0c;
}

#cookieMessageWrapper .uk-checkbox:disabled:checked {
  background-color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.uk-button-accept {
  background-color: #040f0c;
  color: #DDBE94 !important;
  border: 1px solid #040f0c;
  padding: 10px 20px !important;
  margin: 2px;
}

.uk-button-accept:hover {
  background-color: #DDBE94;
  color: #040f0c !important;
  border: 1px solid #040f0c;
}

.uk-button-decline {
  background-color: transparent;
  color: #040f0c !important;
  border: 1px solid #040f0c;
  padding: 10px 20px !important;
  margin: 2px;
}

.uk-button-decline:hover {
  background-color: #040f0c;
  color: #DDBE94 !important;
  border: 1px solid #040f0c;
}

.uk-button-decline-all {
  background-color: transparent;
  color: #040f0c !important;
  border: 1px solid #040f0c;
  padding: 10px !important;
  margin: 2px;
}

.uk-button-decline-all:hover {
  background-color: #DDBE94;
  color: #040f0c !important;
}

#cookieMessageWrapper .uk-link {
  color: #000;
  display: inline-block;
  padding: 20px;
  vertical-align: middle;
}

#cookieMessageWrapper .uk-checkbox {
  border-color: #000 !important;
}

#cookieMessageWrapper .uk-checkbox:checked {
  background-color: #000;
}

#cookieMessageWrapper .uk-checkbox:disabled:checked {
  background-color: #f5e9c9;
  border-color: #f5e9c9 !important;
}

#cookieMessageWrapper.active {
  display: flex;
}

.uk-button-contact {
    background-color: #000;
    color: white;
    text-decoration: none !important;
    border-radius: 0;
    border-left: 1px solid #000;
    border-right: 1px solid #000;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

}
.uk-button-contact:hover {
    background-color: #E2D2BF;
    color: #000 !important;
}
.uk-button-contact::after {display: none;}

/* Big Dot */
.big-dot {
    font-size: 4rem;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    bottom: 9px;
}

/* ============================================================================
   8. MEDIA QUERIES
   ============================================================================ */

/* Large Screens (< 1600px) */
@media only screen and (max-width: 1599px) {
  .home .solutions .uk-subnav {
    padding-bottom: 0;
    border: 0;
  }

  .home .solutions .uk-subnav-pill > .uk-active > a::after {
    display: none;
  }

  .home .solutions .uk-subnav li a {
    padding: 10px;
  }

  .home .solutions .uk-subnav-pill > * > :first-child {
    border-bottom: var(--border);
    margin-top: 5px;
  }

  .home .solutions .uk-subnav-pill > * > :first-child:hover {
    color: var(--color-white);
    background-color: var(--color-black);
  }
}

/* Medium-Large Screens (< 1200px) */
@media only screen and (max-width: 1199px) {
  .section-text {
    padding: 5vh;
  }

  .text.section-text {
    padding: 3vh !important;
  }

  /* Adjust heading sizes */
  .uk-heading-xsmall { font-size: 1.2rem !important; line-height: 1.2; }
  .uk-heading-small { font-size: 1.6rem !important; line-height: 1.2;}
  .uk-heading-medium { font-size: 2rem !important; line-height: 1.2;}
  .uk-heading-large { font-size: 2.6rem !important; line-height: 1.2; }
  .uk-heading-xlarge { font-size: 3.6rem !important; line-height: 1.2; }

  .uk-heading-xsmall p { font-size: 1.2rem !important; line-height: 1.2; }
  .uk-heading-small p { font-size: 1.6rem !important; line-height: 1.2;}
  .uk-heading-medium p { font-size: 2rem !important; line-height: 1.2;}
  .uk-heading-large p { font-size: 2.6rem !important; line-height: 1.2; }
  .uk-heading-xlarge p { font-size: 3.6rem !important; line-height: 1.2; }


  /* HOME - responsive adjustments */
  .home .header .uk-background-cover {
      height: 60vh;
  }

  .home .header .header-text{
      padding: 5vh;
  }

  .home .header {
      height: auto;
      margin-top: -80px;
      min-height: auto;
  }

  .big-dot {
    font-size: 1.4rem;
    line-height: 1;
    vertical-align: middle;
    position: relative;
    bottom: 4px;
    }

    .home .header .header-text {padding: 40px;}

    .home .services ul li .uk-accordion-title {
            font-size: 2.2rem;
    }

}

/* Medium Screens (< 960px) */
@media (max-width: 959px) {
  :root {
    --container-padding: 20px;
  }

  .section-large {
    padding: 5%;
  }

  .uk-navbar-container:not(.uk-navbar-transparent) {
    padding-left: 20px;
  }

  /* Offcanvas wider on tablets */
  #offcanvas-menu .uk-offcanvas-bar {
    width: 60vw;
    padding: var(--space-12) var(--space-8);
  }

  footer .container-section {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
  }

  footer .container-logo {
    padding: 0 var(--container-padding);
  }

  /* Adjust heading sizes */
  .uk-heading-xsmall { font-size: 1.2rem !important; }
  .uk-heading-small { font-size: 1.4rem !important; }
  .uk-heading-medium { font-size: 1.6rem !important; }
  .uk-heading-large { font-size: 2.2rem !important; }
  .uk-heading-xlarge { font-size: 3rem !important; }

  .uk-heading-xsmall p { font-size: 1.2rem !important; }
  .uk-heading-small p { font-size: 1.4rem !important; }
  .uk-heading-medium p { font-size: 1.6rem !important; }
  .uk-heading-large p { font-size: 2.2rem !important; }
  .uk-heading-xlarge p { font-size: 3rem !important; }

    .intro-padding {
    padding: 40px 40px 0 40px;
    }

    .home .services ul li .uk-accordion-title {
            font-size: 1.8rem;
    }

    .home .services .uk-accordion-title::before {
        width: 20px !important;
        height: 40px !important;
        background-size: 20px 20px !important;
    }

    .uk-navbar .logo-center {
        background-image: url(../../front_img/logo-footer.svg);
        height: 32px;
        width: 60px;
    }

    .navbar-container {
        margin-left: 0px;
        margin-right: 0px;
        width: 100%;
    }

    .feed-products .border-left {
        border-left: 0;
    }


}

/* Small Screens (< 640px) */
@media only screen and (max-width: 639px) {
  :root {
    --container-padding: 20px;
  }

  /* Full width offcanvas on mobile */
  #offcanvas-menu .uk-offcanvas-bar {
    width: 85vw;
    padding: var(--space-10) var(--space-6);
  }

  /* Smaller font sizes for mobile menu */
  #offcanvas-menu .uk-nav-primary > li > a {
    font-size: var(--font-size-lg);
    padding: var(--space-2) 0;
  }

  footer .container-logo {
    padding: 0 20px;
  }

  /* Adjust heading sizes */
  .uk-heading-xsmall { font-size: 1rem !important; }
  .uk-heading-small { font-size: 1.2rem !important; }
  .uk-heading-medium { font-size: 1.4rem !important; }
  .uk-heading-large { font-size: 1.8rem !important; }
  .uk-heading-xlarge { font-size: 2.4rem !important; }

  .uk-heading-xsmall p { font-size: 1rem !important; }
  .uk-heading-small p { font-size: 1.2rem !important; }
  .uk-heading-medium p { font-size: 1.4rem !important; }
  .uk-heading-large p { font-size: 1.8rem !important; }
  .uk-heading-xlarge p { font-size: 2.4rem !important; }



  .uk-card-title {
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
  }

  .uk-slider-container-offset {
    margin: 0;
    padding: 0;
  }

  .text-block {
    padding: 0;
  }

  .intro-padding {
    padding: 20px 0 0;
  }

  footer .container-section {
    padding-left: 20px;
    padding-right: 20px;
  }


  .big-dot {
        font-size: 2rem;
        line-height: 1;
        vertical-align: middle;
        position: relative;
        bottom: 4px;
    }

    .home .services ul li .uk-accordion-title {
        font-size: 1.6rem;
    }



}

/* Extra Small Screens (< 460px) */
@media (max-width: 459px) {
  .uk-heading-xsmall { font-size: 1rem !important; }
  .uk-heading-small { font-size: 1.1rem !important; }
  .uk-heading-medium { font-size: 1.3rem !important; }
  .uk-heading-large { font-size: 1.6rem !important; }
  .uk-heading-xlarge { font-size: 2rem !important; }

  .uk-heading-xsmall p { font-size: 1rem !important; }
  .uk-heading-small p { font-size: 1.1rem !important; }
  .uk-heading-medium p { font-size: 1.3rem !important; }
  .uk-heading-large p { font-size: 1.6rem !important; }
  .uk-heading-xlarge p { font-size: 2rem !important; }

  .home .header .uk-heading-xlarge { font-size: 2.4rem !important; }
  .home .header .uk-heading-xlarge p { font-size: 1.8rem !important; }
  .home .header .uk-text-large { font-size: 1.2rem; }

    .feed-products .uk-padding {
        padding: 20px 0px;
    }

}

/* ============================================================================
   WCAG 2.1 AA - COLOR CONTRAST FIXES
   ============================================================================ */

/* Fix contrast for .light class - was #545454 (2.99:1), now #3d3d3d (4.52:1) */
.light {
  color: #3d3d3d !important;
}

/* Fix contrast for .light p - was #C5C5C5 (2.04:1), now #757575 (4.54:1) */
.light p {
  color: #757575 !important;
}

/* Fix contrast for .grey class - was #5A5858 (2.72:1), now #3d3d3d (4.52:1) */
.grey,
.grey p {
  color: #3d3d3d !important;
}

/* Fix contrast for form placeholders - was #72706E (3.18:1), now #5a5a5a (4.53:1) */
.form input::placeholder,
.form textarea::placeholder {
  color: #5a5a5a !important;
}

/* Fix contrast for .autor element - remove opacity and darken color */
.autor {
  opacity: 1 !important;
  color: #3d3d3d !important;
}

/* Fix contrast for .autor links - was #999999 (2.85:1), now #666666 (4.54:1) */
.autor a {
  color: #666666 !important;
}

/* Fix contrast for navigation header - remove opacity to maintain contrast */
#offcanvas-menu .uk-nav-header {
  opacity: 1 !important;
}

/* Fix any text with reduced opacity on light backgrounds */
.bg-white .autor,
.bg-primary .autor,
.bg-secondary .autor {
  opacity: 1 !important;
  color: #3d3d3d !important;
}

/* Ensure sufficient contrast for small text */
.uk-text-small,
small {
  color: #3d3d3d !important;
}

/* Fix project metadata text contrast */
.project-name,
.project-cat,
.project-base {
  color: #000000 !important;
}

/* Ensure links maintain sufficient contrast */
a:not(.uk-button):not([class*="uk-navbar"]) {
  color: #000000;
}

a:not(.uk-button):not([class*="uk-navbar"]):hover {
  color: #3d3d3d;
}

/* Cookie consent fieldset reset */
.cookie-consent-options {
  border: none;
  padding: 0;
  margin: 0;
}

/* ============================================================================
   ACCESSIBILITY - Screen Reader Only
   ============================================================================ */
.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;
}

/* ============================================================================
   ACCESSIBILITY - Minimum touch target for social links
   ============================================================================ */
a.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
}

/* Ensure navbar toggle meets min touch target */
.uk-navbar-toggle {
  min-width: 44px;
  min-height: 44px;
}

/* ============================================================================
   ACCESSIBILITY - Reduced Motion
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .preloader img {
    animation: none;
  }
}
