/* Simple Floating Animations - Debug Version */

.cta-section {
    position: relative;
    min-height: 500px;
}

.cta-content {
    position: relative;
    z-index: 100;
}

.floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.cta-boat-wrapper {
    position: absolute;
    top: 20%; /* Moved higher: 50% -> 30% -> 20% */
    left: 10%;
    transform: translateY(-50%);
    width: 600px; /* 20% smaller: 750 * 0.8 */
    height: 400px; /* 20% smaller: 500 * 0.8 */
    animation: boatFloat 4s ease-in-out infinite;
}

.boat-frame {
    position: absolute;
    max-width: 100%;
    height: auto;
}

.boat__frame1 {
    width: 100%;
    z-index: 1;
    opacity: 1;
}

.boat__spinner {
    position: absolute;
    right: 15%;
    top: 90%;
    width: 18%;
    animation: spin 3s linear infinite;
    pointer-events: none;
    z-index: 2;
    opacity: 1;
}

.boat__anim1, .boat__anim2 {
    top: 107%;
    left: 35%;
    width: 15%;
    z-index: 3;
}

.boat__anim1 {
    animation: blink 1s infinite;
}

.boat__anim2 {
    animation: blink 1s infinite;
    animation-delay: 0.5s;
}

.floating-clouds {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.floating-cloud {
    position: absolute;
    opacity: 0.8;
    animation: cloudMove 60s linear infinite; /* Much slower: 10s -> 60s */
}

.cloud-1 {
    top: 20%;
    width: 400px; /* 500% bigger: 80 * 5 */
    animation-delay: 0s;
}

.cloud-2 {
    top: 60%;
    width: 300px; /* 500% bigger: 60 * 5 */
    animation-delay: -10s;
}

.cloud-3 {
    top: 80%;
    width: 350px; /* 500% bigger: 70 * 5 */
    animation-delay: -20s;
}

.floating-creatures {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.floating-creature {
    position: absolute;
    opacity: 0.8;
}

.creature-1 {
    bottom: 20%;
    left: 10%;
    width: 50px;
}

.creature-2 {
    bottom: 30%;
    right: 20%;
    width: 60px;
}

/* Hero Section Creature Animations */
.hero-floating-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-floating-decorations .floating-creatures {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-floating-decorations .floating-creature {
    position: absolute;
    opacity: 0.8;
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.3));
}

.hero-floating-decorations .creature-1 {
    bottom: 10%;
    left: 5%;
    width: 200px; /* 200-300% bigger: 80px * 2.5 */
}

.hero-floating-decorations .creature-2 {
    top: 20%;
    right: 8%;
    width: 240px; /* 200-300% bigger: 90px * 2.67 */
}

@keyframes boatFloat {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(10px) translateY(-60px); }
}

@keyframes boatFloatMobile {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(5px) translateY(-20px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes cloudMove {
    0% { transform: translateX(-200px); }
    100% { transform: translateX(calc(100vw + 200px)); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

@media (max-width: 768px) {
    /* Hide boat, creatures, and clouds on mobile */
    .cta-boat-wrapper {
        display: none !important;
    }
    
    .hero-floating-decorations .floating-creatures {
        display: none !important;
    }
    
    .floating-clouds {
        display: none !important;
    }
}

@media (max-width: 480px) {
    /* Hide boat, creatures, and clouds on small mobile */
    .cta-boat-wrapper {
        display: none !important;
    }
    
    .hero-floating-decorations .floating-creatures {
        display: none !important;
    }
    
    .floating-clouds {
        display: none !important;
    }
}
