/* SmartHouse CSS Overrides and Theme Settings */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

body {
    background-color: #f7f9fb;
    font-family: 'Inter', sans-serif;
    color: #191c1e;
}

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

/* Glassmorphic cards */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05), 0 2px 6px -1px rgba(0, 0, 0, 0.03);
}

/* Focus effects */
.focused-ring:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

/* Custom background mesh gradient */
.bg-mesh-gradient {
    background: radial-gradient(at 0% 0%, #f7f9fb 0%, transparent 50%),
                radial-gradient(at 100% 0%, #eceef0 0%, transparent 50%),
                radial-gradient(at 100% 100%, #f2f4f6 0%, transparent 50%),
                radial-gradient(at 0% 100%, #ffffff 0%, transparent 50%);
}

/* Hide scrollbars but keep scrolling functionality */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Active navigation indicators */
.active-nav-glow {
    box-shadow: 0 0 15px rgba(21, 27, 46, 0.1);
}

/* Animation utilities */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.3s ease-out forwards;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}
