:root {
  --bg: #0f0f12;
  --bg-secondary: #1a1a21;
  --card-bg: rgba(255, 255, 255, 0.04);
  --accent: #ff5b78;
  --accent-light: #ff8aa3;
  --gold: #d4af37;
  --muted: #9ca3af;
  --text-light: #e5e7eb;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-hover: rgba(255, 255, 255, 0.1);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #3d1a2a 0%, #5a2847 50%, #2d1a24 100%);
  color: var(--text-light);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.hidden {
  display: none !important;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateY(-150vh) scale(1.2);
    opacity: 0;
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

@keyframes heartPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes glow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(255, 91, 120, 0.2);
  }

  50% {
    box-shadow: 0 0 40px rgba(255, 91, 120, 0.4);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Animation helpers */
.fade-in {
  animation: fadeIn 0.8s ease-out forwards;
  opacity: 0;
}

.fade-in-up {
  animation: fadeInUp 0.7s ease-out forwards;
  opacity: 0;
}

.fade-in-up {
  animation-delay: var(--delay, 0s);
}

.animate-slide-in {
  animation: slideIn 0.6s ease-out forwards;
}

.animate-scale-in {
  animation: scaleIn 0.5s ease-out forwards;
}

/* ===== HEADER ===== */
.site-header {
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 15, 18, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  animation: fadeInDown 0.6s ease-out;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  margin: 0;
  font-size: 1.5rem;
  letter-spacing: 0.8px;
  font-weight: 700;
  background: linear-gradient(120deg, var(--text-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-menu {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 500;
  transition: var(--transition);
  font-size: 0.95rem;
  padding: 0.7rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  box-shadow: 0 8px 25px rgba(255, 91, 120, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 91, 120, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-nav {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.6rem 1rem;
}

.btn-nav:hover {
  background: rgba(255, 91, 120, 0.1);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.glass-card:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 255, 255, 0.08);
}

/* ===== PASSWORD OVERLAY ===== */
.login-bg-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.animated-shape {
  position: absolute;
  border: 2px solid rgba(255, 91, 120, 0.15);
  border-radius: 50%;
  animation: float-shape 20s infinite ease-in-out;
}

.shape-1 {
  width: 150px;
  height: 150px;
  top: 10%;
  left: 10%;
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  animation-duration: 25s;
  border-color: rgba(255, 91, 120, 0.2);
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 5%;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  animation-duration: 30s;
  animation-delay: -10s;
  border-color: rgba(255, 138, 163, 0.15);
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation-duration: 22s;
  animation-delay: -15s;
  border-color: rgba(255, 91, 120, 0.1);
}

.shape-4 {
  width: 180px;
  height: 180px;
  top: 30%;
  right: 15%;
  border-radius: 50% 50% 38% 62% / 58% 41% 59% 42%;
  animation-duration: 28s;
  animation-delay: -5s;
  border-color: rgba(212, 175, 55, 0.1);
}

@keyframes float-shape {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }

  25% {
    transform: translate(30px, -40px) rotate(90deg);
    opacity: 0.5;
  }

  50% {
    transform: translate(-20px, 20px) rotate(180deg);
    opacity: 0.3;
  }

  75% {
    transform: translate(40px, 30px) rotate(270deg);
    opacity: 0.4;
  }
}

.floating-hearts-login {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.float-heart {
  position: absolute;
  font-size: 1.5rem;
  animation: floatUp 8s infinite ease-in;
  opacity: 0;
}

.float-heart:nth-child(1) {
  left: 15%;
  bottom: -20px;
  animation-delay: 0s;
  animation-duration: 10s;
}

.float-heart:nth-child(2) {
  left: 30%;
  bottom: -20px;
  animation-delay: 1.5s;
  animation-duration: 12s;
}

.float-heart:nth-child(3) {
  left: 50%;
  bottom: -20px;
  animation-delay: 3s;
  animation-duration: 11s;
}

.float-heart:nth-child(4) {
  left: 70%;
  bottom: -20px;
  animation-delay: 4.5s;
  animation-duration: 13s;
}

.float-heart:nth-child(5) {
  left: 85%;
  bottom: -20px;
  animation-delay: 6s;
  animation-duration: 10.5s;
}

@keyframes floatUp {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    opacity: 0;
  }

  5% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg) scale(0.5);
    opacity: 0;
  }
}

.overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
  backdrop-filter: blur(8px);
  z-index: 100;
}

.overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 91, 120, 0.1), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05), transparent 50%);
  animation: gradientShift 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes gradientShift {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.pass-card {
  width: min(480px, 90%);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: cardFloatIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cardFloatIn {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.8);
    filter: blur(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

.lock-icon-animate {
  animation: lockBounce 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes lockBounce {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  25% {
    transform: translateY(-10px) scale(1.05);
  }

  50% {
    transform: translateY(-15px) scale(1.1) rotate(-5deg);
  }

  75% {
    transform: translateY(-5px) scale(1.05);
  }
}

.pass-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  background: linear-gradient(120deg, var(--text-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 3s ease-in-out infinite;
}

@keyframes textShimmer {

  0%,
  100% {
    opacity: 1;
    filter: brightness(1);
  }

  50% {
    opacity: 0.9;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 91, 120, 0.3));
  }
}

.input-animate {
  animation: inputSlideIn 0.8s ease-out 0.3s both;
}

@keyframes inputSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
    border-color: transparent;
  }

  100% {
    opacity: 1;
    transform: translateX(0);
    border-color: rgba(255, 255, 255, 0.1);
  }
}

.input-field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 91, 120, 0.15), inset 0 0 10px rgba(255, 91, 120, 0.05);
  animation: inputPulse 0.6s ease-out;
}

