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

body {
  font-family: 'Lato', sans-serif;
  background-color: #f5ede6;
  background-image:
    radial-gradient(circle at 15% 50%, rgba(255, 180, 200, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 85% 15%, rgba(255, 200, 230, 0.2) 0%, transparent 55%);
  color: #333;
  min-height: 100vh;
}

/* ── Hero ── */
.hero {
  text-align: center;
  padding: 70px 20px 30px;
}

.hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 4rem;
  font-weight: 700;
  color: #c94f7a;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
}

.hero p {
  font-weight: 300;
  color: #999;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

/* ── Love note ── */
.love-note {
  display: flex;
  justify-content: center;
  padding: 10px 20px 50px;
}

.love-note-inner {
  position: relative;
  background: #fff9f0;
  border: 1px solid #e8d5c0;
  border-radius: 2px;
  padding: 36px 44px 28px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07), 4px 4px 0 #f0d9c8;
  transform: rotate(-0.5deg);
}

.love-note-inner::before {
  content: '\275D';
  font-size: 5rem;
  color: #f0c0d8;
  position: absolute;
  top: -18px;
  left: 18px;
  font-family: Georgia, serif;
  line-height: 1;
}

.love-note-inner p {
  font-family: 'Dancing Script', cursive;
  font-size: 1.3rem;
  line-height: 1.85;
  color: #666;
  text-align: center;
}

.love-note-inner .signature {
  display: block;
  text-align: right;
  margin-top: 18px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  color: #c94f7a;
}

/* ── Gallery ── */
.gallery {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  padding: 0 0 70px;
}

/* ── Polaroid cards ── */
.photo {
  background: #fff;
  padding: 12px 12px 52px;
  width: 260px;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.17), 0 1px 5px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
  position: relative;
}

.photo img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.photo span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  padding: 10px 8px 14px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: #666;
}

/* Individual rotations */
.rotate-left    { transform: rotate(-3deg); }
.rotate-right   { transform: rotate(2.5deg); }
.rotate-left-2  { transform: rotate(-1.8deg); }
.rotate-right-2 { transform: rotate(3.5deg); }
.rotate-center  { transform: rotate(-0.8deg); }

.photo:hover {
  transform: rotate(0deg) scale(1.07) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  z-index: 10;
}

/* ── Footer ── */
footer {
  text-align: center;
  padding: 20px 20px 40px;
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: #bbb;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.8rem;
  }

  .love-note-inner {
    padding: 28px 24px 24px;
  }

  .love-note-inner p {
    font-size: 1.1rem;
  }

  .photo {
    width: 220px;
  }

  .photo img {
    height: 185px;
  }
}
