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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f3e8;
  color: #1f2d24;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  background: rgba(31, 45, 36, 0.92);
  display: flex;
  gap: 24px;
  justify-content: center;
  z-index: 100;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  height: 100vh;
background: linear-gradient(135deg, #1f2d24, #b58b2b);
  background-size: cover;
  background-position: center;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 22px;
}

.story-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 25px;
  background: #f7f3e8;
}

.story-section.dark {
  background: #1f2d24;
  color: white;
}

.text-box {
  max-width: 780px;
  background: rgba(255,255,255,0.88);
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

.dark .text-box {
  background: rgba(255,255,255,0.08);
}

.label {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: bold;
  margin-bottom: 14px;
  color: #b58b2b;
}

h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

p {
  font-size: 20px;
  line-height: 1.7;
}

.button {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 24px;
  background: #b58b2b;
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: bold;
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .navbar {
    flex-wrap: wrap;
    padding: 12px;
    gap: 12px;
  }

  .text-box {
    padding: 30px;
  }
}
