/* ===== INTRO OVERLAY ===== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: linear-gradient(135deg, #ffb3d1 0%, #e8d5f5 40%, #ffd6e7 70%, #ffc8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.intro-overlay.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-hearts {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.intro-heart-item {
  position: absolute;
  bottom: -50px;
  font-size: 1.5rem;
  animation: introHeartRise linear infinite;
  opacity: 0;
}

@keyframes introHeartRise {
  0%   { transform: translateY(0) scale(0.8); opacity: 0; }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.5; }
  100% { transform: translateY(-110vh) scale(1.2); opacity: 0; }
}

.intro-box {
  background: white;
  border-radius: 24px;
  padding: 44px 40px 36px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(255,110,180,0.35), 0 4px 20px rgba(0,0,0,0.08);
  position: relative;
  animation: introBoxPop 0.7s cubic-bezier(0.34,1.56,0.64,1) both;
}

@keyframes introBoxPop {
  0%   { transform: scale(0.6) translateY(40px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

.intro-ribbon {
  display: inline-block;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple-hot));
  color: white;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 700;
  padding: 5px 20px;
  border-radius: 30px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  box-shadow: 2px 2px 10px rgba(255,110,180,0.4);
}

.intro-emoji {
  font-size: 3.5rem;
  margin-bottom: 10px;
  display: block;
  animation: introBow 1.5s ease-in-out infinite;
}

@keyframes introBow {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50%       { transform: rotate(8deg) scale(1.1); }
}

.intro-title {
  font-family: 'Caveat', cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.15;
  margin-bottom: 8px;
  text-shadow: 2px 2px 0 rgba(255,110,180,0.2);
}

.intro-names {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--purple-hot);
  margin-bottom: 12px;
}

.intro-amp {
  color: var(--pink-hot);
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
}

.intro-msg {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}

.intro-btn {
  background: linear-gradient(90deg, var(--pink-hot), var(--purple-hot));
  color: white;
  border: none;
  border-radius: 50px;
  padding: 13px 32px;
  font-family: 'Caveat', cursive;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 14px rgba(255,110,180,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}

.intro-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 5px 5px 20px rgba(255,110,180,0.55);
}

.intro-btn:active {
  transform: scale(0.97);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --pink-light: #ffd6e7;
  --pink-mid: #ffb3d1;
  --pink-hot: #ff6eb4;
  --pink-deep: #e91e8c;
  --purple-light: #e8d5f5;
  --purple-mid: #c9a0dc;
  --purple-hot: #a855f7;
  --peach: #ffd4b8;
  --peach-mid: #ffb085;
  --yellow-light: #fff3b0;
  --yellow-mid: #ffd166;
  --white: #fffaf9;
  --cream: #fff5f8;
  --text-dark: #4a2040;
  --text-mid: #7a4060;
  --shadow-pink: rgba(255, 110, 180, 0.25);
  --shadow-purple: rgba(168, 85, 247, 0.2);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  background: linear-gradient(135deg, #ffe0f0 0%, #f5d0ff 30%, #ffd6e7 60%, #ffe8f5 100%);
  background-attachment: fixed;
  min-height: 100vh;
  color: var(--text-dark);
  cursor: none;
  overflow-x: hidden;
}

/* ===== CUSTOM CURSOR ===== */
.cursor {
  width: 18px;
  height: 18px;
  background: var(--pink-hot);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, background 0.2s;
  box-shadow: 0 0 10px var(--pink-hot), 0 0 20px rgba(255,110,180,0.4);
}

.cursor-trail {
  width: 30px;
  height: 30px;
  border: 2px solid var(--pink-hot);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
  opacity: 0.5;
}

