/* Reset og basis */
html, body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: url('images/floral.png');
  background-repeat: repeat;         /* <-- Nu gentages baggrunden */
  background-size: auto;             /* <-- Ingen skalering */
  background-position: top left;
  color: #000;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* Header */
header {
  height: 80px;
  background-color: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
  position: relative;
}

/* Logo */
#logo {
  width: 150px;
  height: 50px;
  cursor: pointer;
  object-fit: contain;
  border-radius: 5px;
}

/* Side-menu */
.side-menu {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100vh;
  background-color: #FF8201;
  display: flex;
  flex-direction: column;
  padding-top: 60px;
  transition: left 0.3s ease;
  z-index: 1000;
}

.side-menu.active {
  left: 0;
}

#closeBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
}

#closeBtn:hover {
  color: black;
}

.side-menu a {
  color: white;
  padding: 15px 25px;
  text-decoration: none;
  border-bottom: 1px solid white;
}

.side-menu a:hover {
  background-color: #FF76A3;
}

/* Main */
main {
  padding: 20px;
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  margin-top: 40px;
}

section {
  display: none;
  background-color: rgba(255, 255, 255, 0.9); /* Let gennemsigtig baggrund */
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 0 8px rgba(0,0,0,0.2);
  margin-bottom: 30px;
}

section.active {
  display: block;
}

/* Footer */
footer {
  text-align: center;
  margin: 40px 0;
  color: #222;
  font-size: 14px;
}

/* Responsivitet */
@media (min-width: 768px) {
  .side-menu {
    left: -250px;
  }
}
