/* Custom styles mapping from stitch design */

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

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

.bg-gradient-primary {
    background: linear-gradient(135deg, #ff87ba 0%, #34b5fa 100%);
}

.hero-mask {
    mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

/* Base styles and missing animations */
html {
    scroll-behavior: smooth;
    background-color: #0e0e0e;
    cursor: none !important;
}

* {
    cursor: none !important;
}

.navbar-anim {
    transition: background-color 0.3s, box-shadow 0.3s;
}

/* Optimized Elegant Reveal Animation */
.reveal-anim {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-anim.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* VR Glass Card Hover Physics */
.vr-card-hover {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    will-change: transform;
}

.vr-card-hover:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(255, 135, 186, 0.2) !important;
    border-color: rgba(52, 181, 250, 0.4) !important;
    z-index: 20;
}

/* Hide Google Translate Default UI Elements */
body { top: 0 !important; }
.skiptranslate { display: none !important; }
#goog-gt-tt { display: none !important; }
.goog-te-banner-frame { display: none !important; }
.goog-te-menu-value { display: none !important; }
font[style*="background-color: transparent;"],
font[style*="background-color: transparent"] {
    background-color: transparent !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important;
}

/* Global Preloader */
#global-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background-color: #0e0e0e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

#global-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 60px;
    height: auto;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.5; filter: drop-shadow(0 0 0px rgba(255, 135, 186, 0)); }
    50% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 20px rgba(255, 135, 186, 0.6)); }
    100% { transform: scale(0.9); opacity: 0.5; filter: drop-shadow(0 0 0px rgba(255, 135, 186, 0)); }
}
