/* Custom Utilities & Animations */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

h1, h2, h3, h4, .brand-font {
    font-family: 'Outfit', sans-serif;
}

/* Blob Animations for Background */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1;
    animation: float 10s infinite ease-in-out;
}

.blob-1 {
    top: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: #0f172a; /* Deep Navy */
    animation-delay: 0s;
}

.blob-2 {
    top: 20%;
    right: -100px;
    width: 400px;
    height: 400px;
    background: #d97706; /* Amber/Gold */
    animation-delay: 2s;
    opacity: 0.15;
}

.blob-3 {
    bottom: 10%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: #059669; /* Emerald */
    animation-delay: 4s;
    opacity: 0.1;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Navbar Scroll Effect */
.nav-scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
