body {
  background-image: url('/assets/images/background.jpg');
  background-size: 100vw 100%;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  background-color: var(--background-color);
  margin: 0 0;
  overflow-x: hidden;
  overflow-y: auto;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;              
  background-image: url('/assets/images/background.jpg');
  background-size: cover;     
  background-repeat: no-repeat;
  background-position: center top;
  z-index: -1;
  pointer-events: none;
}


/* --- Other / Navbar / Utility --- */
.navbar {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 200px;
  max-height: 9vh;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-items: end;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.navbar.scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-menu {
  margin: 0;
  margin-left: auto;
  list-style: none;
  padding-right: 1vw;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 35%;
  height: 100%;
  background: linear-gradient(90deg, rgba(247, 247, 247, 0) 0%, rgba(0, 0, 0, 0.808) 100%);
}

.navbar-menu li {
  margin: 0;
}

.navbar-menu li a {
  display: block;
  margin: 5px;
  padding: 35px 24px;
  color: var(--text-color-light, #ffffff);
  text-decoration: none;
  font-family: var(--font-primary, Arial, sans-serif);
  font-size: 1.3rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  transition: transform 200ms ease;
  line-height: 0;
}

.navbar-menu li a:hover {
  text-shadow: var(--shadow-option);
  transform: scale(1.08);
}

.navbar-menu li a.current {
  text-shadow:
    0 0 6px #fff3d4,
    0 0 14px rgba(255,243,212,0.7),
    0 6px 20px rgba(255,243,212,0.12);
}

/* Navbar responsive */
@media (max-width: 1200px) {
  .navbar {
    height: auto;
    max-height: none;
  }

  .navbar-menu {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0;
    background: #00000034;
  }

  .navbar-menu li {
    flex: 1;
    text-align: center;
  }

  .navbar-menu li a {
    display: block;
    padding: 2.5vh 1px;
    font-size: 1rem;
    white-space: nowrap;
  }
}

/* Other logo positioning */
#Other-Logo-Company {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  cursor:pointer;
  transition: background-color 2s, transform 2s;
  transition: top 0.9s ease-in-out , filter 0.5s ease-in-out;
  z-index: 5;
}

#Other-Logo-Company:hover {
  filter: var(--shadow-hover);
}

/* Content container helpers */
.Content-Container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  opacity: 0;
}

.Content-Container.enter {
  animation: fadeInUp 1.5s ease-in-out forwards;
}

address { font-style: normal; }

/* Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}