/* Add to the end of style.css */
/* Decorative Illustrations */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

.deco-rabbit {
  top: -50px;
  right: -50px;
  width: 150px;
  transform: rotate(15deg);
}

.deco-mushroom {
  top: -80px;
  left: -40px;
  width: 120px;
  transform: rotate(-10deg);
}

.deco-flower {
  bottom: -60px;
  right: -60px;
  width: 140px;
  transform: rotate(-20deg);
}

/* Removed body overflow as it's handled by .site-wrapper */

/* Floating Instagram Button */
.floating-insta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

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

.insta-text {
    background-color: var(--color-white);
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 10px 15px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(92, 74, 61, 0.15);
    position: relative;
    line-height: 1.4;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insta-inline-logo {
    font-size: 1.8rem;
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Little triangle pointing down to the icon */
.insta-text::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--color-white) transparent transparent transparent;
}

.insta-icon-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(92, 74, 61, 0.2);
    border: 4px solid var(--color-white);
    overflow: hidden;
}

.insta-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .floating-insta {
        bottom: 20px;
        right: 15px;
    }
    .insta-icon-wrapper {
        width: 85px;
        height: 85px;
        border-width: 3px;
    }
    .insta-text {
        font-size: 0.8rem;
        padding: 6px 10px;
        border-radius: 12px;
        gap: 6px;
    }
    .insta-inline-logo {
        font-size: 1.5rem;
    }
}

