/* 🚫 Blockera ALLT: textmarkering, kopiering, drag, highlight, callout */
* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

    -webkit-user-drag: none;
    -webkit-touch-callout: none;

    -webkit-tap-highlight-color: transparent; /* tar bort blå/grå klickmarkering på mobil */
    -webkit-tap-highlight-color: rgba(0,0,0,0); /* extra fallback */
}

img, a {
  -webkit-user-drag: none;
}

/* ✅ Undantag – interaktiva element ska funka */
input, textarea, select, button {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;

    -webkit-user-drag: auto;
    -webkit-touch-callout: default;
}

html, body {
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  font-family: 'Segoe UI', sans-serif;
  touch-action: manipulation;
}

/* Gradient-sektion */
.gradient-section {
    min-height: 100vh; /* Minsta höjd för gradienten */
    background: linear-gradient(
        to bottom,
        #D3853D, /* Solnedgångsgul för att matcha bakgrundsbildens nedre del */
        #F4A261, /* Varm orange-gul för mjuk övergång */
        #ffb6d4, /* Blek rosa för en subtil touch */
        #87ceeb,
        #87ceeb, /* Ljusblå för jordisk himmel, dominerar gradienten */
        #87ceeb /* Ljusblå fortsätter för en ren himmelseffekt */
    );
    z-index: 0;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 1rem;
  background: url('Lux_Futura_Background.webp') center/cover;
  overflow: hidden;
}

.hero .glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('Lux_Futura_logo_2025_hemsida_glow.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  grid-row: 1;
  width: clamp(400px, 40vw, 710px);
  aspect-ratio: 3 / 2;
  margin-bottom: calc(30vh + env(safe-area-inset-bottom));
  max-height: 60vh;
  z-index: 5000; /* över allt annat */
  touch-action: manipulation;      /* För touchoptimering */
  pointer-events: none;
}

.logo {
  position: absolute;
  display:block;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  margin: 0; /* centrera horisontellt */
  padding: 0;
  object-fit: contain; /* Säkerställer att SVG:n passar inom bounding box utan distortion */
  transition: filter 0.4s ease-in-out, transform 0.2s ease, text-shadow 0.3s ease;
  will-change: transform;
  transform: translateZ(0); /* tvingar GPU-acceleration */
  cursor: pointer;
  pointer-events: auto;
  /*animation: pulseGlow 3s ease-in-out infinite;*/
  -webkit-tap-highlight-color: transparent; /* Förhindrar blå highlight på iOS/Android */
  z-index: 5000; /* över allt annat */
  background-color: transparent !important; /* Säkerställ att inget blått syns */
}

.welcome-svg {
  position: absolute;
  top: -60px;   /* enkel justering */
  left: -300px; /* enkel justering */
  width: 100%; /* fast storlek */
  height: auto; /* behåll proportioner */
  transform: rotate(-20deg);
  transform-origin: center;
  pointer-events: none;
  overflow: visible;
  z-index: 7000;
}

.welcome-svg text {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  fill: #ffcc66;
  /*fill: #ffd23f;*/
  text-shadow: 0 1px 2px rgba(0,0,0,0.9);
}

/*.logo:hover {
  transform: scale(1.02);
  /*ilter: drop-shadow(0 0 3px white);*/
  /* Klickytan styrs här */
  /*clip-path: inset(4.4% 7% 4% 6.5%);   /* klockvis */
/*}*/

.hero h1 {
  font-size: 4vw;
  letter-spacing: 0.1em;
  margin: 0;
}

.hero p {
  margin-top: 0.5rem;
  font-size: clamp(1rem, 3vw, 1.75rem);
  opacity: 1;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.363);
}

.hero-tagline {
  font-family: 'Courgette', cursive; /* Elegant och futuristisk */
  color: #ffffff; /* Ren vit för kontrast */
  margin: 1vh 0;
  transform: translateY(510px) translateX(-10px) rotate(-3deg) scale(0.92);
  position: relative;
}

.ai-container {
    grid-row: 2;
    position: relative;
    text-align: center;
    padding: 2em;
    transform: translateY(-220%);
    text-align: center;
    max-width: 80%;
    margin-top: 1rem;
    z-index: 5000; /* Placera knappen över bakgrunden */
}

