.bg {
  position: fixed;
  top: -50%;
  left: -50%;
  right: -50%;
  bottom: -50%;
  width: 200%;
  height: 200vh;
  background: transparent url('http://assets.iceable.com/img/noise-transparent.png') repeat 0 0;
  background-repeat: repeat;
  animation: bg-animation 1s infinite;
  opacity: 0.7;
  visibility: visible;
  pointer-events: none;
  z-index: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

@media only screen and (max-width: 425px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  body {
    font-family: system-ui, sans-serif;
    background-color: #111;
    color: #fff;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Navbar: Flexbox Container */
  .navbar {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 2rem;
    background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
    backdrop-filter: blur(20px);             /* Unschärfe */
    -webkit-backdrop-filter: blur(20px);     /* Safari Support */
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: opacity 0.4s ease;
  }
  
  #img1, #img2, #img3 {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
  }

  /* Transparente Navbar (wenn Menü offen) */
  .navbar--transparent {
    padding: 1.3rem 2rem;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
  }

  /* Logo-Größe */
  .logo img {
    height: 40px;
    width: auto;
  }

  /* Menü-Container: Rechts anordnen */
  .menu-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: auto; /* Schiebt das Menü ganz nach rechts */
    width: auto;
  }

  /* Burger Icon */
  .burger {
    display: flex;
    flex-direction: column;     /* Drei Linien übereinander */
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;            /* Hand-Cursor bei Hover */
  }

  .burger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: 0.3s ease;
  }

  /* Close Icon */
  .close-icon {  
    font-size: 30px;
    color: white;
    cursor: pointer;
    display: none;
    margin-left: auto;       /* Rechtsbündig */
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Menü Overlay */
  .menu-overlay {
    position: fixed;
    inset: 0;
    background-color: #121212;
    background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
    backdrop-filter: blur(50px);             /* Unschärfe */
    -webkit-backdrop-filter: blur(50px); 
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    z-index: 10;
  }

  .menu-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  /* Menü Links */
  .menu-items {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    text-align: center;
  }

  .menu-items a {
    text-decoration: none;
    font-size: 2rem;
    color: white;
    letter-spacing: 1px;
    transition: color 0.3s;
  }

  .menu-items a:hover {
    color: rgb(0, 115, 255);
  }

  .footer { 
    padding: 2rem 2rem;
    background-color: #121212;
  }

  #brandname {
    text-transform: uppercase;
  }

  #footer-logo img {
    padding-bottom: 50px;
    width: 40px;
    height: auto;
  }

  #slider-logo img {
    width: auto;
    height: 40px;
  }

  #geberit-logo img {
    height: 40px;
    width: auto;
  }

  .container {
    display: flex;
    justify-content: space-between;
    gap: 2rem; /* optional spacing between columns */
  }
  
  .left,
  .right {
    flex: 1; /* make both columns equal width */
    line-height: 1.9;
  }

  .right a {
    color: #aaaaaa;
  }

  h2 {
    padding-bottom: 50px;
  }

  .address {
    padding-bottom: 50px;
  }

  .socials {
    display: flex;
    justify-content: center;
    gap: 20px; /* controls space between icons */
  }

  .socials a {
    color: white; /* Standardfarbe */
    margin: 0 10px; /* Abstand zwischen den Icons */
  }
  
  .socials i {
    font-size: 1.5rem;
  }

  .copyright {
    text-align: center;
    padding-top: 50px;
  }
  
  .contact p {
    -webkit-touch-callout: none; /* iOS */
    -webkit-user-select: text;
    user-select: text;
  }

  /* NEU: Footer Header mit Logo, Brandname und h2 in einer Reihe */
  .header-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;      /* Abstand zwischen den Elementen */
    margin-bottom: 20px;
    flex-wrap: wrap;   /* Bei kleinen Bildschirmen umbrechen */
  }

  #footer-logo img {
    width: 40px;
    height: auto;
  }

  #brandname {
    margin: 0;
    font-size: 1.4rem;
    text-transform: uppercase;
  }

  .header-row h2 {
    margin: 0;
    font-weight: 400;
    font-size: 1rem;
    color: #aaa;
  }

  .title {
    margin-left: 25px;
  }

  .header-row{
    padding-top: 0px;
  }

  .left p{
    color: #aaa;
  }

  .right p{
    color: #aaa;
  }

  .scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    color: #fff;
    background-color: rgb(0, 115, 255);
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  }
  
  .scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
  }
  
  .first-screen,
  .second-screen,
  .third-screen {
  height: 100vh;
  width: 100vw;
  position: relative;
}

