/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; }
ul { list-style: none; }

/* ── Hero Gradient ── */
.hero-gradient {
    background: linear-gradient(135deg, #3d1d3d 0%, #7B3F7B 40%, #a84fa8 70%, #d796d7 100%);
}
.hero-blob {
    background: radial-gradient(circle, rgba(245, 158, 11, 0.5), transparent 70%);
    animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-2 {
    animation-delay: -3s;
    background: radial-gradient(circle, rgba(215, 150, 215, 0.5), transparent 70%);
}
.hero-blob-3 {
    animation-delay: -5s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3), transparent 70%);
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Navbar ── */
#navbar {
    background: transparent;
}
#navbar.scrolled {
    background: rgba(61, 29, 61, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

/* ── Service Cards ── */
.service-card {
    opacity: 1;
}

/* ── Scroll Reveal ── */
.reveal {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s ease, transform 0.7s ease;
}
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
    }
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Contact Blobs ── */
.contact-blob {
    animation: blobFloat 10s ease-in-out infinite;
}

/* ── Mobile link hover ── */
.mobile-link {
    display: block;
    border-radius: 8px;
    padding-left: 8px;
}
