/* General body styling */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333; /* Darker text for better readability */
    background-color: #f4f4f4; /* Light gray background for minimal contrast */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main app container */
.App {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%; /* Full width */
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px;
    color: #333; /* Darker text for better readability */
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

header h1 {
    margin: 0;
    font-size: 2.5em;
    font-weight: bold;
}

header nav a {
    margin: 0 15px;
    color: #ecf0f1; /* Lighter text for nav links */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s;
}

header nav a:hover {
    color: #3498db; /* Change to blue on hover */
}

/* Section styles */
section {
    padding: 40px;
    max-width: 1200px; /* Keep content centered with a max width */
    margin: 20px auto;
    background: white;
    border-radius: 8px; /* Soft rounded corners */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Subtle shadow for elevated look */
}

/* Section title */
h2 {
    border-bottom: 2px solid #3498db; /* Blue underline for section titles */
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.8em;
    color: #2c3e50; /* Dark blue-gray for text */
}

/* List styling */
.skills-list, .resume-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.skills-list li, .resume-list li {
    margin-bottom: 10px;
}

.skills-list strong {
    font-weight: bold;
    color: #3498db; /* Blue for strong text */
}

.resume-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0; /* Subtle border between items */
}

.resume-list li:last-child {
    border-bottom: none;
}

/* Resume iframe */
.resume-page iframe {
    width: 100%;
    height: 80vh;
    border: none;
    box-sizing: border-box;
    background-color: white; /* Ensure a clean background in iframe */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    section {
        padding: 20px;
    }

    header h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    header nav a {
        font-size: 1em;
    }
}