.first-screen {
  position: relative;
  overflow: hidden;
  background-color: #121212; /* dark background */
  width: 100vw;
  height: 100vh;
}

.first-screen .floating-circles {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.first-screen .floating-circles .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 100%;
  will-change: transform;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.first-screen .floating-circles .circle1 {
  width: 220px;
  height: 220px;
  background: rgb(0, 255, 30);
  top: 12%;
  left: 18%;
  animation-name: floatDrift1;
  animation-duration: 12.7s;
  animation-delay: 0s;
}

.first-screen .floating-circles .circle2 {
  width: 280px;
  height: 280px;
  background: rgb(255, 255, 255);
  top: 38%;
  left: 62%;
  animation-name: floatDrift2;
  animation-duration: 15.3s;
  animation-delay: 3.9s;
}

.first-screen .floating-circles .circle3 {
  width: 160px;
  height: 160px;
  background: rgb(0, 115, 255);
  top: 68%;
  left: 28%;
  animation-name: floatDrift3;
  animation-duration: 10.5s;
  animation-delay: 6.2s;
}

/* More movement, smoother, and random */

@keyframes floatDrift1 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  15%   { transform: translate(40px, -35px) rotate(4deg) scale(1.07); }
  30%   { transform: translate(-50px, 42px) rotate(-5deg) scale(0.9); }
  45%   { transform: translate(35px, 50px) rotate(6deg) scale(1.1); }
  60%   { transform: translate(-40px, -45px) rotate(-4deg) scale(0.95); }
  75%   { transform: translate(30px, -50px) rotate(3deg) scale(1.08); }
  90%   { transform: translate(-25px, 40px) rotate(-3deg) scale(0.93); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatDrift2 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  12%   { transform: translate(-55px, 40px) rotate(-6deg) scale(0.9); }
  24%   { transform: translate(60px, -55px) rotate(7deg) scale(1.12); }
  36%   { transform: translate(-50px, 45px) rotate(-5deg) scale(0.94); }
  48%   { transform: translate(40px, -30px) rotate(5deg) scale(1.07); }
  60%   { transform: translate(-35px, 60px) rotate(-4deg) scale(0.9); }
  72%   { transform: translate(55px, -40px) rotate(6deg) scale(1.1); }
  84%   { transform: translate(-45px, 50px) rotate(-3deg) scale(0.95); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatDrift3 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  20%   { transform: translate(35px, 50px) rotate(5deg) scale(1.15); }
  40%   { transform: translate(-40px, -45px) rotate(-6deg) scale(0.87); }
  60%   { transform: translate(50px, 45px) rotate(6deg) scale(1.1); }
  80%   { transform: translate(-45px, -50px) rotate(-5deg) scale(0.92); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.second-screen {
  background-color: #fff;
}

.third-screen {
  position: relative;
  background-color: #121212; /* dark background */
  width: 100vw;
  height: 100vh;
}

.black-screen {
  position: relative;
  background-color: #121212; /* dark background */
  width: 100vw;
  height: 100vh;
}

.fourth-screen {
  position: relative;
  background-color: #d2d2d2; /* dark background */
  width: 100vw;
  height: 100vh;
}

.third-screen .floating-circles {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.third-screen .floating-circles .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 100%;
  will-change: transform;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.third-screen .floating-circles .circle1 {
  width: 220px;
  height: 220px;
  background: rgb(255, 255, 255);
  top: 12%;
  left: 18%;
  animation-name: floatDrift1;
  animation-duration: 12.7s;
  animation-delay: 0s;
}

.third-screen .floating-circles .circle2 {
  width: 280px;
  height: 280px;
  background: rgb(0, 255, 30);
  top: 38%;
  left: 62%;
  animation-name: floatDrift2;
  animation-duration: 15.3s;
  animation-delay: 3.9s;
}

.third-screen .floating-circles .circle3 {
  width: 160px;
  height: 160px;
  background: rgb(0, 115, 255);
  top: 68%;
  left: 28%;
  animation-name: floatDrift3;
  animation-duration: 10.5s;
  animation-delay: 6.2s;
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

#center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 60vw;
}

#hero{
  width: 350px;
  text-transform: uppercase;
  font-size: 35px;
  padding-bottom: 10px;
}

.rectangle{
  width: 80vw;
  height: 50vh;
  background-color: #facc15;
  border-radius: 30px;
}

#subhero{
  width: 350px;
  font-weight: 400;
}

#subhero2{
  width: auto;
  font-weight: 400;
  color: #121212;
  text-align:center;
  padding-bottom: 25px;
}

.button{
  color: white;
  background: transparent;
  border: 2px solid white;
  padding: 10px 50px;
  width: 200px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 30px;
  border-radius: 50px;
}

.button-black{
  color: #ffffff;
  background-color: #121212;
  border: none;
  padding: 10px 50px;
  width: 200px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 30px;
  border-radius: 50px;
}

.button-white{
  color: #121212;
  background-color: #ffffff;
  border: none;
  padding: 10px 50px;
  width: 200px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 30px;
  border-radius: 50px;
  left: 50%;
  position: relative;
  transform: translateX(-50%);
}

/* Pulse Animation Keyframes */
@keyframes smoothUpDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-15px);
  }
}

