/* ===== Bright & Friendly Design - Inspired by kwinaika.com ===== */

/* Font Fallback (No CDN) */
body {
    font-family: 'Zen Maru Gothic', 'Hiragino Kaku Gothic ProN', 'Meiryo', 'Yu Gothic', sans-serif;
}

/* Organic Blob Shapes */
.organic-blob {
    position: absolute;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    opacity: 0.3;
    animation: morphBlob 20s ease-in-out infinite;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #F97316, #FFDAB9);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #81B29A, #89B0AE);
    bottom: 30%;
    left: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #E07A5F, #FFDAB9);
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

.blob-4 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #89B0AE, #81B29A);
    top: 40%;
    left: 20%;
    animation-delay: -15s;
}

@keyframes morphBlob {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(30px, -30px) rotate(90deg);
    }
    50% {
        border-radius: 50% 60% 30% 60% / 30% 60% 70% 40%;
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        border-radius: 60% 40% 60% 40% / 60% 30% 60% 40%;
        transform: translate(10px, -10px) rotate(270deg);
    }
}

/* Navigation Links */
.nav-link {
    position: relative;
    font-weight: 600;
    color: #8B7355;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #F97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #F97316;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-nav-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: #5F4A22;
    padding: 0.75rem 0;
    border-bottom: 2px dashed #F9731620;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #F97316;
    padding-left: 0.5rem;
}

/* CTA Button Bounce */
.cta-bounce {
    animation: gentleBounce 2s ease-in-out infinite;
}

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

/* Wave Text Animation */
.wave-text {
    display: inline-block;
    animation: wave 2s ease-in-out infinite;
}

.wave-text:nth-child(1) { animation-delay: 0s; }
.wave-text:nth-child(2) { animation-delay: 0.1s; }
.wave-text:nth-child(3) { animation-delay: 0.2s; }
.wave-text:nth-child(4) { animation-delay: 0.3s; }
.wave-text:nth-child(5) { animation-delay: 0.4s; }
.wave-text:nth-child(6) { animation-delay: 0.5s; }
.wave-text:nth-child(7) { animation-delay: 0.6s; }
.wave-text:nth-child(8) { animation-delay: 0.7s; }

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

/* Floating Animations */
.floating-badge-1 {
    animation: float1 3s ease-in-out infinite;
}

.floating-badge-2 {
    animation: float2 4s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes float2 {
    0%, 100% { transform: translateY(0) rotate(3deg); }
    50% { transform: translateY(-8px) rotate(-3deg); }
}

/* Blob Shape Animation */
.animate-blob {
    animation: blobPulse 8s ease-in-out infinite;
}

@keyframes blobPulse {
    0%, 100% { transform: scale(1.1) rotate(0deg); }
    33% { transform: scale(1.15) rotate(5deg); }
    66% { transform: scale(1.05) rotate(-5deg); }
}

/* Scroll Dot Animation */
@keyframes scroll-dot {
    0% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.5; }
    100% { transform: translateY(0); opacity: 1; }
}

.animate-scroll-dot {
    animation: scroll-dot 1.5s ease-in-out infinite;
}

/* Card Float Animation */
.card-float {
    animation: cardFloat 5s ease-in-out infinite;
}

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

/* Float Animation */
.animate-float {
    animation: floatEmoji 3s ease-in-out infinite;
}

@keyframes floatEmoji {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

/* Wiggle Animation */
.animate-wiggle {
    animation: wiggle 0.5s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* Scroll Reveal - Initial states are now set via JavaScript (script.js)
   This ensures content remains visible if JavaScript fails to load */

/* Hide Scrollbar for Facilities */
.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Selection color */
::selection {
    background: #F97316;
    color: white;
}

/* Focus styles */
a:focus-visible,
button:focus-visible {
    outline: 3px solid #F97316;
    outline-offset: 3px;
    border-radius: 8px;
}

/* Bottom Bar Animation */
.bottom-bar {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

/* Instagram Button Gradient Animation */
.instagram-btn {
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
