.elementor-8 .elementor-element.elementor-element-3d0c406{--display:flex;}/* Start custom CSS for html, class: .elementor-element-7949383 */@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fff8f4;
  color: #453932;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.8;
  padding: 40px 20px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

h1 {
  font-size: 2.4rem;
  color: #ff7b94;
  margin-bottom: 20px;
  text-align: center;
  animation: fadeIn 2s ease-in-out;
}

.intro {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #6d5d4c;
}

.chapter {
  margin-bottom: 40px;
}

.chapter h2 {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: #a25559;
}

footer {
  text-align: center;
  font-size: 1.1rem;
  margin-top: 50px;
}

.sign {
  font-size: 1.4rem;
  color: #f1908c;
  margin-top: 10px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.kiss-section {
  text-align: center;
  margin-top: 50px;
}

#kissBtn {
  background-color: #ff99aa;
  border: none;
  padding: 12px 24px;
  font-size: 1.1rem;
  border-radius: 30px;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease;
}

#kissBtn:hover {
  background-color: #ff7b94;
}

#heartsContainer {
  position: relative;
  height: 100px;
  overflow: visible;
}

.heart {
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  transform: rotate(45deg);
  animation: floatUp 2s ease-out forwards;
}

.heart::before,
.heart::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: red;
  border-radius: 50%;
}

.heart::before {
  top: -10px;
  left: 0;
}

.heart::after {
  left: -10px;
  top: 0;
}

@keyframes floatUp {
  0% {
    opacity: 1;
    transform: translateY(0) rotate(45deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) rotate(45deg);
  }
}/* End custom CSS */