/* css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth; /* Still useful for intra-page links on index.html */
}

.hero-gradient {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: scale(1.03);
}

.eink-demo {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* .logo-container {
    background-color: #2d3748;
    padding: 8px;
    border-radius: 8px;
} */

/* Keep these for index.html's main content sections if you still plan to show/hide them */
/* Or remove if About/Contact also become separate pages or are just sections on index.html */
.page-content {
    display: none;
}

.active-page {
    display: block;
}

.nav-link.active {
    /*color: #2563eb;  Tailwind: text-blue-600 */
    color: #60a5fa;
    font-weight: 600;   /* Tailwind: font-semibold */
}