/* ===== FLOATING DECORATIONS ===== */
.floating-deco {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.deco-item {
  position: absolute;
  font-size: 1.5rem;
  animation: floatDeco linear infinite;
  opacity: 0.15;
  user-select: none;
}

@keyframes floatDeco {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.15; }
  90% { opacity: 0.15; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background: linear-gradient(160deg, #ffb3d1 0%, #e8d5f5 40%, #ffd6e7 70%, #ffc8e8 100%);
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 20%, rgba(255,182,193,0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(216,191,216,0.4) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,218,185,0.2) 0%, transparent 60%);
  pointer-events: none;
}

.hero-tape {
  position: absolute;
  width: 100%;
  font-family: 'Courier New', monospace;
  font-size: 0.75rem;
  color: var(--pink-deep);
  opacity: 0.5;
  letter-spacing: 2px;
  overflow: hidden;
  white-space: nowrap;
}

.tape-top { top: 10px; }
.tape-bottom { bottom: 10px; }

.hero-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
  max-width: 400px;
}

.hero-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.1;
  text-shadow: 3px 3px 0px rgba(255,110,180,0.3), 6px 6px 0px rgba(255,110,180,0.1);
  margin-bottom: 10px;
}

.amp {
  color: var(--purple-hot);
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
}

.hero-subtitle {
  font-family: 'Caveat', cursive;
  font-size: 1.5rem;
  color: var(--purple-hot);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: white;
  border: 2px solid var(--pink-mid);
  color: var(--pink-deep);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 3px 3px 0px var(--pink-mid);
  transition: transform 0.2s, box-shadow 0.2s;
}

.badge:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0px var(--pink-mid);
}

/* ===== PHOTO GRID ===== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  justify-items: center;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 10px 20px;
}

.polaroid {
  background: white;
  padding: 10px 10px 32px 10px;
  box-shadow: 4px 4px 15px rgba(0,0,0,0.12), 8px 8px 30px rgba(255,110,180,0.15);
  position: relative;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.polaroid:hover {
  transform: scale(1.05) rotate(0deg) !important;
  box-shadow: 8px 8px 25px rgba(0,0,0,0.18), 12px 12px 40px rgba(255,110,180,0.25);
  z-index: 10;
}

.tilt-left { transform: rotate(-3deg); }
.tilt-right { transform: rotate(3deg); }

.polaroid-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

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

.hero-polaroid {
  flex-shrink: 0;
  width: 240px;
}

.hero-polaroid .polaroid-img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.polaroid-big .polaroid-img {
  aspect-ratio: 3 / 4;
}

.polaroid-caption {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--text-mid);
  text-align: center;
  position: absolute;
  bottom: 8px;
  left: 0; right: 0;
}

/* ===== PLACEHOLDER IMAGE ===== */
.placeholder-img {
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--pink-mid);
}

.placeholder-text {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: center;
  padding: 10px;
  opacity: 0.7;
}

/* ===== STICKERS ===== */
.sticker {
  position: absolute;
  font-size: 2rem;
  animation: stickerBounce 3s ease-in-out infinite;
  filter: drop-shadow(2px 2px 3px rgba(0,0,0,0.15));
}

.sticker-star {
  top: -15px;
  right: -10px;
  animation-delay: 0.5s;
}

.sticker-small {
  font-size: 1.3rem;
  bottom: 42px;
  right: -8px;
  animation-delay: 1s;
}

@keyframes stickerBounce {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-8px) rotate(5deg); }
}

/* ===== NAV ===== */
.scrapbook-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 12px 8px;
  background: white;
  box-shadow: 0 4px 20px var(--shadow-pink);
  position: sticky;
  top: 0;
  z-index: 100;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.scrapbook-nav::-webkit-scrollbar {
  display: none;
}