@keyframes inputPulse {
  0% {
    box-shadow: 0 0 20px rgba(255, 91, 120, 0.15), inset 0 0 10px rgba(255, 91, 120, 0.05);
  }

  50% {
    box-shadow: 0 0 30px rgba(255, 91, 120, 0.3), inset 0 0 20px rgba(255, 91, 120, 0.1);
  }

  100% {
    box-shadow: 0 0 20px rgba(255, 91, 120, 0.15), inset 0 0 10px rgba(255, 91, 120, 0.05);
  }
}

.button-animate {
  animation: buttonSlideIn 0.8s ease-out 0.4s both;
}

@keyframes buttonSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  animation: buttonGlow 0.6s ease-out;
}

@keyframes buttonGlow {
  0% {
    box-shadow: 0 0 10px rgba(255, 91, 120, 0.3);
  }

  50% {
    box-shadow: 0 0 25px rgba(255, 91, 120, 0.6), 0 0 40px rgba(255, 91, 120, 0.3);
  }

  100% {
    box-shadow: 0 0 15px rgba(255, 91, 120, 0.4);
  }
}

.btn-primary:active {
  animation: buttonPress 0.3s ease-out;
}

@keyframes buttonPress {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(0.95);
  }

  100% {
    transform: scale(1);
  }
}

.pass-header h2 {
  margin: 0 0 0.5rem;
  font-size: 1.6rem;
  background: linear-gradient(120deg, var(--text-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hint-text {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* Password Input Wrapper */
.password-input-wrapper {
  position: relative;
  margin-top: 1.5rem;
}

.password-input-wrapper .input-field {
  margin-top: 0;
  padding-right: 3.5rem;
}

.eye-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
  border-radius: 8px;
}

.eye-toggle:hover {
  color: var(--accent);
  background: rgba(255, 91, 120, 0.1);
}

.eye-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.eye-icon {
  width: 22px;
  height: 22px;
}

.input-field {
  width: 100%;
  padding: 1rem 1.2rem;
  margin-top: 1.5rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-light);
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.input-field::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.input-field:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(255, 91, 120, 0.15);
}

.pass-info {
  margin-top: 0.8rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.actions .btn {
  flex: 1;
}

/* ===== HERO SECTION ===== */
.hero {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-animation {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 91, 120, 0.15), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1), transparent 50%);
  animation: pulse 12s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  margin: 0 0 1rem;
  line-height: 1.1;
  background: linear-gradient(120deg, var(--text-light), var(--accent-light), var(--text-light));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--muted);
  margin: 0 0 3rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.countdown-card {
  background: rgba(255, 91, 120, 0.08);
  border: 2px solid rgba(255, 91, 120, 0.2);
  padding: 2rem;
  border-radius: 16px;
  display: inline-block;
  margin-top: 2rem;
  animation: glow 3s ease-in-out infinite;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 91, 120, 0.1), transparent);
  animation: rotateGradient 8s linear infinite;
}

