/* Grundinställningar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: #FEFB98;
  color: #FFFFBC; /* <-- All text får denna färg */
}

/* Meny och namn */
nav {
  position: absolute; /* alltid ovanpå */
  top: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10; /* högre än bilden */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #FFFFBC; /* ändrad till #FFFFBC */
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 2px;
}

nav .site-name {
  color: #FFFFBC; /* ändrad till #FFFFBC */
  font-weight: 100;
  font-size: 15px;
  letter-spacing: 2px;
}

/* Fullscreen bild */
.fullscreen-image {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.fullscreen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative; /* säkerställer att z-index fungerar */
  z-index: 0; /* ligger under menyn */
}

/* Responsivt */
@media (max-width: 768px) {
  nav ul {
    gap: 10px;
  }
}

@media (max-width: 480px) {
  nav {
    top: 10px;
    left: 10px;
    right: 10px;
  }
  nav ul li a, nav .site-name {
    font-size: 12px;
  }
}
