/* ========================================
   CAUME Design 2 Variant 2 - Orange Theme
   Dark glassmorphism with warm orange palette
   ======================================== */

/* Glass Effects */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Gradient Text - Orange to Yellow */
.gradient-text {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gradient Border */
.gradient-border {
    position: relative;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, #f97316, #fbbf24);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

/* Hero Gradient Background - Orange Hues */
.hero-gradient {
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(249, 115, 22, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(251, 191, 36, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

/* Hero Slideshow Styles */
.hero-slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

/* Text Shadow */
.text-shadow {
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

/* Swiper Custom Pagination */
.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #f97316 !important;
    width: 24px !important;
    border-radius: 4px !important;
}

/* Smooth Scrollbar - Orange Theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #f97316;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ea580c;
}

/* Selection - Orange */
::selection {
    background: rgba(249, 115, 22, 0.3);
    color: #fff;
}

/* ========================================
   ANIMATIONS
   ======================================== */

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

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

/* Glow Animation - Orange */
@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.3);
    }
    to {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.6);
    }
}

.animate-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

/* Slide Up Animation */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.5s ease-out forwards;
}

/* Pulse Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Bounce Animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* ========================================
   ADDITIONAL UTILITIES
   ======================================== */

/* Smooth transitions for all interactive elements */
a, button {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #f97316;
    outline-offset: 2px;
}

/* Image hover effects */
.group:hover img {
    transform: scale(1.05);
}

/* Card hover glow effect */
.benefit-card-glow {
    position: relative;
}

.benefit-card-glow::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.5), rgba(251, 191, 36, 0.5));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: -1;
    filter: blur(20px);
}

.benefit-card-glow:hover::before {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-gradient {
        background: 
            radial-gradient(ellipse at 50% 30%, rgba(249, 115, 22, 0.2) 0%, transparent 60%),
            radial-gradient(ellipse at 50% 70%, rgba(251, 191, 36, 0.1) 0%, transparent 60%);
    }
}

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

