* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #f5efe6, #e6d5c3);
  color: #4a3b2f;
  overflow-x: hidden;
  text-align: center;
}

/* FLOATING SHAPES */
.shape {
  position: fixed;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.25;
  animation: float 12s infinite ease-in-out;
}

.shape.one {
  width: 220px;
  height: 220px;
  background: #b08968;
  top: 10%;
  left: 5%;
}

.shape.two {
  width: 280px;
  height: 280px;
  background: #ddb892;
  bottom: 15%;
  right: 5%;
  animation-delay: 4s;
}

.shape.three {
  width: 160px;
  height: 160px;
  background: #7f5539;
  top: 55%;
  right: 25%;
  animation-delay: 7s;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
  100% { transform: translateY(0); }
}

/* SECTION */
section {
  min-height: 100vh;
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* CARD */
.card {
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 40px 30px;
  max-width: 560px;
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* HERO */
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  margin-bottom: 15px;
}

/* TEXT */
p {
  line-height: 1.9;
  font-size: 18px;
}

/* BUTTON */
button {
  margin-top: 20px;
  padding: 10px 28px;
  border-radius: 25px;
  border: none;
  background: #8b6f55;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: #6f543f;
  transform: translateY(-2px);
}

/* MUSIC */
.music-box {
  margin-top: 20px;
}

/* GALLERY */
.gallery-title {
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-img {
  width: 100%;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 35px rgba(0,0,0,0.25);
}

/* MODAL */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.modal img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 18px;
}

#closeModal {
  position: absolute;
  top: 25px;
  right: 35px;
  font-size: 36px;
  color: white;
  cursor: pointer;
}

/* FADE */
.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

/* HIDDEN */
.hidden {
  display: none;
}

.closing {
  font-style: italic;
}