@keyframes rotateGradient {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.countdown-card:hover {
  border-color: rgba(255, 91, 120, 0.4);
  background: rgba(255, 91, 120, 0.12);
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.countdown-timer {
  font-family: 'Courier New', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin: 0.8rem 0;
  letter-spacing: 0.15em;
  text-shadow: 0 0 20px rgba(255, 91, 120, 0.3);
  position: relative;
  z-index: 1;
}

.countdown-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  position: relative;
  z-index: 1;
}

.countdown-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 91, 120, 0.3), transparent);
  margin: 1.2rem 0;
  position: relative;
  z-index: 1;
}

.countdown-msg {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.birthday-active {
  animation: pulse 0.5s ease-out;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  animation: fadeInUp 1s ease-out 0.8s forwards, float 2s ease-in-out 2.5s infinite;
  opacity: 0;
}

.scroll-indicator .chevron {
  width: 24px;
  height: 24px;
  animation: bounce 1.5s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* ===== CARDS SECTION ===== */
.cards-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 91, 120, 0.08), transparent);
  position: relative;
}

.cards-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 0.8rem;
  background: linear-gradient(120deg, var(--text-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  margin: 0 0 2rem;
}

.card {
  width: 100%;
  min-height: 320px;
  perspective: 1200px;
  cursor: pointer;
}

.card-inner {
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-style: preserve-3d;
}

.card.flipped .card-inner,
.card:focus .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  backface-visibility: hidden;
  font-weight: 600;
  padding: 2.5rem;
  text-align: center;
  gap: 1.5rem;
  box-shadow: 0 15px 50px rgba(255, 91, 120, 0.2);
}

.card-front {
  background: linear-gradient(135deg, #ff6b9d 0%, #ff85ad 50%, #ffa3c2 100%);
  color: #fff;
  box-shadow: 0 20px 50px rgba(255, 91, 120, 0.4);
  position: relative;
  border-radius: 28px;
}

.card-front::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent 60%);
  border-radius: 28px;
}

.card-front:hover {
  box-shadow: 0 25px 70px rgba(255, 91, 120, 0.5);
  transform: scale(1.05);
}

.card-emoji {
  font-size: 3.5rem;
  animation: pulse 2.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.card-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.card-back {
  background: linear-gradient(135deg, rgba(255, 91, 120, 0.12), rgba(255, 138, 163, 0.1));
  color: var(--text-light);
  transform: rotateY(180deg);
  border: 1px solid rgba(255, 91, 120, 0.2);
  font-size: 1.15rem;
  line-height: 1.8;
}

.message-card .message-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  min-height: 320px;
  justify-content: center;
  padding: 2.5rem;
  box-shadow: 0 15px 50px rgba(255, 91, 120, 0.15);
  background: var(--glass);
  border-radius: 18px;
  border: 1px solid rgba(255, 91, 120, 0.2);
}

.message-icon {
  font-size: 3.5rem;
  animation: bounce 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.message-box h3 {
  font-size: 1.6rem;
  margin: 0;
  color: var(--accent-light);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.message-box p {
  margin: 0;
  line-height: 1.9;
  color: var(--text-light);
  flex: 1;
  font-size: 1.05rem;
}

.message-footer {
  margin-top: auto;
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
}

.terminal-card {
  position: relative;
}

.terminal-header {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
}

.terminal-dot.red {
  background: #ff5f56;
}

.terminal-dot.yellow {
  background: #ffbd2e;
}

.terminal-dot.green {
  background: #27c93f;
}

.terminal {
  background: #0a0a0f;
  color: #7cfc00;
  font-family: 'Courier New', monospace;
  padding: 1.5rem;
  min-height: 240px;
  border-radius: 10px;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.9), 0 0 30px rgba(124, 252, 0, 0.05);
  font-size: 0.9rem;
  line-height: 1.8;
  overflow-y: auto;
  max-height: 300px;
  border: 1px solid rgba(124, 252, 0, 0.1);
}

.terminal::-webkit-scrollbar {
  width: 6px;
}

.terminal::-webkit-scrollbar-track {
  background: rgba(124, 252, 0, 0.05);
  border-radius: 10px;
}

.terminal::-webkit-scrollbar-thumb {
  background: rgba(124, 252, 0, 0.2);
  border-radius: 10px;
}

.terminal::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 252, 0, 0.3);
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 91, 120, 0.05), transparent);
  position: relative;
}

