/* ─────────────────────────────────────────────────────────────
   HealthComp.ie – Custom Styles
   Design: "High-Trust Fintech" × "Approachable Insurtech"
   ───────────────────────────────────────────────────────────── */

/* ── Glassmorphism Card ───────────────────────────────────── */
.glass-card {
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(20px) saturate(1.6);
    -webkit-backdrop-filter: blur(20px) saturate(1.6);
}

/* ── Google Button Hover ──────────────────────────────────── */
.google-btn {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.google-btn:hover {
    transform: translateY(-1px);
}

/* ── Bento Card Hover ─────────────────────────────────────── */
.bento-card {
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.bento-card:hover {
    transform: translateY(-2px);
}

/* ── Smooth page transitions ──────────────────────────────── */
body {
    transition: opacity 0.3s ease;
}

/* ── Illustration float animation ─────────────────────────── */
.illustration-container {
    animation: gentle-float 6s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-10px); }
}

/* ── Focus ring override ──────────────────────────────────── */
input:focus {
    box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.12);
}

/* ── Scrollbar (webkit) ───────────────────────────────────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
