/* style.css */

:root {
    --primary-blue: #1a3a5f;
    --accent-blue: #3498db;
    --text-dark: #2d3436;
    --bg-light: #f8fbfe;
    --header-dark: #0a192f; 
    --header-navy: #112240;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}

/* --- HIGH-CONTRAST HEADER --- */
.hero-section {
    background: linear-gradient(135deg, var(--header-dark) 0%, var(--header-navy) 100%);
    padding: 120px 0; /* Slightly more padding for the logo-less header */
    border-bottom: 5px solid var(--accent-blue);
}

.hero-section h1 {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: 1px;
    color: #ffffff !important;
}

.hero-section p {
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    color: #e6f1ff !important; 
    font-weight: 400;
}

.hero-section .btn-light {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    border: none;
}

.hero-section .btn-outline-light {
    border-width: 2px;
    font-weight: 600;
}

/* Section Styling */
.section-title {
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
}

.section-title::after {
    content: "";
    flex: 1;
    height: 2px;
    background: #e0e0e0;
    margin-left: 15px;
}

/* Job Cards */
.job-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-blue);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.custom-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

/* Sidebar & Skills */
.skill-tag {
    display: inline-block;
    background: #e9ecef;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0 4px 8px 0;
    color: var(--primary-blue);
}

.tech-tag {
    background-color: #e3f2fd !important;
    border: 1px solid var(--accent-blue);
}

.text-accent {
    color: var(--accent-blue);
}

.bg-primary-soft { background: #e3f2fd; color: #0d47a1; }
.bg-secondary-soft { background: #f5f5f5; color: #616161; }

.ref-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    border: 1px solid #eee;
    height: 100%;
}

.sidebar-card {
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-5px);
}

.x-small {
    font-size: 0.75rem;
    line-height: 1.2;
}

footer {
    border-top: 1px solid #333;
}