.hero-Subtitle {
  grid-row: 3;
  font-family: 'Roboto', Arial, sans-serif; /* Ren och modern */
  color: #d3d3d3; /* Mjuk grå för läsbarhet */
  margin: 5px 0 20px 0;
  transform: translateY(-200px) scale(0.9);
  position: relative;
  white-space: pre-wrap; /* gör att \n blir radbrytning */
}

.hero .glow-text {
  transition: filter 0.2s ease;
}

#whole {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  pointer-events: auto;
  touch-action: manipulation;
  background-color: transparent !important;
  transition: filter 0.4s ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% {
    filter: drop-shadow(0 0 8px white);
  }
  50% {
    filter: drop-shadow(0 0 12px white) drop-shadow(0 0 12px rgba(255, 255, 255, 0.5));
  }
}

@keyframes pulseGlow_image {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

@keyframes rainbowGlow {
  0% { filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.3)) drop-shadow(0 0 16px rgba(255, 0, 0, 0.2)); }
  14% { filter: drop-shadow(0 0 8px rgba(255, 165, 0, 0.3)) drop-shadow(0 0 16px rgba(255, 165, 0, 0.2)); }
  28% { filter: drop-shadow(0 0 8px rgba(255, 255, 0, 0.3)) drop-shadow(0 0 16px rgba(255, 255, 0, 0.2)); }
  42% { filter: drop-shadow(0 0 8px rgba(0, 255, 0, 0.3)) drop-shadow(0 0 16px rgba(0, 255, 0, 0.2)); }
  57% { filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.3)) drop-shadow(0 0 16px rgba(0, 255, 255, 0.2)); }
  71% { filter: drop-shadow(0 0 8px rgba(0, 0, 255, 0.3)) drop-shadow(0 0 16px rgba(0, 0, 255, 0.2)); }
  85% { filter: drop-shadow(0 0 8px rgba(75, 0, 130, 0.3)) drop-shadow(0 0 16px rgba(75, 0, 130, 0.2)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 0, 255, 0.3)) drop-shadow(0 0 16px rgba(255, 0, 255, 0.2)); }
}

q::before, q::after {
  content: none;
}

.menu-icon {
    position: fixed;
    top: 2%;
    left: 1%;
    cursor: pointer;
    z-index: 100000 !important;
    width: 2.7vw;
    max-width: 52px;
    height: 1.7vw;
}

.menu-icon:not(.open).active,
.menu-icon.open.active {
    transform: scale(0.9);
    transition: transform 0.2s;
}

.menu-icon .menu-line {
    position: absolute;
    width: 2.5vw;
    max-width: 52px;
    height: 0.2083vw;
    max-height: 3px;
    background-color: white;
    border-radius: 0.10415vw;
    transition: transform 0.2s ease;
}

.menu-icon:not(.open) .menu-line:nth-child(1) {
    top: 0;
}

.menu-icon:not(.open) .menu-line:nth-child(2) {
    top: min(0.625vw, 11px);
}

.menu-icon:not(.open) .menu-line:nth-child(3) {
    top: min(1.25vw, 22px);
}

/*.menu-icon:not(.open):not(.active):hover {
    transform-origin: center;
    animation: pulse 0.6s ease-in-out infinite;
}*/

.menu-icon:not(.open):not(.active):hover .menu-line {
    background-color: white;
    filter: brightness(2.5);
}

@keyframes pulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.menu-icon.open {
    top: 0.85vw;
    left: 1.15vw;
    width: 2vw;
    height: 1.7vw;
}

.menu-icon.open .menu-line {
    width: 2.1vw;
    max-width: 45px;
}

.menu-icon.open .menu-line:nth-child(1) {
    transform: rotate(45deg);
    top: 0.625vw;
    background-color: rgb(255, 90, 90);
    width: 2.2vw;
    max-width: 45px;
}

.menu-icon.open .menu-line:nth-child(2) {
    opacity: 0;
}

.menu-icon.open .menu-line:nth-child(3) {
    transform: rotate(-45deg);
    top: 0.625vw;
    background-color: rgb(255, 90, 90);
    width: 2.2vw;
    max-width: 45px;
}

.menu-icon.open:hover .menu-line {
    background-color: #ffffff;
}

