/* Grainy Noise Overlay - Stronger Textural Feel */
.bg-noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Floating Background Blob Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

.animate-blob {
    animation: blob 10s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* New Black Satin Button Style */
.btn-black-satin {
    background: linear-gradient(180deg, #2a2a2a 0%, #000000 100%);
    box-shadow:
        0px 2px 4px rgba(0, 0, 0, 0.4),
        0px 10px 20px rgba(0, 0, 0, 0.2),
        inset 0px 1px 0px rgba(255, 255, 255, 0.15);
    /* Subtle top highlight */
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    /* Ensure text color is white by default for these buttons */
    color: white;
}

.btn-black-satin:hover {
    background: linear-gradient(180deg, #3a3a3a 0%, #0a0a0a 100%);
    transform: translateY(-1px);
    box-shadow:
        0px 4px 12px rgba(0, 0, 0, 0.5),
        0px 15px 30px rgba(0, 0, 0, 0.3),
        inset 0px 1px 0px rgba(255, 255, 255, 0.2);
}

.btn-black-satin:active {
    transform: translateY(1px);
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

.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.5);
}

/* Utility for Lucide Icons alignment */
.lucide {
    vertical-align: middle;
}

/* Base Body Styles Reset */
body {
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #475569;
    /* slate-600 */
    background-color: #f8fafc;
    /* slate-50 */
    overflow-x: hidden;
    position: relative;
    margin: 0;
}

/* Font Families */
.font-serif {
    font-family: 'Outfit', sans-serif;
}

.font-sans {
    font-family: 'Plus Jakarta Sans', sans-serif;
}