body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background-color: #000;
  color: white;
  overflow-x: hidden;
}

header {
  padding: 20px 40px;
  text-align: center;
}

.nav-links {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.date {
  color: #f7e350;
  font-weight: bold;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.block-text {
  background-color: #f1a6f4;
  color: black;
  padding: 10px 30px;
  font-weight: 900;
  font-size: 2.8em;
  display: inline-block;
  border: 2px solid white;
}

.party-text {
  font-size: 2.4em;
  font-weight: 700;
  color: white;
  text-shadow: 0 0 3px #ccc;
}

.description {
  max-width: 600px;
  margin: 30px auto;
  font-size: 1em;
  line-height: 1.6em;
  color: #ccc;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: background 0.3s, color 0.3s;
}

.btn:hover {
  background-color: white;
  color: black;
}

/* Decorative Elements (you can add actual images here) */
.decor {
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}

.decor-left {
  top: 40px;
  left: 0;
  background-image: url('left-decor.png'); /* Replace with actual image */
}

.decor-right {
  bottom: 0;
  right: 0;
  background-image: url('right-decor.png'); /* Replace with actual image */
}

footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: #666;
}
