/* === RESET & FONTS === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 🌸 Soft pink gradient background */
  background: linear-gradient(135deg, #ffe5ec, #ffd6e0, #fff1f3);
  background-attachment: fixed;
}

/* === HOME SECTION (mobile layout) === */
.home {
  width: 100%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 25px rgba(255, 100, 150, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
}

/* === TEXT === */
.home .content h1 {
  font-size: 1.9rem;
  color: #3a3a3a;
  margin-bottom: 1.2rem;
  line-height: 1.3;
  font-weight: 600;
}

.home .content h1 span {
  color: #ff4f8b;
  font-weight: 700;
}

/* === BUTTON === */
.btn {
  display: inline-block;
  background: linear-gradient(135deg, #ff7bbd, #ff5c8d);
  color: #fff;
  padding: 0.8rem 2.2rem;
  border-radius: 35px;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(255, 92, 141, 0.35);
  transition: all 0.3s ease;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 92, 141, 0.45);
  background: linear-gradient(135deg, #ff5c8d, #ff94c2);
}

/* === IMAGE === */
.image {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.cake-img {
  width: 80%;
  max-width: 300px;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 8px rgba(255, 100, 150, 0.25));
}

/* === FLOAT ANIMATION === */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* === RESPONSIVE === */
@media (max-width: 480px) {
  body {
    background: linear-gradient(145deg, #ffe0ec, #fff0f5);
  }

  .home {
    border-radius: 0;
    box-shadow: none;
    height: 100vh;
    justify-content: center;
  }

  .home .content h1 {
    font-size: 1.6rem;
  }

  .btn {
    padding: 0.7rem 1.8rem;
  }

  .cake-img {
    width: 70%;
  }
}
