/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0b1f3a; /* Dark blue sides from original design */
    color: #333;
    display: flex;
    justify-content: center;
    line-height: 1.6;
}

.page-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.content {
    background-color: #f5f5dc; /* Original Cream Color */
    max-width: 1200px; /* Expanded by 20% from 1000px to 1200px */
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Navbar */
nav {
    margin-bottom: 30px;
    border-bottom: 2px solid #0b1f3a;
    padding-bottom: 10px;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: #0b1f3a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Layout Container */
.resume-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Main Content */
.resume-header {
    margin-bottom: 30px;
    text-align: left;
}

.resume-header h1 {
    font-size: 2.5rem;
    color: #0b1f3a;
    margin-bottom: 5px;
}

.contact-info, .social-links a {
    color: #555;
    font-size: 0.95rem;
}

h2 {
    border-bottom: 2px solid #0b1f3a;
    color: #0b1f3a;
    margin: 25px 0 15px 0;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 1.2rem;
}

.job {
    margin-bottom: 20px;
}

.job h3 {
    font-size: 1.1rem;
    color: #0b1f3a;
}

.job-meta {
    font-style: italic;
    color: #666;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

/* Sidebar - Darker shade of Cream */
.resume-sidebar {
    background-color: #e5e5c8; /* Complementary darker Tan/Cream */
    padding: 25px;
    border-radius: 8px;
    height: fit-content;
    border: 1px solid #d1d1b0;
}

.profile-img-container {
    margin-bottom: 25px;
    text-align: center;
}

.profile-img {
    width: 100%;
    max-width: 200px;
    border-radius: 50%;
    border: 4px solid #0b1f3a;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.skills-box h3 {
    color: #0b1f3a;
    margin-bottom: 15px;
    text-align: center;
    border-bottom: 1px solid #d1d1b0;
    padding-bottom: 5px;
}

.skills-box ul {
    list-style: none;
    margin: 0;
}

.skills-box li {
    background: #0b1f3a; /* Dark blue from your theme */
    color: #f5f5dc; /* Cream text for the skill tags */
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .resume-container {
        grid-template-columns: 1fr;
    }
    
    .resume-sidebar {
        order: -1;
    }
}

/* Project Specific Styling */
.project-section {
    margin-bottom: 40px;
}

.project-item {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #d1d1b0;
}

.project-item h3 {
    color: #0b1f3a;
    margin-bottom: 8px;
    font-size: 1.15rem;
}

.tagline {
    font-style: italic;
    color: #555;
    font-size: 1rem;
}