/* assets/css/style.css */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: #fcfcfc;
}

/* Custom UI transitions */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.fade-up.show {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Image Gradient Overlay */
.hero-bg {
    background-image: linear-gradient(to right, rgba(215, 38, 72, 0.85), rgba(45, 45, 45, 0.6)), url('https://images.unsplash.com/photo-1549416878-b9ca95e4e7ee?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
}

/* Form Customizations */
.search-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.brand-text {
    letter-spacing: -0.5px;
}

/* Carousel Animation */
.animate-scroll {
    display: flex;
    width: max-content;
    animation: scroll 40s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 1rem));
    }
}

/* Hide Scrollbar */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* Launching Soon Modal Styles & Animations */
.modal-backdrop {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    transform: scale(0.9) translateY(20px);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.modal-backdrop.active .modal-card {
    transform: scale(1) translateY(0);
    opacity: 1;
}

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

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.25);
        opacity: 0.25;
    }
}

@keyframes shimmerProgress {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.animate-float-slow {
    animation: floatSlow 3.5s ease-in-out infinite;
}

.animate-pulse-glow {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.animate-shimmer {
    background: linear-gradient(90deg, #d72648 0%, #ff6b8b 50%, #d72648 100%);
    background-size: 200% 100%;
    animation: shimmerProgress 2.5s linear infinite;
}

/* Glassmorphism & UI Enhancements */
.glass-header {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.glass-dark-card {
    background: rgba(26, 26, 36, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gradient-text-primary {
    background: linear-gradient(135deg, #d72648 0%, #ff5273 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-border-gold {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.gradient-border-gold::after {
    content: '';
    position: absolute;
    top: -2px; bottom: -2px; left: -2px; right: -2px;
    background: linear-gradient(135deg, #f59e0b, #d72648, #ff6b8b);
    border-radius: inherit;
    z-index: -1;
}

.glow-primary {
    box-shadow: 0 10px 30px -5px rgba(215, 38, 72, 0.3);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -10px rgba(215, 38, 72, 0.15);
}

.modern-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d72648'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2.5' d='M19 9l-7 7-7-7'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
}


