/* assets/css/style.css */

/* 1. Global Reset & Settings */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 2. Custom Scrollbar (Webkit) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
    background: #0f3c6d; /* brandBlue */
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0a2a4d; 
}

/* 3. Utility: Background Pattern */
.bg-pattern-dots {
    background-image: radial-gradient(#ffffff 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.1;
}

/* 4. Utility: Technical Specs Tables */
.tech-table th {
    background-color: #f8fafc;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    padding: 12px 16px;
    text-align: left;
}

.tech-table td {
    padding: 12px 16px;
    border-bottom: 1px solid #f1f5f9;
}

.tech-table tr:hover {
    background-color: #f8fafc;
    transition: background-color 0.2s ease;
}

/* 5. Mobile Menu Animation */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}