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

body {
  font-family: 'Arial', sans-serif;
  color: #fff;
  background-color: #2c0b0e;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background-color: #3e0e13;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-weight: bold;
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f0c040;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  background: url('https://cdn.prod.website-files.com/688a07b5b000de23da3a8340/68a7257dc72cae04ce880ada_share-img.png') center/cover no-repeat;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 10px;
}

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

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  background: #f0c040;
  color: #2c0b0e;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #fff;
  color: #3e0e13;
}

.section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 60px;
  min-height: 60vh;
}

.section-content {
  max-width: 900px;
  text-align: center;
}

.activity-boxes {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.box {
  background: #451016;
  padding: 20px;
  border-radius: 10px;
  width: 280px;
  transition: 0.3s;
}

.box:hover {
  background: #5b1b22;
  transform: translateY(-5px);
}

.box-link {
  display: inline-block;
  margin-top: 20px;
  color: #f0c040;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #3e0e13;
}
