/* Base Typography & Fonts */
:root {
    --bg-primary: #ffffff;
    --text-primary: #4b5563;
    --text-heading: #111827;
    --bg-card: #ffffff;
    --border-color: #f3f4f6;
    --nav-bg: rgba(255, 255, 255, 0.8);
}


body {
    font-family: 'Geist', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-heading);
    transition: color 0.4s ease;
}

/* Gradients */
.text-gradient-soft {
    background: linear-gradient(to bottom right, #111827, #374151, #4b5563);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Apple-like Reveal Animations */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

/* Form Elements */
.option-card:checked+div {
    border-color: #EB5D3D;
    border-width: 2px;
    background-color: #FFF5F2;
    /* Very light orange tint */
    box-shadow: 0 4px 6px -1px rgba(235, 93, 61, 0.1), 0 2px 4px -1px rgba(235, 93, 61, 0.06);
}

.option-card+div {
    border-color: #e5e7eb;
    /* Gray-200 default */
    border-width: 1px;
}

.option-card:hover+div {
    border-color: #9ca3af;
    /* Gray-400 hover */
}

.option-card:checked+div .check-icon {
    opacity: 1;
    transform: scale(1);
}

/* Skeuomorphic Button Style */
.btn-skeuo {
    background-color: #EB5D3D;
    color: white;
    border: 1px solid #D14526;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 2px 4px rgba(235, 93, 61, 0.2),
        0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-skeuo:hover {
    background-color: #F06E50;
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        0 6px 12px rgba(235, 93, 61, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-skeuo:active {
    transform: translateY(0px);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Utilities */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Keyframes */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    animation: scroll 40s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

@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;
}

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

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

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

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

.animate-float-delayed {
    animation: float 6s ease-in-out 3s infinite;
}

@keyframes progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.animate-progress {
    animation: progress 5s linear infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group:hover .group-hover\:block {
    display: block;
    animation: fadeIn 0.2s ease-out;
}