

:root {
    --primary: #BA55D3;
    /* MediumOrchid */
    --primary-dark: #3D0D49;
    --accent: #9333ea;
    --bg-gradient: linear-gradient(135deg, #BA55D3 0%, #9333ea 100%);
    --clay-white: #ffffff;
    --clay-shadow-outer: rgba(147, 51, 234, 0.3);
    --clay-shadow-inner: rgba(186, 85, 211, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-border: rgba(255, 255, 255, 0.2);
    --surface-color: rgba(255, 255, 255, 0.1);
    --surface-border: rgba(255, 255, 255, 0.1);
    --text-main: #3D0D49;
    --text-muted: #6b21a8;
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--bg-gradient);
    min-height: 100vh;
    font-family: var(--font-main);
    color: var(--text-main);
    overflow-x: hidden;
}

/* Claymorphism Utility */
.clay-card {
    background: var(--clay-white);
    border-radius: 40px;
    box-shadow: 0 20px 60px 0 var(--clay-shadow-outer),
        inset 0px -15px 25px 5px var(--clay-shadow-inner);
    padding: 2.5rem;
    transition: transform 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-10px);
}

/* Glassmorphism Utility */
.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 900;
}

.title-outline {
    -webkit-text-stroke: 1.5px var(--text-main);
    color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.btn-cta {
    background: var(--primary);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: scale(1.05);
    background: var(--primary-dark);
}

/* Shapes Background */
.shape {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    background: var(--clay-white);
    box-shadow: inset -10px -10px 20px var(--clay-shadow-inner);
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}