@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --primary: #0f172a;
    --teal: #0d9488;
    --teal-light: #f0fdfa;
    --sky-soft: #f0f7fc;
    --slate-soft: #f8fafc;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
}

h1, h2, h3, h4, h5, h6 {
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

.glass-nav {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.card-minimal {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.85);
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.04);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-minimal:hover {
    border-color: rgba(13, 148, 136, 0.4);
    box-shadow: 0 12px 30px -4px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.img-frame {
    background: #f8fafc;
    border-radius: 1.25rem;
    border: 1px solid rgba(241, 245, 249, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.card-minimal:hover .img-frame {
    background: #ffffff;
}

.section-tint-blue {
    background: linear-gradient(180deg, #f0f7fc 0%, #f8fafc 100%);
}

.section-tint-gray {
    background: #f8fafc;
}

.section-tint-white {
    background: #ffffff;
}