.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.photo {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a24 0%, #2a2a3a 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-glass-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6b9d 0%, #ff85ad 50%, #ffa3c2 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
  gap: 1rem;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.photo-glass-cover.breaking {
  animation: glassBreak 0.8s ease-out forwards;
}

@keyframes glassBreak {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }

  20% {
    filter: blur(2px);
  }

  40% {
    filter: blur(4px);
    opacity: 0.7;
  }

  60% {
    filter: blur(6px);
    opacity: 0.4;
  }

  80% {
    filter: blur(8px);
    opacity: 0.1;
  }

  100% {
    opacity: 0;
    transform: scale(1.05);
    pointer-events: none;
  }
}

.photo-heart {
  font-size: 4rem;
  animation: heartPulse 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

@keyframes heartPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}

.photo-text {
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.photo:hover .photo-glass-cover {
  transform: scale(1.02);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.2);
}

/* ===== PHOTO MODAL ===== */
.photo-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.photo-modal.active {
  display: flex;
}

.photo-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-modal-img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.photo-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  transition: transform 0.2s ease;
  padding: 10px;
}

.photo-modal-close:hover {
  transform: scale(1.2);
}

.photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 91, 120, 0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.photo:hover::before {
  opacity: 1;
}

.photo:hover::after {
  opacity: 1;
}

.photo-label {
  color: var(--muted);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.photo:hover {
  transform: scale(1.08) translateY(-8px);
  box-shadow: 0 16px 50px rgba(255, 91, 120, 0.25);
  border-color: rgba(255, 91, 120, 0.3);
}

/* ===== REASONS SECTION ===== */
.reasons-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 91, 120, 0.04), transparent);
  position: relative;
}

.reasons-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.reasons-list {
  display: grid;
  gap: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

.reason-item {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 1.8rem;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.reason-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--accent-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.reason-item:hover::before {
  opacity: 1;
}

.reason-item:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 91, 120, 0.3);
  transform: translateX(8px);
  box-shadow: 0 8px 25px rgba(255, 91, 120, 0.1);
}

.reason-item summary {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  user-select: none;
  font-size: 1.1rem;
  padding-left: 0.5rem;
}

.reason-item summary:hover {
  color: var(--accent);
}

.reason-icon {
  font-size: 1.8rem;
  display: inline-flex;
}

.reason-item p {
  margin: 1.2rem 0 0 3rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.95rem;
}

.reason-item[open] summary .reason-icon {
  animation: pulse 0.5s ease;
}

/* ===== TIMELINE SECTION ===== */
.timeline-section {
  padding: 4rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 91, 120, 0.05));
}

.timeline-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding: 2rem;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: var(--transition);
}

.timeline-item:hover {
  background: var(--glass-hover);
  border-color: rgba(255, 91, 120, 0.3);
  transform: translateX(10px);
}

.timeline-item-left {
  margin-right: 50%;
}

.timeline-item-right {
  margin-left: 50%;
}

.timeline-content h3 {
  margin: 0 0 0.5rem;
  color: var(--accent-light);
  font-size: 1.2rem;
}

.timeline-content p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: -3rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.timeline-line::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--accent);
  border: 4px solid var(--bg);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255, 91, 120, 0.5);
}

@media (max-width: 768px) {
  .timeline-item-left {
    margin-right: 0;
  }

  .timeline-item-right {
    margin-left: 0;
  }

  .timeline-line {
    left: -16px;
  }
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(255, 91, 120, 0.15), rgba(255, 138, 163, 0.08));
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0 0 1rem;
  background: linear-gradient(120deg, var(--text-light), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content p {
  color: var(--muted);
  margin: 0 0 2rem;
  font-size: 1.05rem;
}

/* ===== LOVE NOTES SECTION ===== */
.love-notes-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, transparent, rgba(255, 91, 120, 0.03));
}

