/* Base Styles */
html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size for rem units */
}

body {
    font-family: 'Nunito', 'Inter', 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background: #000d13;
    color: #EAEAEA; /* Slightly softer text color */
    line-height: 1.5; /* Adjusted line height */
}

.container { /* Consolidating the two .container definitions */
    width: 90%; /* Preferring the more common 90% width */
    max-width: 1400px;
    margin: auto;
    overflow: hidden;
    padding: 15px 0; /* Slightly reduced padding */
}

h1, h2 {
    font-family: 'Orbitron', sans-serif;
    color: #1e7cff; /* Updated title color */
}

h1 {
    font-size: 3rem; /* Adjusted size */
    margin-bottom: 0.2em;
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Reduced letter spacing */
    text-shadow: 0 0 10px rgba(30, 124, 255, 0.35); /* Adjusted shadow for new color */
}

h2 { /* General h2 for section titles */
    font-size: 2rem; /* Adjusted size */
    text-align: center;
    margin-bottom: 30px; /* Reduced margin */
    text-transform: uppercase;
    letter-spacing: 1px; /* Reduced letter spacing */
    text-shadow: 0 0 8px rgba(30, 124, 255, 0.3); /* Adjusted shadow for new color */
}

p {
    font-size: 1.08rem;
    margin-bottom: 13px;
    line-height: 1.75;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

a {
    color: #38b6ff; /* Softer blue */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition for hover */
}

a:hover {
    color: #55c5ff; /* Lighter, sweeter hover */
}

/* Base styles for project sections - more specific styling in pages.css or components.css */
.project-section p,
.project-section ul li,
.project-section ol li {
    line-height: 1.6; /* Adjusted line height */
    font-size: 1rem; /* Adjusted font size */
    text-align: left;
}

.project-section ul,
.project-section ol {
    margin-left: 20px; /* Slightly reduced indent */
    padding-left: 15px;
    margin-bottom: 20px; /* Reduced margin */
}

.project-section ul li,
.project-section ol li {
    margin-bottom: 10px; /* Reduced margin */
}

.project-section ul li::marker {
    color: #38b6ff; /* Softer blue */
    font-size: 1.1em; /* Slightly smaller marker */
}

.project-section ol {
    list-style-type: decimal;
}

.project-section ol li::marker {
    color: #EAEAEA; /* Match body text */
}

.project-section code {
    background-color: #252528; /* Slightly updated code background */
    padding: 2px 6px; /* Adjusted padding */
    border-radius: 4px; /* Slightly smaller radius */
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    color: #d8d8d8; /* Lighter code text */
    font-size: 0.95rem; /* Adjusted size */
    border: 1px solid #3a3a3a; /* Softer border */
    text-shadow: 0 0 8px rgba(56, 182, 255, 0.25); /* Softer shadow, matches new blue */
} 