@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&display=swap');

body {
    font-family: 'Quicksand', sans-serif;
    background-color: #FDFBF7;
    overflow-x: hidden;
}

/* Antigravity floating animations */
@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatReverse {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(12px) rotate(-3deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes floatSlow {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.float { animation: float 4s ease-in-out infinite; }
.float-rev { animation: floatReverse 5s ease-in-out infinite; }
.float-slow { animation: floatSlow 6s ease-in-out infinite; }

/* Custom Scrollbar for Carousel */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Smooth transitions */
.transition-transform {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 25px -5px rgba(184, 156, 113, 0.4), 0 8px 10px -6px rgba(184, 156, 113, 0.2);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(184, 156, 113, 0.15);
}

/* Decoration layer styling */
.decor {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}
