/* Reset-ish */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background: #f8f4ef;
  color: #4b2e2e;
  font-family: "Segoe UI", sans-serif;
  text-align: center;
  overflow-x: hidden;
  padding-bottom: 50px;
}

header {
  margin-top: 20px;
}
.site-title {
  font-family: "Great Vibes", cursive;
  color: brown;
  font-size: 3em;
}

/* Container for falling leaves */
.fall-leaves {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

/* Each leaf */
.leaf {
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url('leaf.png');
  background-size: cover;
  opacity: 0.8;
  animation: fall linear infinite;
}
@keyframes fall {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  100% {
    transform: translateY(110vh) rotate(360deg);
    opacity: 0.8;
  }
}

/* Party section */
.party-section {
  margin: 40px auto;
}

/* Mirrorball */
.mirrorball {
  margin: 20px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #dddddd, #888888);
  border: 2px solid #aaa;
  position: relative;
  animation: spin 5s linear infinite;
}
.mirrorball::after {
  content: "";
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.2),
    rgba(255,255,255,0.2) 5px,
    rgba(255,255,255,0.1) 5px,
    rgba(255,255,255,0.1) 10px
  );
  border-radius: 50%;
}
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Posters */
.posters-section {
  margin: 50px auto;
}
.posters img {
  width: 180px;
  margin: 10px;
  border: 4px solid #b38b6d;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

/* Aesthetic text */
.aesthetic-text {
  margin: 40px auto;
  max-width: 600px;
  padding: 0 20px;
  line-height: 1.6;
  font-style: italic;
  color: #5a3e3e;
}