.hero-footer {
  animation: smoothUpDown 3s ease-in-out infinite;
}


.hero-footer {
  /* bestehende Styles hier */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);

  /* neue Animation hinzufügen */
  animation: smoothUpDown 2s ease-in-out infinite;
}

.slideshow {
  width: 100vw;
  height: auto;
  overflow: hidden; /* hide scrollbar */
}

.scroll-track {
  display: flex;
  gap: 20px;
  padding-left: 0;
  animation: scrollAnim 20s linear infinite alternate;
}

/* Width of all elements + gaps: 5 elements * 280px + 4 gaps * 20px = 1400 + 80 = 1480px */
/* Translate from 0 to -(total width - viewport width) */
@keyframes scrollAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(100vw - 1480px));
  }
}

.slideshow2 {
  width: 100vw;
  height: auto;
  overflow: hidden; /* hide scrollbar */
  position: relative;
}

.scroll-track2 {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  animation: scrollAnim2 5s linear infinite;
}

.scroll-track2 > * {
  flex: 0 0 auto;
}

@keyframes scrollAnim2 {
  0% {
    transform: translateX(0px);
  }
  100% {
    transform: translateX(-467px);
  }
}

.element2 {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px;
  width: auto;
  box-sizing: border-box;
  border: 1px solid #1212122f; /* fine border */
}

#testimonial{
  color: rgb(0, 115, 255);
  padding-bottom: 20px;
  text-transform: uppercase;
}
#subhero-white{
  color: white;
  font-weight: 400;
  padding-bottom: 30px;
  text-align: center;
}

#hero-white{
  color: white;
  padding-bottom: 10px;
  text-transform: uppercase;
  text-align: center;
}
#sub-testimonial{
  color: #121212;
  font-weight: 400;
  padding-bottom: 30px;
}

/* Modal styles */
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0; top: 0; width: 100%; height: 100%; 
  overflow: auto; 
  background-color: #121212;
    background-color: rgba(0, 0, 0, 0.305); /* halbtransparent für den Blur-Effekt */
    backdrop-filter: blur(50px);             /* Unschärfe */
    -webkit-backdrop-filter: blur(50px); 
}
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 30px;
  border-radius: 8px;
  max-width: 800px;
  width: 80vw;
  height: 60vh;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

#modal-list li::marker {
  color: rgb(0, 115, 255)
}



.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}
.close:hover {
  color: #000;
}

.modal-content ul {
  list-style-position: inside; /* Moves bullet inside padding */
  padding-left: 0;             /* No extra space needed */
  margin: 0 auto;
  text-align: left;            /* Aligns text nicely */
  display: inline-block;       /* Keeps it centered if needed */
}

