/* Base Reset for Tailwind */
body {
    overflow-x: hidden;
    cursor: auto;
    font-family: "Poppins", sans-serif;
}

/* Custom Sophisticated Cursor */
@media (min-width: 992px) {
    body {
        cursor: none;
    }
    
    .cursor-main {
        width: 8px;
        height: 8px;
        background: #0052cc;
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 10000;
        transform: translate(-50%, -50%);
        transition: transform 0.1s ease-out, background 0.3s;
    }

    .cursor-outer {
        width: 35px;
        height: 35px;
        border: 1.5px solid rgba(0, 82, 204, 0.5);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.3s ease, height 0.3s ease, border 0.3s ease, background 0.3s ease;
    }

    /* Hover State */
    .cursor-hover .cursor-main {
        transform: translate(-50%, -50%) scale(0.5);
    }
    .cursor-hover .cursor-outer {
        width: 60px;
        height: 60px;
        background: rgba(0, 82, 204, 0.05);
        border-color: #0052cc;
    }
}

/* Custom Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-slide {
    transition: opacity 1.2s ease-in-out;
}

/* Scroll reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation styles */
header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

#mobileDrawer {
    transition: visibility 0.5s;
}
