/* Custom CSS for enhanced styling and animations */

:root {
    --yoga-yellow: #FFD700;
    --yoga-blue: #0EA5E9;
    --yoga-green: #22C55E;
    --yoga-orange: #FF6B35;
    --bright-blue: #0EA5E9;
    --bright-yellow: #FFD700;
    --bright-orange: #FF6B35;
    --bright-red: #EF4444;
}

/* Global Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    overflow-x: hidden;
}

/* Section scroll margins for better navigation */
section {
    scroll-margin-top: 100px;
}

/* Custom Button Styles */
.btn-primary {
    @apply bg-gradient-to-r from-yoga-orange to-yoga-yellow text-white font-bold py-4 px-8 rounded-full shadow-lg hover:shadow-xl transform hover:scale-105 transition-all duration-300 text-lg;
}

.btn-secondary {
    @apply bg-white text-yoga-blue border-2 border-yoga-blue font-bold py-4 px-8 rounded-full shadow-lg hover:bg-yoga-blue hover:text-white transform hover:scale-105 transition-all duration-300 text-lg;
}

/* Benefit Cards */
.benefit-card {
    @apply p-8 rounded-3xl shadow-lg hover:shadow-xl transform hover:scale-105 transition-all duration-300 text-center;
}

/* Preview Cards */
.preview-card {
    @apply bg-white rounded-2xl shadow-lg hover:shadow-xl transform hover:scale-105 transition-all duration-300 overflow-hidden;
}

/* FAQ Styles */
.faq-item {
    @apply transition-all duration-300;
}

.faq-item:hover {
    @apply shadow-xl;
}

.faq-question:hover {
    @apply text-yoga-blue;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

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

.animate-bounce-gentle {
    animation: bounce-gentle 2s ease-in-out infinite;
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.animate-shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #eff6ff 4%, #dbeafe 25%, #eff6ff 36%);
    background-size: 1000px 100%;
}

/* Hover Effects */
.hover-lift {
    @apply transition-transform duration-300 hover:transform hover:scale-105;
}

.hover-glow {
    @apply transition-all duration-300;
}

.hover-glow:hover {
    box-shadow: 0 0 20px rgba(247, 212, 63, 0.5);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--yoga-yellow), var(--yoga-blue));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--yoga-orange), var(--yoga-green));
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .benefit-card {
        @apply p-6;
    }
    
    .btn-primary,
    .btn-secondary {
        @apply py-3 px-6 text-base;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus Styles */
button:focus,
a:focus {
    @apply outline-none ring-4 ring-yoga-yellow ring-opacity-50;
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
}
