/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgb(255, 255, 203);
  backdrop-filter: blur(10px);
  z-index: 999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
}

.brand {
  font-size: 24px;
  font-weight: bold;
  color: #222;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #339cc9;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #222;
}

/* RESPONSIV NAVIGATION */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    position: absolute;
    top: 60px;
    right: 5%;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* === GLOBALT === */
body {
  font-family: "Gill Sans", "Helvetica", "Verdana", sans-serif;
  background-color:#fffdb4;
  color: black;
  margin: 0;
  padding: 0;
  padding-top: 60px; 
  line-height: 1.6;
}

.content {
  margin-top: 80px;
  padding: 0 5%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

