<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 🌿 Header background */
header.site-header {
  background-color: #b5ca8d !important;
}

/* leaf cursor follow */
#leaf-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  background-image: url('cloudsproutyaprak.png');
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.05s linear;
}

/* ✋ Icon hover fix */
.icon-prevent-white-hover:hover {
  background-color: inherit !important;
  color: inherit !important;
  transition: none;
}

/* ☀️ BODY-LEVEL AMBIENT ORBS */
body::before {
  content: "";
  position: fixed;
  top: -20%;
  left: -20%;
  width: 140vw;
  height: 140vh;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(255, 240, 180, 0.2) 0%, transparent 70%),
    radial-gradient(circle, rgba(255, 200, 100, 0.18) 0%, transparent 70%);
  
  background-size: 180px 180px, 130px 130px; /* ⬆️ Slightly larger */
  background-repeat: no-repeat;
  background-position: 30% 40%, 70% 60%;
  filter: blur(60px);
  animation: orbBodyFloat 25s ease-in-out infinite alternate;
}

@keyframes orbBodyFloat {
  0% {
    background-position: 30% 40%, 70% 60%;
  }
  50% {
    background-position: 20% 30%, 75% 55%;
  }
  100% {
    background-position: 60% 80%, 50% 20%;
  }
}

/* 🌟 SECTION-SPECIFIC ORBS */
.glow-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.glow-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;

  background-image:
    radial-gradient(circle, rgba(255, 200, 80, 0.4) 0%, transparent 70%),
    radial-gradient(circle, rgba(255, 220, 100, 0.35) 0%, transparent 70%),
    radial-gradient(circle, rgba(255, 240, 180, 0.3) 0%, transparent 70%),
    radial-gradient(circle, rgba(255, 255, 200, 0.25) 0%, transparent 70%);

  background-size: 80px 80px, 110px 110px, 180px 180px, 260px 260px; /* ⬆️ Increased */
  background-repeat: no-repeat;
  background-position: 10% 30%, 30% 80%, 70% 20%, 80% 60%;
  filter: blur(12px);
  animation: orbSectionFloat 15s ease-in-out infinite alternate;
}

@keyframes orbSectionFloat {
  0% {
    background-position: 10% 30%, 30% 80%, 70% 20%, 80% 60%;
  }
  50% {
    background-position: 25% 40%, 60% 60%, 50% 70%, 25% 25%;
  }
  100% {
    background-position: 85% 75%, 10% 20%, 90% 10%, 40% 90%;
  }
}






/* leafs ! */
.leaf-fall {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 20px;
}

.leaf-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.leaf {
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url('cloudsproutyaprak.png'); /* replace with your image path */
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.8;
  animation: floatLeaf 4s linear forwards;
}

.leaf-text {
  opacity: 0;
  transition: opacity 1s ease-in;
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: auto;
  font-size: 1.2rem;
  color: #1e3b30;
}

.leaf-text.show {
  opacity: 1;
}

@keyframes floatLeaf {
  from {
    transform: translateX(-120px) rotate(0deg);
    opacity: 0.9;
  }
  to {
    transform: translateX(120vw) rotate(360deg);
    opacity: 0;
  }
}


/* diffuse new carosuel*/
/* 🔳 Carousel wrapper that holds all fade slides */
.fade-carousel-wrapper {
  position: relative;
  width: 100%;
  min-height: 600px; /* ✅ Adjust based on tallest slide */
  overflow: hidden;
}

/* 🧱 Base styling for each slide section */
.fade-slide {
  opacity: 1;
  visibility: visible;
  position: relative; /* Important for builder mode */
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
  z-index: auto;
  width: 100%;
  box-sizing: border-box;
}

/* 🔒 Only added after page load to trigger animation stacking */
.fade-slide.js-carousel {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
}

/* ✨ Visible &amp; active slide */
.fade-slide.js-carousel.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}


/* tree grow */

/* clouds */
/* ☁️ Floating cloud class (can apply to text or images) */
.floating-cloud {
  display: block;
  margin: 0 auto;
  animation: floatCloud 4s ease-in-out infinite;
  will-change: transform;
}

/* ✅ Only apply width limit to actual &lt;img&gt; elements */
.floating-cloud img,
img.floating-cloud {
  max-width: 100px;
}


/* ☁️ Floating up/down animation */
@keyframes floatCloud {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/*@media (max-width: 767px) {
  .floating-cloud {
    animation: none !important;
    transform: none !important;
  }
}
*/
/* Plants */
/* 🌿 Common plant image style */
.plant-frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* or a fixed width if needed */
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 0;
  pointer-events: none;
}

/* 🌱 Show only active frame */
.plant-frame.active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* 🌱 Positioning wrapper (for alignment) */
.plant-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}</pre></body></html>