@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800&display=swap');

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    overflow-x: hidden;
}

/* Material Symbols Settings */
.material-symbols-rounded {
    font-variation-settings:
        'FILL' 1,
        'wght' 400,
        'GRAD' 0,
        'opsz' 24;
    vertical-align: middle;
}

/* Claymorphism Utilities - FLAT/MATTE Version */
.clay-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 12px 12px 24px #cbd5e1,
        -12px -12px 24px #ffffff;
    border: 1px solid #f1f5f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clay-card:hover {
    transform: translateY(-5px);
    box-shadow: 15px 15px 30px #cbd5e1,
        -15px -15px 30px #ffffff;
}

/* Solid Buttons - Primary (Cyan/Blue) */
.clay-btn-primary {
    background: #0ea5e9;
    color: white;
    border-radius: 50px;
    box-shadow: 6px 6px 12px #94a3b8,
        -6px -6px 12px #ffffff;
    transition: all 0.2s ease;
    border: none;
}

.clay-btn-primary:hover {
    background: #0284c7;
    transform: translateY(-2px);
}

.clay-btn-primary:active {
    background: #0369a1;
    box-shadow: inset 4px 4px 8px #075985,
        inset -4px -4px 8px #38bdf8;
    transform: translateY(0);
}

/* Solid Buttons - Secondary (Solid Orange) */
.clay-btn-secondary {
    background: #ea580c;
    /* Solid Vibrant Orange */
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 6px 6px 12px #cbd5e1,
        -6px -6px 12px #ffffff;
    transition: all 0.2s ease;
}

.clay-btn-secondary:hover {
    background: #c2410c;
    /* Darker Orange */
    transform: translateY(-2px);
}

.clay-btn-secondary:active {
    background: #9a3412;
    box-shadow: inset 4px 4px 8px #7c2d12,
        inset -4px -4px 8px #fdba74;
    transform: translateY(0);
}

/* Solid Accent Cards */

/* Orange/Reddish Accent */
.accent-pink {
    background: #fff7ed;
    border: 1px solid #ffedd5;
}

.accent-pink h3 {
    color: #ea580c;
}

/* Solid Orange */
.accent-pink p {
    color: #c2410c;
}

.accent-pink .material-symbols-rounded {
    color: #ea580c;
}

/* Blue became Cyan/Sky */
.accent-blue {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
}

.accent-blue h3 {
    color: #0369a1;
}

.accent-blue p {
    color: #075985;
}

.accent-blue .material-symbols-rounded {
    color: #0ea5e9;
}

/* Yellow stays Yellow/Amber */
.accent-yellow {
    background: #fefce8;
    border: 1px solid #fef9c3;
}

.accent-yellow h3 {
    color: #a16207;
}

.accent-yellow p {
    color: #854d0e;
}

.accent-yellow .material-symbols-rounded {
    color: #eab308;
}


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

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

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

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

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

/* Harder/Flat Text Shadow */
.soft-text-shadow {
    text-shadow: none;
}