.modal-content ul li {
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #222;
  font-weight: 400;
  text-indent: 0;              /* Ensures no offset text */
}

#modal-title, #modal-description{
  color: #121212;
}

#modal-description{
  padding-bottom: 30px;
  text-align: left;
}

#modal-title{
  padding-bottom: 30px;
  text-transform: uppercase;
}

#modal-button{
  color: #121212;
  background: transparent;
  border: 2px solid #121212;
  padding: 10px 50px;
  width: 200px;
  height: 42px;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 30px;
  border-radius: 50px;
}

.logo-ticker {
  overflow: hidden;
  user-select: none;
  --gap: 80px;
  display: flex;
  gap: var(--gap);
  padding: 10px 0;
}

.logo-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: var(--gap);

  animation: scroll 20s linear infinite;
}

/*.logo-ticker:hover ul {
  animation-play-state: paused;
}*/

.logo-ticker li img {
  height: 60px;
  display: block;
}

@keyframes scroll {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.scroll-down{
  text-align: center;
  padding-bottom: 10px;
}

.review-ticker {
  overflow: hidden;
  user-select: none;
  --gap: 15px;
  display: flex;
  gap: var(--gap);
}

/*.review-ticker:hover ul {
  animation-play-state: paused;
}*/

.ticker-screen {
  background-color: #ffffff;
  padding-top: 50px;
  padding-bottom: 50px;
  height: auto;
}

.black-ticker-screen {
  background-color: #121212;
  position: relative;
  height: 100vh;
}

.center-vertically{
  position: relative;
  top: 50%;
  transform: translate(0%, -50%);
}

.review-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: var(--gap);
  animation: scrollReview 30s linear infinite;
  padding: 0;
  margin: 0;
}

.review-ticker li {
  display: flex;
  align-items: center;
  min-width: 300px;
}

.review-card {
  position: relative;
  background-color: transparent;
  padding: 30px;
  border-radius: 12px;
  font-size: 0.9rem;
  background-color: #ffffff;
  max-width: 280px;
  height: 30vh;
}

.review-stars {
  color: gold;
  font-size: 1rem;
  padding-bottom: 15px;
}

.review-header {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 1rem;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.review-name,
.review-brand {
  display: inline;
}

.review-brand {
  display: flex;
  align-items: center; /* vertikale Zentrierung */
  gap: 10px; /* Abstand zwischen Logo und Text */
  font-size: 0.85rem;
  color: #777;
  font-style: normal;
  font-weight: 400;
  padding-top: 15px;
}

.review-text {
  font-style: italic;
  font-size: medium;
  margin-top: 15px;
  color: #000;
  max-width: 250px;
}

.brand-logo {
  height: 20px;
  width: auto;
}

@keyframes scrollReview {
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.section {
  position: relative;
  display: flex;
  gap: 15px;
  width: 100vw; /* <-- Updated here */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 1rem;
  padding: 30px;

  border-radius: 5px;

  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* IE / older Edge */
}


.section::-webkit-scrollbar {
  display: none;                    /* Chrome, Safari, Opera */
}

.section__item {
  flex: 0 0 auto;
  width: 85vw;
  height: 400px; /* <--- neue Höhe */
  scroll-snap-align: center;
  border-radius: 8px;
  overflow: hidden;
  background-color: #eee;
  position: relative;
  padding: 0;
}


.section__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Spacer zu Beginn und Ende für zentriertes Scrollen */
.section__spacer {
  flex: 0 0 10vw;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background-color: #bbb;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #333;
}

/* Safari-Fix: Sicherstellen, dass Snap funktioniert */
@supports (scroll-snap-align: center) {
  .section__item {
    min-width: 80vw;
  }
}

.project-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  padding-bottom: 2rem;
  padding-top: 4rem;
  background: linear-gradient(to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 30%,
    rgba(0, 0, 0, 0.45) 55%,
    rgba(0, 0, 0, 0.2) 80%,
    rgba(0, 0, 0, 0) 100%);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.3rem;
}



.project-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin: 0;
}

.project-type {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.85;
}

.project-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}  

.project-tag i {
  font-size: 16px;
}

