* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: transparent;
  color: #8C3B00;
}

::-moz-selection {
  background: transparent;
  color: #8C3B00;
}

body {
  font-family: 'Press Start 2P', cursive;
  background: #fff0f5;
  color: #3a2c2c;
}

/* Sections */
.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 72px 20px;
  text-align: center;
}

/* Background colors */
.hero {
  background: #ffd1dc;
}

.pink {
  background: #ffb7c5;
}

.yellow {
  background: #fff2a8;
}

.lavender {
  background: #e6d9ff;
}

/* Cards */
.card {
  background: #ffffff;
  border: 5px solid #3a2c2c;
  border-radius: 26px;
  padding: 42px 28px;
  max-width: 92%;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.15);
}

/* Text */
h1 {
  font-size: 28px;
}

h2 {
  font-size: 18px;
}

p {
  font-size: 13px;
  line-height: 2;
}

/* Sunflower section */
.sunflower-section {
  gap: 28px;
}

.sunflower {
  width: 260px;
  max-width: 85%;
}

/* Button */
.sunflower-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 22px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  border: 4px solid #3a2c2c;
  border-radius: 14px;
  box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
  transition: transform 0.15s ease;
}

.sunflower-btn:active {
  transform: translateY(2px);
}


/* Footer / Garden */
.garden {
  height: 65vh;
  background-color: #e6d9ff;
  background-image: url("./garden.png");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 28px;
}

.footer-card {
  background: #ffffff;
  border: 4px solid #3a2c2c;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.15);
}

.footer-card p {
  font-size: 10px;
}

/* Fade to black overlay */
#fade-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  z-index: 9999;
}

/* Leo sitting on the card */
.leo-card {
  position: relative;
  padding-top: 70px; /* space for Leo */
}

.leo {
  position: absolute;
  top: -130px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  max-width: 45%;
  z-index: 2;
}


/* Desktop lock – mobile-only feel */
@media (min-width: 768px) {
  body {
    max-width: 430px;
    margin: 0 auto;
    border-left: 6px solid #3a2c2c;
    border-right: 6px solid #3a2c2c;
  }
}
