@import url('https://fonts.googleapis.com/css2?family=Ralewaywght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  color: #222;
  background: url("https://weirdest-soul.neocities.org/bilder/hint-1-1.png");
  background-size: cover;
  background-position: center;
  line-height: 1.6;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 2rem;
  z-index: 1000;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  color: #e67e22;
}

.nav-icons {
  display: flex;
  gap: 1.2rem;
}

.nav-link {
  font-size: 1.8rem;
  color: #e67e22;
  transition: transform 0.3s, color 0.3s;
}

.nav-link:hover {
  color: #ff9f43;
  transform: scale(1.2);
}

/* Hero Section */
.hero {
  background: url("https://weirdest-soul.neocities.org/bilder/1lo.jpg") center/cover no-repeat;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(0, 0, 0);
  padding: 0 2rem;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 2rem;
  font-weight: 500;
}

/* Content Sections */
.content-section {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.content-section h2 {
  color: #e67e22;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.content-section p {
  font-size: 2rem;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 1,6rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-icons a {
    font-size: 1.6rem;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