.project-date {
  position: absolute;
  top: 15px;
  right: 15px;
  border-radius: 6px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  color: #111827;
    background-color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.project-date i {
  font-size: 16px;
}

.bg-1 {
  background-color: #f1c2c6;
}

.bg-2 {
  background-color: #dac2f1;
}

.bg-3 {
  background-color: #ccf1c2;
}

.bg-4 {
  background-color: #c2e9f1;
}

.bg-5 {
  background-color: #f1ebc2;
}

#device-info{
  display: none;
}

}

@media only screen and (min-width: 426px) {
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
  }

  body {
    font-family: system-ui, sans-serif;
    background-color: #111;
    color: #fff;
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* Navbar: Flexbox Container */
  .navbar, .footer, .second-screen, .menu-overlay, .black-ticker-screen, .ticker-screen, .scroll-to-top, .button, .hero-footer {
    display: none;
  }

  #modal-button, #close-btn, #hero, #subhero {
    display: none;
  }
  
  .first-screen{
  height: 100vh;
  width: 100vw;
  position: relative;
}

.first-screen {
  position: relative;
  overflow: hidden;
  background-color: #121212; /* dark background */
  width: 100vw;
  height: 100vh;
}

.first-screen .floating-circles {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.first-screen .floating-circles .circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 100%;
  will-change: transform;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}

.first-screen .floating-circles .circle1 {
  width: 220px;
  height: 220px;
  background: rgb(0, 255, 30);
  top: 12%;
  left: 18%;
  animation-name: floatDrift1;
  animation-duration: 12.7s;
  animation-delay: 0s;
}

.first-screen .floating-circles .circle2 {
  width: 280px;
  height: 280px;
  background: rgb(255, 255, 255);
  top: 38%;
  left: 62%;
  animation-name: floatDrift2;
  animation-duration: 15.3s;
  animation-delay: 3.9s;
}

.first-screen .floating-circles .circle3 {
  width: 160px;
  height: 160px;
  background: rgb(0, 115, 255);
  top: 68%;
  left: 28%;
  animation-name: floatDrift3;
  animation-duration: 10.5s;
  animation-delay: 6.2s;
}

/* More movement, smoother, and random */

@keyframes floatDrift1 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  15%   { transform: translate(40px, -35px) rotate(4deg) scale(1.07); }
  30%   { transform: translate(-50px, 42px) rotate(-5deg) scale(0.9); }
  45%   { transform: translate(35px, 50px) rotate(6deg) scale(1.1); }
  60%   { transform: translate(-40px, -45px) rotate(-4deg) scale(0.95); }
  75%   { transform: translate(30px, -50px) rotate(3deg) scale(1.08); }
  90%   { transform: translate(-25px, 40px) rotate(-3deg) scale(0.93); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatDrift2 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  12%   { transform: translate(-55px, 40px) rotate(-6deg) scale(0.9); }
  24%   { transform: translate(60px, -55px) rotate(7deg) scale(1.12); }
  36%   { transform: translate(-50px, 45px) rotate(-5deg) scale(0.94); }
  48%   { transform: translate(40px, -30px) rotate(5deg) scale(1.07); }
  60%   { transform: translate(-35px, 60px) rotate(-4deg) scale(0.9); }
  72%   { transform: translate(55px, -40px) rotate(6deg) scale(1.1); }
  84%   { transform: translate(-45px, 50px) rotate(-3deg) scale(0.95); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

@keyframes floatDrift3 {
  0%    { transform: translate(0, 0) rotate(0deg) scale(1); }
  20%   { transform: translate(35px, 50px) rotate(5deg) scale(1.15); }
  40%   { transform: translate(-40px, -45px) rotate(-6deg) scale(0.87); }
  60%   { transform: translate(50px, 45px) rotate(6deg) scale(1.1); }
  80%   { transform: translate(-45px, -50px) rotate(-5deg) scale(0.92); }
  100%  { transform: translate(0, 0) rotate(0deg) scale(1); }
}

.center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

#center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 60vw;
}

#hero{
  width: 350px;
  text-transform: uppercase;
  font-size: 35px;
  padding-bottom: 10px;
}

#device-info {
  width: 350px;
  font-weight: 400;
}

}
