@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
}
.content-image {
  border-radius: 8px;
  object-fit: cover;
}
@media all and (min-width: 768px) {
  .content-image {
    width: 500px;
    height: 500px;
    margin-right: 2rem !important;
    float: left;
  }
}
@media all and (max-width: 768px) {
  .content-image {
    height: 350px;
    margin-bottom: 1rem !important;
  }
}
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

.content h1 {
  font-size: 2rem !important;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.25rem !important;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
  font-size: 1.5rem !important;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1rem !important;
}

.content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.25rem !important;
}

.content ul,
.content ol {
  margin-bottom: 1.25rem !important;
  margin-left: 2rem;
}

.content ul {
  list-style-type: disc;
}

.content ol {
  list-style-type: decimal;
}

.content li {
  margin-bottom: 0.5rem;
}

.content a {
  color: #007bff;
  text-decoration: underline;
  font-weight: 500;
}

.content blockquote {
  font-size: 1.25rem;
  font-style: italic;
  border-left: 4px solid #007bff;
  padding-left: 1rem;
  margin-bottom: 1.5rem !important;
  color: #555;
}

.content strong {
  font-weight: 600;
}

.content em {
  font-style: italic;
}

.content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 8px;
}

.content hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2rem 0;
}

.iti {
  width: 100%;
}

.gradient-bg {
  background: linear-gradient(135deg, #fef5f3 0%, #fed7c8 50%, #fdba9a 100%);
}

.floating {
  animation: float 3s ease-in-out infinite;
}

.floating-delayed {
  animation: float 3s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up-delayed {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up-more-delayed {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

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

.hover-lift {
  transition: all 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
}

.sparkle {
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Animated Background Elements */
.bg-element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.bg-element:nth-child(1) {
  width: 200px;
  height: 200px;
  background: #fb923b;
  top: 10%;
  left: -5%;
  animation-delay: 0s;
}

.bg-element:nth-child(2) {
  width: 150px;
  height: 150px;
  background: #f97316;
  top: 60%;
  right: -3%;
  animation-delay: 2s;
}

.bg-element:nth-child(3) {
  width: 100px;
  height: 100px;
  background: #ea580c;
  top: 30%;
  right: 20%;
  animation-delay: 4s;
}

.bg-element:nth-child(4) {
  width: 80px;
  height: 80px;
  background: #fed7c8;
  top: 70%;
  left: 15%;
  animation-delay: 1s;
}

/* Floating Paw Prints */
.paw-print {
  position: absolute;
  font-size: 24px;
  opacity: 0.15;
  animation: float 8s ease-in-out infinite;
}

.paw-1 {
  top: 15%;
  left: 80%;
  animation-delay: 0s;
}

.paw-2 {
  top: 45%;
  left: 85%;
  animation-delay: 3s;
}

.paw-3 {
  top: 75%;
  left: 75%;
  animation-delay: 6s;
}

.paw-4 {
  top: 25%;
  left: 10%;
  animation-delay: 2s;
}

.paw-5 {
  top: 65%;
  left: 5%;
  animation-delay: 4s;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  25% {
    transform: translateY(-20px) rotate(5deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }

  75% {
    transform: translateY(-15px) rotate(2deg);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up-delayed {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-up-more-delayed {
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
  transform: translateY(30px);
}

.fade-in-right {
  animation: fadeInRight 1s ease-out forwards;
  animation-delay: 0.8s;
  opacity: 0;
  transform: translateX(50px);
}

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

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

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Glassmorphism Effect */
.glass {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Button Glow Effect */
.glow-button {
  position: relative;
  overflow: hidden;
}

.glow-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.glow-button:hover::before {
  left: 100%;
}

/* Heart Animation */
.heart {
  animation: heartbeat 2s ease-in-out infinite;
}

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

  25% {
    transform: scale(1.1);
  }

  50% {
    transform: scale(1.05);
  }

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

/* Sparkle Effect */
.sparkle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #fbbf24;
  border-radius: 50%;
  animation: sparkle 3s ease-in-out infinite;
}

.sparkle:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
}

.sparkle:nth-child(2) {
  top: 40%;
  left: 70%;
  animation-delay: 1s;
}

.sparkle:nth-child(3) {
  top: 70%;
  left: 20%;
  animation-delay: 2s;
}

.sparkle:nth-child(4) {
  top: 80%;
  left: 60%;
  animation-delay: 1.5s;
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}