.nav-tab {
  padding: 7px 14px;
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px 8px 0 0;
  margin: 0 3px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
  border-bottom: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-pink { background: var(--pink-light); color: var(--pink-deep); border-color: var(--pink-mid); }
.tab-purple { background: var(--purple-light); color: var(--purple-hot); border-color: var(--purple-mid); }
.tab-peach { background: var(--peach); color: #c05000; border-color: var(--peach-mid); }
.tab-yellow { background: var(--yellow-light); color: #b07800; border-color: var(--yellow-mid); }

.nav-tab:hover {
  transform: translateY(-4px);
  box-shadow: 0 -4px 12px rgba(255,110,180,0.3);
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}

.section-alt {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--pink-deep);
  margin-bottom: 8px;
  text-shadow: 2px 2px 0px rgba(255,110,180,0.2);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ===== WASHI TAPE ===== */
.washi-tape {
  height: 20px;
  width: 200px;
  margin: 0 auto 20px;
  border-radius: 2px;
  opacity: 0.7;
  transform: rotate(-1deg);
}

.washi-pink { background: repeating-linear-gradient(45deg, var(--pink-mid), var(--pink-mid) 5px, var(--pink-light) 5px, var(--pink-light) 10px); }
.washi-purple { background: repeating-linear-gradient(45deg, var(--purple-mid), var(--purple-mid) 5px, var(--purple-light) 5px, var(--purple-light) 10px); }
.washi-peach { background: repeating-linear-gradient(45deg, var(--peach-mid), var(--peach-mid) 5px, var(--peach) 5px, var(--peach) 10px); }
.washi-yellow { background: repeating-linear-gradient(45deg, var(--yellow-mid), var(--yellow-mid) 5px, var(--yellow-light) 5px, var(--yellow-light) 10px); }

/* ===== STICKY NOTES ===== */
.sticky-note {
  max-width: 350px;
  margin: 0 auto;
  padding: 20px 24px;
  border-radius: 4px;
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  line-height: 1.6;
  transform: rotate(-1.5deg);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1), 6px 6px 20px rgba(255,110,180,0.15);
  position: relative;
}

.sticky-note::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 16px;
  background: rgba(255,255,255,0.6);
  border-radius: 2px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.note-pink { background: #ffe0f0; color: var(--pink-deep); }
.note-purple { background: #ede0ff; color: #6b21a8; }
.note-peach { background: #ffe8d6; color: #9a3412; }
.note-yellow { background: #fef9c3; color: #854d0e; }

/* ===== ART GRID ===== */
.art-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto 40px;
  padding: 10px 20px;
}

.art-frame {
  background: white;
  padding: 16px;
  box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
  width: 100%;
}

.art-frame:hover {
  transform: scale(1.03) rotate(0deg) !important;
}

.frame-pink { border: 6px solid var(--pink-mid); transform: rotate(-2deg); }
.frame-purple { border: 6px solid var(--purple-mid); transform: rotate(2deg); }
.frame-peach { border: 6px solid var(--peach-mid); transform: rotate(-1deg); }

.art-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
}

.art-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  gap: 2px;
}

.art-by {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--purple-hot);
}

.art-title {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--text-mid);
  font-style: italic;
}

/* ===== NOTES GRID ===== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
  padding: 10px 10px;
}

.note-card {
  width: 100%;
  min-height: 180px;
  padding: 30px 16px 16px;
  border-radius: 4px;
  position: relative;
  box-shadow: 4px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.note-card:nth-child(1) { transform: rotate(-3deg); }
.note-card:nth-child(2) { transform: rotate(2deg); }
.note-card:nth-child(3) { transform: rotate(-1deg); }
.note-card:nth-child(4) { transform: rotate(3deg); }

.note-card:hover {
  transform: rotate(0deg) scale(1.05) !important;
  z-index: 10;
}

.note-card-pink { background: #ffe0f0; }
.note-card-purple { background: #ede0ff; }
.note-card-peach { background: #ffe8d6; }
.note-card-yellow { background: #fef9c3; }

.note-pin {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  filter: drop-shadow(1px 2px 3px rgba(0,0,0,0.2));
}

.note-text {
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.6;
  flex: 1;
}

.note-from {
  font-family: 'Caveat', cursive;
  font-size: 0.9rem;
  color: var(--text-mid);
  text-align: right;
  margin-top: 12px;
  font-style: italic;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(135deg, var(--pink-deep), var(--purple-hot));
  color: white;
  text-align: center;
  padding: 50px 20px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.footer-tape {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--pink-light), var(--pink-light) 20px, var(--purple-light) 20px, var(--purple-light) 40px);
  opacity: 0.5;
}

.footer-title {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
}

.footer-sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 20px;
  position: relative;
}

.footer-hearts {
  display: flex;
  gap: 16px;
  justify-content: center;
  font-size: 1.5rem;
  position: relative;
}

.footer-hearts span {
  animation: heartPop 2s ease-in-out infinite;
}

.footer-hearts span:nth-child(1) { animation-delay: 0s; }
.footer-hearts span:nth-child(2) { animation-delay: 0.3s; }
.footer-hearts span:nth-child(3) { animation-delay: 0.6s; }
.footer-hearts span:nth-child(4) { animation-delay: 0.9s; }
.footer-hearts span:nth-child(5) { animation-delay: 1.2s; }
.footer-hearts span:nth-child(6) { animation-delay: 1.5s; }

@keyframes heartPop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

/* ===== COUPLE BADGE ===== */
.couple-badge {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  background: white;
  border: 3px solid var(--pink-mid);
  border-radius: 50px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 4px 4px 16px var(--shadow-pink), 0 0 0 0 rgba(255,110,180,0.4);
  animation: badgePulse 2.5s ease-in-out infinite;
  cursor: default;
  user-select: none;
  text-decoration: none;
}

.couple-badge:hover {
  transform: scale(1.08);
  box-shadow: 6px 6px 24px var(--shadow-pink), 0 0 20px rgba(255,110,180,0.3);
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 4px 4px 16px var(--shadow-pink), 0 0 0 0 rgba(255,110,180,0.4); }
  50% { box-shadow: 4px 4px 16px var(--shadow-pink), 0 0 0 10px rgba(255,110,180,0); }
}