.menu-wrapper {
  position: fixed;
  top: 80%;       /* justera så att det är precis under menyikonen */
  left: 1%;
  overflow: hidden;   /* döljer den del av menyn som är “bakom” ikonen */
  width: fit-content; /* eller 100%, beroende på din design */
  max-height: 0;               /* gömd från början */
  transition: max-height 0.3s ease;
  z-index: 100000 !important;
  pointer-events: auto !important;
}

.menu {
  display: block;
  position: fixed;
  top: 3.5vw;
  left: 0.4vw;
  width: auto;
  background: linear-gradient(to bottom, transparent, rgba(82, 89, 104, 0.4));
  backdrop-filter: blur(8px);
  border-radius: 10px;
  overflow: hidden;
  transform-origin: top;
  transform: scaleY(0);             /* Stängd */
  transition: transform 0.3s ease;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  text-align: left;
  pointer-events: none;             /* Inte klickbar när stängd */
  z-index: 100000 !important;
}

.menu a {
    display: block;
    padding: 1vw;
    color: #ffffff;
    opacity: 1;
    text-decoration: none;
    font-size: clamp(0px, 1.8vw, 30px);
    font-weight: 300;
    text-shadow: none;
    letter-spacing: 0.1vw;
    transition: background-color 0.2s ease, transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    transform-origin: center center;
    will-change: transform;
    user-select: none;
    cursor: pointer;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    border-radius: 5px; /* <- rundade hörn */
    margin-bottom: 0.2vw;  /* lite mellanrum mellan länkar */
}

.menu a:last-child {
  margin-bottom: 0;      /* sista länken får inget extra gap */
}

/*@keyframes slideDownBounce {
    0%   { transform: translateY(-22%); }
    80%  { transform: translateY(10px); opacity: 1; }
    100% { transform: translateY(0); }
}*/

.menu.active {
  transform: scaleY(1);             /* Öppen */
  pointer-events: auto;             /* Klickbar när öppen */
}

.menu.active a {
    opacity: 1; /* synliga när menyn är öppen */
}

.menu.active a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.menu:not(.active) {
    height: 0 !important;
    overflow: hidden;
    pointer-events: none;
    padding: 0; /* <— viktig */
}

.menu:not(.active) a {
    opacity: 0; /* <— osynliga när menyn är stängd */
}

.menu:not(.active) a:nth-child(1) { animation-delay: 0.20s; }
.menu:not(.active) a:nth-child(2) { animation-delay: 0.17s; }
.menu:not(.active) a:nth-child(3) { animation-delay: 0.14s; }
.menu:not(.active) a:nth-child(4) { animation-delay: 0.11s; }
.menu:not(.active) a:nth-child(5) { animation-delay: 0.08s; }
.menu:not(.active) a:nth-child(6) { animation-delay: 0.05s; }

.menu a:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.2);
    transition: transform 0.08s ease;
}

.language-selector {
    position: fixed;
    top: 2%;
    right: 1%;
    display: inline-block;   /* viktig! wrappern krymper/expanderar efter knappen */
    z-index: 100000 !important;
}

/* Knappen */
.lang-button {
    background-color: rgba(82, 89, 104, 0.4);
    backdrop-filter: blur(4px);
    border: none;
    border-radius: 20px;
    padding: 5px 27px 5px 13px; /* extra padding till vänster för pilen */
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 300;
    cursor: pointer;
    transition: background-color 0.2s ease, border-radius 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    -ms-user-select: none;
    user-select: none;
    width: 100%;   /* Knappen styr bredden */
}

.lang-button::after {
    content: "▼";
    font-size: 10px;
    color: white;
    position: absolute;
    right: 12px;   /* flytta pilen till höger */
    transition: transform 0.3s ease;
}

.lang-button.active::after {
    transform: rotate(-180deg);
    color: rgb(255, 90, 90);
}

.lang-button.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    background: rgba(63, 63, 75, 0.4);
}

.lang-button:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Dropdown */
.lang-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(93, 98, 121, 0.4);
    backdrop-filter: blur(4px);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    width: 100%;        /* alltid exakt lika bred som knappen */
    pointer-events: none;
    z-index: 100000 !important;
}

.lang-dropdown.active {
    max-height: 300px;
    pointer-events: auto;
}

.lang-option {
    display: block;
    padding: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(13px, 1.2vw, 16px);
    font-weight: 300;
    transition: background-color 0.2s ease;
}

.lang-option:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}



#tsparticles {
  position: absolute !important; /* Tvinga fixed position */
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  overflow: hidden;
}