.love-notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.love-note {
  background: var(--glass);
  border: 1px solid rgba(255, 91, 120, 0.2);
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.love-note::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.8s ease;
}

.love-note:hover::before {
  left: 100%;
}

.love-note:hover {
  border-color: rgba(255, 91, 120, 0.4);
  background: rgba(255, 91, 120, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(255, 91, 120, 0.2);
}

.note-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.love-note p {
  margin: 0;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 500;
}

.note-emoji {
  font-size: 2.5rem;
  display: inline-block;
  animation: bounce 2s ease-in-out infinite;
}

.note-1 {
  border-left: 4px solid rgba(255, 91, 120, 0.5);
}

.note-2 {
  border-left: 4px solid rgba(212, 175, 55, 0.5);
}

.note-3 {
  border-left: 4px solid rgba(127, 252, 0, 0.5);
}

/* ===== ENHANCED FOOTER ===== */
.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 120;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  animation: fadeIn 0.3s ease-out;
}

.modal-card {
  position: relative;
  width: min(500px, 90%);
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: transparent;
  border: 0;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.modal-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modal-card h3 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
  color: var(--accent-light);
}

.modal-text {
  color: var(--text-light);
  margin: 0 0 0.5rem;
}

.modal-message {
  color: var(--muted);
  margin: 0 0 2rem;
}

.modal-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.modal-actions .btn {
  flex: 1;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(15, 15, 18, 0.5);
}

.footer-content {
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-content p {
  margin: 0;
}

.heart-pulse {
  display: inline-block;
  animation: heartPulse 1.5s ease-in-out infinite;
}

.footer-links {
  margin-top: 0.5rem;
  font-size: 0.9rem;
}

.divider {
  color: var(--muted);
  margin: 0 0.5rem;
}

/* ===== PARTICLES & EFFECTS ===== */
.particle {
  position: fixed;
  pointer-events: none;
  animation: floatUp linear forwards;
}

.heart {
  animation: floatUp linear forwards;
  z-index: 10;
}

#heart-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

#particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 10;
}

#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 15;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10px) rotateZ(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotateZ(360deg);
    opacity: 0;
  }
}

.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  animation: confettiFall linear forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .container {
    padding: 1.5rem;
  }

  .header-content {
    flex-direction: column;
    gap: 0.5rem;
  }

  .logo {
    font-size: 1.2rem;
  }

  .hero {
    padding: 3rem 0;
  }

  .countdown-card {
    padding: 1.5rem;
  }

  .countdown-timer {
    font-size: 1.5rem;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card {
    min-height: 250px;
  }

  .timeline-item-left {
    margin-right: 0;
  }

  .timeline-item-right {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .section-header h2 {
    font-size: 1.4rem;
  }

  .countdown-timer {
    font-size: 1.2rem;
  }

  .modal-card {
    padding: 1.5rem;
  }

  .modal-actions {
    flex-direction: column;
  }
}

/* ===== PHOTO SCRAPBOOK & REVEAL ===== */
.scrapbook {
  padding: 2rem;
}

.scrapbook-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--glass);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
}

.photo:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(255, 91, 120, 0.3);
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.6s ease;
  transform: scale(1);
  filter: blur(0px);
}

/* Glass Cover Overlay */
.photo-glass-cover {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      #ff8fa3 0%,
      #ffb3c1 30%,
      #ffc2d1 50%,
      #ffb3c1 70%,
      #ff8fa3 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  border-radius: 16px;
  overflow: hidden;
}

/* Floating corner hearts */
.photo-glass-cover::before,
.photo-glass-cover::after {
  content: '❤️';
  position: absolute;
  font-size: 1.2rem;
  animation: floatHeart 3s ease-in-out infinite;
  opacity: 0.8;
}

.photo-glass-cover::before {
  top: 10px;
  right: 15px;
  animation-delay: 0s;
}

.photo-glass-cover::after {
  bottom: 15px;
  left: 10px;
  animation-delay: 1.5s;
  font-size: 1rem;
}

@keyframes floatHeart {

  0%,
  100% {
    transform: translateY(0) rotate(-10deg) scale(1);
  }

  50% {
    transform: translateY(-8px) rotate(10deg) scale(1.1);
  }
}

