:root {
    --background: 180 20% 99%;
    --foreground: 200 25% 15%;
    --card: 0 0% 100%;
    --card-foreground: 200 25% 15%;
    --popover: 0 0% 100%;
    --popover-foreground: 200 25% 15%;
    --primary: 174 62% 40%;
    --primary-foreground: 0 0% 100%;
    --secondary: 180 15% 96%;
    --secondary-foreground: 200 25% 25%;
    --muted: 180 10% 95%;
    --muted-foreground: 200 15% 45%;
    --accent: 12 76% 61%;
    --accent-foreground: 0 0% 100%;
    --destructive: 0 84% 60%;
    --destructive-foreground: 0 0% 100%;
    --border: 180 15% 90%;
    --input: 180 15% 90%;
    --ring: 174 62% 40%;
    --radius: 0.75rem;
}

body {
    background-color: hsl(var(--background));
    color: hsl(var(--foreground));
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
}

/* Custom Styles */
.text-gradient {
    background: linear-gradient(to right, hsl(var(--primary)), hsl(var(--accent)));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-card {
    background: hsla(var(--card), 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid hsla(var(--border), 0.5);
}

.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.btn-coral {
    background-color: hsl(var(--accent));
    color: hsl(var(--accent-foreground));
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-coral:hover {
    background-color: hsl(12 70% 50%);
    transform: scale(1.02);
}

.nav-link {
    color: hsl(var(--muted-foreground));
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: hsl(var(--foreground));
    background-color: hsl(var(--muted));
}

/* Simple Animation Classes */
.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}