/*
Theme Name: Idea Lab Custom
Author: Idea Lab Engineering
Description: Custom high-performance theme for 3D Printing & Engineering.
Version: 1.0
*/

/* Reset & Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a; /* Dark background */
    color: #f0f0f0;
    margin: 0;
    padding: 0;
    /* REMOVED: display: flex, justify-content, etc. */
    display: block; 
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Styling (Moved from inline) */
.site-header { 
    background: #0f0f0f; 
    padding: 20px 40px; 
    border-bottom: 2px solid #00d2ff; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-size: 24px; 
    font-weight: bold; 
    color: #fff; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.main-nav ul { 
    list-style: none; 
    margin: 0; 
    padding: 0; 
    display: flex; 
    gap: 30px; 
}

.main-nav a { 
    color: #ccc; 
    font-size: 16px; 
    transition: color 0.3s; 
}

.main-nav a:hover { 
    color: #00d2ff; 
}