.couple-badge-text {
  font-family: 'Caveat', cursive;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pink-deep);
  line-height: 1.2;
}

.couple-badge-heart {
  font-size: 1.4rem;
  animation: heartBeat 1.2s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.3); }
  28% { transform: scale(1); }
  42% { transform: scale(1.2); }
  70% { transform: scale(1); }
}

/* ===== LOVE RIBBON (hero) ===== */
.love-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, var(--pink-hot), var(--purple-hot));
  color: white;
  font-family: 'Caveat', cursive;
  font-size: 1rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 16px;
  box-shadow: 3px 3px 10px rgba(255,110,180,0.4);
  letter-spacing: 0.5px;
}

/* ===== FLOATING HEARTS (section divider) ===== */
.heart-divider {
  text-align: center;
  padding: 10px 0 0;
  font-size: 1.3rem;
  letter-spacing: 10px;
  opacity: 0.6;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--pink-light);
}

::-webkit-scrollbar-thumb {
  background: var(--pink-hot);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--pink-deep);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {

  /* cursor off di touch device */
  .cursor, .cursor-trail { display: none; }
  body { cursor: auto; }

  /* hero */
  .hero {
    padding: 50px 16px;
    min-height: auto;
  }

  .hero-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    align-items: center;
  }

  .hero-polaroid {
    width: 180px;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badges {
    justify-content: center;
  }

  .love-ribbon {
    font-size: 0.85rem;
    padding: 5px 14px;
  }

  /* sections */
  .section {
    padding: 50px 16px;
  }

  /* photo grid — 2 kolom di hp */
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  /* art grid — 2 kolom */
  .art-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 10px 0;
  }
  /* notes grid — 2 kolom */
  .notes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .note-card {
    min-height: 150px;
  }

  /* couple badge lebih kecil */
  .couple-badge {
    bottom: 14px;
    right: 14px;
    padding: 8px 12px;
    gap: 6px;
  }

  .couple-badge-text {
    font-size: 0.8rem;
  }

  .couple-badge-heart {
    font-size: 1.1rem;
  }

  /* sticky note full width */
  .sticky-note {
    max-width: 100%;
    margin: 0 16px;
  }

  /* heart divider lebih kecil */
  .heart-divider {
    font-size: 1rem;
    letter-spacing: 6px;
  }
}

/* ===== ENTRANCE ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.polaroid.fade-in:nth-child(1) { transition-delay: 0.1s; }
.polaroid.fade-in:nth-child(2) { transition-delay: 0.2s; }
.polaroid.fade-in:nth-child(3) { transition-delay: 0.3s; }
.polaroid.fade-in:nth-child(4) { transition-delay: 0.4s; }
.polaroid.fade-in:nth-child(5) { transition-delay: 0.5s; }