@keyframes glassShimmer {
  0% {
    left: -100%;
  }

  50%,
  100% {
    left: 100%;
  }
}

.photo-heart {
  font-size: 4rem;
  animation: heartBounce 1.5s ease-in-out infinite;
  filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.photo-emoji-row {
  font-size: 1.8rem;
  animation: heartPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(255, 91, 120, 0.4));
}

@keyframes heartBounce {

  0%,
  100% {
    transform: scale(1) translateY(0);
  }

  50% {
    transform: scale(1.2) translateY(-5px);
  }
}

.photo-text {
  font-size: 1.1rem;
  color: #1a1a2e;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 1px;
}

/* Breaking Animation */
.photo-glass-cover.breaking {
  animation: glassBreak 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
  pointer-events: none;
}

@keyframes glassBreak {
  0% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
    backdrop-filter: blur(8px);
  }

  20% {
    transform: scale(1.02) rotate(-1deg);
  }

  40% {
    opacity: 0.8;
    transform: scale(0.98) rotate(1deg);
  }

  60% {
    opacity: 0.5;
    backdrop-filter: blur(4px);
    transform: scale(1.05) rotate(-0.5deg);
  }

  100% {
    opacity: 0;
    transform: scale(1.3) rotate(2deg);
    backdrop-filter: blur(0px);
  }
}

/* Photo reveal animation when glass breaks */
.photo-glass-cover.breaking+img,
.photo-glass-cover.breaking~img,
.photo:has(.photo-glass-cover.breaking) img {
  animation: photoReveal 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s forwards;
}

@keyframes photoReveal {
  0% {
    transform: scale(0.95);
    filter: blur(2px) brightness(0.8);
  }

  50% {
    transform: scale(1.05);
    filter: blur(0) brightness(1.1);
  }

  100% {
    transform: scale(1);
    filter: blur(0) brightness(1);
  }
}

/* Glass shatter particles */
.photo-glass-cover.breaking::after {
  content: '✨';
  position: absolute;
  font-size: 1.5rem;
  animation: sparkleExplode 0.8s ease-out forwards;
}

@keyframes sparkleExplode {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(3) rotate(180deg);
  }
}

/* Add crack effect on hover before breaking */
.photo:not(:has(.breaking)):hover .photo-glass-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, rgba(255, 255, 255, 0.1) 50%, transparent 55%);
  animation: crackHint 0.3s ease-out;
}

@keyframes crackHint {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* Photo glow effect after reveal */
.photo:has(.photo-glass-cover.breaking) {
  animation: photoGlow 1.5s ease-out 0.5s forwards;
}

@keyframes photoGlow {
  0% {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 15px 50px rgba(255, 91, 120, 0.5), 0 0 30px rgba(255, 91, 120, 0.3);
  }

  100% {
    box-shadow: 0 10px 40px rgba(255, 91, 120, 0.2);
  }
}

/* Different animation styles for each photo */
.photo-1 .photo-glass-cover.breaking {
  animation: glassBreakLeft 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.photo-2 .photo-glass-cover.breaking {
  animation: glassBreakRight 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

.photo-3 .photo-glass-cover.breaking {
  animation: glassBreakCenter 0.8s cubic-bezier(0.36, 0.07, 0.19, 0.97) forwards;
}

@keyframes glassBreakLeft {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  30% {
    transform: translateX(-5px) rotate(-2deg);
  }

  100% {
    opacity: 0;
    transform: translateX(-100%) rotate(-15deg) scale(0.8);
  }
}

@keyframes glassBreakRight {
  0% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }

  30% {
    transform: translateX(5px) rotate(2deg);
  }

  100% {
    opacity: 0;
    transform: translateX(100%) rotate(15deg) scale(0.8);
  }
}

@keyframes glassBreakCenter {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    transform: scale(0) rotate(180deg);
  }
}

/* Responsive photo grid */
@media (max-width: 768px) {
  .scrapbook-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo {
    aspect-ratio: 1;
  }

  .photo-heart {
    font-size: 2rem;
  }

  .photo-text {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .scrapbook-grid {
    grid-template-columns: 1fr;
  }

  .photo {
    aspect-ratio: 4/5;
  }
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}