body, html {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  background-color: rgb(0, 0, 0);
  scroll-behavior: smooth;
  font-family: "Times New Roman", Times, serif;
  height: 800px;
}

.backgroundImage /*----- kan behövas justeras för nya sidor*/
{
  width: 90%;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-left: 5%;
  margin-right: 5%;
}

.backgroundImage img {
  width: 100%;
  height: 110vh;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.navbar-scrolled {
  background-color: rgba(137, 207, 240, 0.0); /* Ändra bakgrundsfärg vid scroll */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Lägg till en liten skugga */
  transition: background-color 0.3s ease, box-shadow 0.3s ease; /* Smidig övergång */
}

.nav-Ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-right: 30px;
  display: flex;
  justify-content: flex-start;
}

.nav-Li {
  display: inline-block;
  margin-right: 50px;
  margin-left: 40px;
}

.logo {
  opacity: 0.8;
  height: 40px;
  width: auto;
}

.nav-text {
  font-family: 'Times New Roman', Times, serif;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, #ffffff, #5f5e5e, #ffffff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-weight: 400;
}

/*----- Hamburger Menu - Remove Underline and Color ---*/
.icon {
  font-size: 25px; /* Specifik storlek för hamburgermenyikonen */
  color: white;    /* Färgen för hamburgermenyn */
  cursor: pointer; /* Handpekare när man hovrar */
  text-decoration: none; /* Ta bort eventuell understrykning */
  padding-right: 40px;
  display:none;
}

.pLogo /*----- nu logo med animation -----*/
{
  position: relative;
  font-family: sans-serif;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 4px;
  overflow: hidden;
  background: linear-gradient(90deg, #000, #fff, #000);
  background-repeat: no-repeat;
  background-size: 80%;
  animation: animate 3s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: rgba(255, 255, 255, 0);
}

@keyframes animate 
{
  0% {
      background-position: -500%;
  }
  100% {
      background-position: 500%;
  }
}

/*===== Responsiv sida =====*/
@media screen and (max-width: 866px) 
{
  .nav-Ul 
  {
      display: none; /* Döljer menyn på små skärmar */
      width: 100%;
      text-align: center;
  }

  .nav-Ul.active 
  {
      display: block; /* Visar menyn när den är aktiv */
  }

  .icon {
      display: block; /* Visar hamburgermenyikonen */
  }
}

@media screen and (max-width: 491px)
{
  .pLogo
  {
      font-size: 15px;
      font-weight: 800;
  }
}
 
footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  text-align: center;
  font-size: 14px;
}
.footer-content a {
  color: #00acee;
  text-decoration: none;
}
.footer-content a:hover {
  text-decoration: underline;
}
.social-links {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-links li {
  display: inline;
}
.social-links a {
  color: #00acee;
}