body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #dcdcdc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-wrapper {
  flex: 1;
  padding: 20px;
}

.hero-box {
  background-image: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.4)), url('images/skierjumpmute.jpg');
  background-size: cover;
  background-position: center;
  border-radius: 40px;
  min-height: calc(100vh - 80px);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 30px;
  flex-wrap: wrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  padding: 10px 20px;
  border: 2px solid black;
  font-size: 14px;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  background-color: black;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.button:hover,
.button.active {
  background-color: white;
  color: black;
}

.title-container {
  padding-left: 30px;
}

.curved-title {
  display: inline-block;
  background-color: white;
  color: black;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 24px;
  font-weight: bold;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 60px;
  gap: 20px;
}

.hero-heading {
  color: white;
  font-size: 72px;
  margin: 0;
  max-width: 600px;
  line-height: 1.1;
  text-align: left;
}

.description-box {
  max-width: 500px;
}

.description-box p {
  color: white;
  font-size: 18px;
  line-height: 1.5;
  text-shadow: 1px 1px 10px rgba(0,0,0,0.5);
}

.content-section {
  background: white;
  margin: 30px auto;
  padding: 30px;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.content-section h2 {
  margin-top: 0;
}

.content-section img {
  display: block;
  margin-top: 15px;
  border-radius: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 14px;
  letter-spacing: 2px;
  background-color: #dcdcdc;
  border-top: 1px solid #bbb;
}

#menu-toggle,
.hamburger {
  display: none;
}

@media (max-width: 900px) {
  .header {
    flex-direction: column;
    margin: 10px;
    gap: 15px;
  }

  .hamburger {
    display: block;
    background: black;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    background: rgba(0,0,0,0.9);
    padding: 20px 0;
    border-radius: 20px;
    margin-top: 10px;
  }

  #menu-toggle:checked ~ .nav-links {
    display: flex;
  }

  .nav-links .button {
    width: 80%;
    text-align: center;
  }

  .nav-links .button:last-child {
    display: block;
  }

  .hero-content {
    padding: 30px;
  }

  .hero-heading {
    font-size: 36px;
  }

  .curved-title {
    font-size: 18px;
    padding: 10px 25px;
  }
}