#tsparticles canvas {
  position: absolute !important; /* Säkra att canvas också är fixed */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block !important; /* Säkerställ att canvas är synlig */
  overflow: hidden;
}

/* Container */
.bottom-boxes {
  position: fixed;
  bottom: 4vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: clamp(40px, 3vw, 70px);
  z-index: 1000;
  align-items: flex-start; /* viktigt för att inte stretchas */
  bottom: calc(2vw + env(safe-area-inset-bottom));
}

/* Box utan fast höjd – den anpassar sig efter bilden */
.bottom-boxes .box {
  width: auto;                  /* bredd styrs individuellt */
  display: inline-block;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

/* Bild fyller boxen proportionerligt, storlek styrs per bild */
.bottom-boxes .box img {
  display: block;
  width: 100%;    /* ändra här för att styra bredd */
  height: auto;   /* ändra här för att styra höjd */
}

/* Hover-effekt */
.bottom-boxes .box:hover {
  transform: scale(1.05);
}

/* Overlay med Coming soon */
.bottom-boxes .box::after {
  content: attr(data-coming-soon);
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: 600;
  font-size: clamp(12px, 1.2vw, 20px);
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bottom-boxes .box:hover::after {
  opacity: 1;
}

/* Individuell bredd för varje box – höjd styrs automatiskt av bilden */
.box.wazte {
  width: clamp(180px, 20vw, 370px);  /* justera bredd */
  margin-top: 100px;
}

.box.lux {
  width: clamp(180px, 20vw, 370px);  /* justera bredd */
  margin-top: auto;
}

/* Modal overlay */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Mörk halvtransparent bakgrund */
    z-index: 1500; /* Under .modal (z-index: 2000) men över andra element */
    pointer-events: auto;
    transition: opacity 0.5s ease;
}

.modal-overlay.active {
    display: block;
    opacity: 1;
}

/* Modal-styling */
.modal {
    display: none; /* Dold som standard */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centrera modalen */
    z-index: 2000; /* Över andra element, men under .menu (z-index: 99999) */
    pointer-events: none; /* Själva modalcontainern blockar inte */
}

.modal.active {
    display: block;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to { opacity: 1; transform: translate(-50%, -50%); }
}

.modal-content {
    background: rgba(255, 255, 255, 0.17); /* Ljus halvtransparent bakgrund */
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 20px;
    width: clamp(300px, 50vw, 600px);
    max-height: 80vh;
    overflow-y: auto;
    color: white;
    font-family: 'Roboto', sans-serif;
    text-align: center;
    pointer-events: auto; /* Gör innehållet klickbart */
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Lägger till skugga för djup */
}

.modal-content h2 {
    font-size: clamp(20px, 2vw, 24px);
    margin-bottom: 15px;
}

.modal-content p {
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.5;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 8px 12px;
    font-size: 28px;
    color: rgb(255, 90, 90);
    cursor: pointer;
    transition: color 0.2s ease;
    z-index: 3000; /* Högre än .modal-content */
    pointer-events: auto;
    user-select: none;
}

.modal-close:hover {
    color: white; /* Matchar språkväljarens pil */
}

@media (hover: none) and (pointer: coarse) {
  * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
  img, a {
    -webkit-user-drag: none;
  }
}

/* Mobilanpassning */
@media (max-width: 768px) {
  .hero {
    grid-template-rows: auto auto auto;
    padding: 1rem;
  }

  .logo-wrapper {
    width: 75vw; /* blir större på små skärmar */
    margin-top: 10vh;
  }

  .welcome-svg text {
    font-size: 5vw;
  }

  .welcome-svg {
    top: -10vw;
    left: -20vw;
  }

  .hero-tagline {
    font-size: 5vw; /* större text på mobil */
    transform: translateY(27vh) scale(0.7) rotate(-3deg);
  }

  .ai-container {
    transform: translateY(-190%) scale(0.8);
  }

  .ai-button:hover::before {
    filter: blur(0px) brightness(1) !important;
    opacity: 0 !important; 
  }

  .hero-Subtitle {
    font-size: 4vw; /* större text på mobil */
    transform: translateY(-20vh) scale(0.9);
    white-space: inherit;
  }

  .bottom-boxes {
    flex-direction: vertical;
    align-items: center;
    gap: 20px;
    bottom: 4vh;
  }

  .menu-icon {
    position: fixed;
    top: 4vw;
    left: 5vw;
    scale: 2.6;
  }

  .menu-icon.open {
    top: 4vw;
    left: 5vw;
    scale: 2.6;
  }

  /* Menyn med text */
  .menu {
    top: 10vw;           /* flytta menyn ner från toppen om det behövs */
    left: 0.3vw;          /* justera position */
  }

  .menu a {
    font-size: 4.2vw; /* gör texten större på mobil */
    padding: 3.5vw;                     /* öka mellanrum */
  }

  .menu a:hover {
    transition: none;
    transform: none;
  }

  .language-selector {
    top: 2.5vw;
    right: 2.5vw;
  }

  .lang-option:hover {
    transform: none;
    transition: none;
  }

  .bottom-boxes {
    gap: 2.5vh; /* Ökat avstånd mellan boxarna */
  }

  /* Individuell bredd för varje box – höjd styrs automatiskt av bilden */
  .box.wazte {
    margin-top: auto;
    margin-bottom: -1vh;
  }

  .box.lux {
    margin-top: auto;
    margin-bottom: -1vh;
  }

  .modal-content {
    width: clamp(250px, 80vw, 400px);
    padding: 15px;
  }

  .modal-content h2 {
    font-size: clamp(18px, 4vw, 20px);
  }

  .modal-content p {
    font-size: clamp(12px, 3vw, 14px);
  }
}

/* Kvadratiskt eller stående fönster på desktop/surfplatta */
@media (min-width: 769px) and (max-aspect-ratio: 4/3) {
  .logo-wrapper {
    width: 55vw; /* blir större på små skärmar */
    margin-top: 10vh;
  }

  .welcome-svg {
    top: -70px;   /* mindre negativ topp */
    left: -220px;  /* mindre negativ vänster */
  }

  .hero-tagline {
    transform: translateY(32vh) scale(0.6) rotate(-3deg);
  }

  .ai-button:hover::before {
    filter: blur(0px) brightness(1) !important;
    opacity: 0 !important; 
  }

  .hero-Subtitle {
    transform: translateY(-150px) scale(0.9);
  }

  .bottom-boxes {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    bottom: 5vh;
    .box.wazte {
      width: 23vw;
    }
    .box.lux {
      width: 23vw;
    }
  }

  .menu-icon {
    top: 1.3vw;
    left: 1.3vw;
    width: 60px;        /* större klickyta för pekplatta */
    height: 60px;
  }

  .menu-icon.open {
    top: 1.3vw;
    left: 1.3vw;
    scale: 1.26;
  }

  .menu a:hover {
    transition: none;
    transform: none;
  }

  /* Menyn med text */
  .menu {
    top: 5vw;           /* flytta menyn ner från toppen om det behövs */
    left: 0.1vw;          /* justera position */
  }

  .menu a {
    min-height: 44px;   /* touch-vänlig höjd */
    padding: 12px 20px; /* samma känsla som språkväljaren */                     /* öka mellanrum */
  }

  .lang-option:hover {
    transform: none;
    transition: none;
  }

  .language-selector {
    top: 1.1vw;
    right: 1%;
    gap: 1vw;
  }
}

/* Widescreen-format – håll proportioner men justera marginal */
@media (min-aspect-ratio: 21/9) {
  .logo-wrapper {
    width: clamp(400px, 23vw, 710px);
    margin-bottom: 35vh;
  }

  .menu {
    transform: scale(0.9);
  }

  .language-selector {
    right: 1%;
  }

  .hero-Subtitle {
    transform: translateY(-22vh) scale(0.8);
  }

  .ai-container {
    transform: translateY(-250%) scale(0.8);
  }

  .box.wazte {
    width: 30vh;
  }
  .box.lux {
    width: 30vh;
  }
}

/* säkerställ att menyn ligger överallt och tar emot hover */
.menu-wrapper,
.menu {
  z-index: 99999 !important;
  pointer-events: auto !important;
}

/* prioritera länkar i menyn */
.menu a {
  pointer-events: auto !important;
  z-index: 100000 !important;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* 🚫 hindrar vit kant pga horisontell overflow */
  background-color: black; /* försäkrar att ingen vit bakgrund lyser igenom */
}

* {
  box-sizing: border-box; /* gör att padding/margins inte trycker ut sidan */
}