/* style.css */
body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

/* Navigation Bar */
nav {
    background-color: #2c3e50;
    text-align: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-family: 'Arial', sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    padding: 5px 10px;
}

nav a:hover {
    background-color: #34495e;
    border-radius: 4px;
}

/* Main Content Container */
.container {
    max-width: 900px;
    margin: 40px auto;
    background-color: white;
    padding: 40px 50px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border-top: 4px solid #2980b9;
}

/* Headers */
h1 {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 5px;
}

h2 {
    font-family: 'Arial', sans-serif;
    color: #2c3e50;
    border-bottom: 2px solid #bdc3c7;
    padding-bottom: 5px;
    margin-top: 30px;
}

h3 {
    font-family: 'Arial', sans-serif;
    color: #34495e;
    margin-bottom: 5px;
}

/* Text elements */
.contact-info {
    text-align: center;
    font-size: 0.95em;
    color: #555;
    margin-bottom: 30px;
}

.contact-info a {
    color: #2980b9;
    text-decoration: none;
}

.date-location {
    font-style: italic;
    font-size: 0.9em;
    color: #7f8c8d;
    margin-bottom: 15px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 10px;
}

/* Tables for Skills */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 0.95em;
}

th {
    background-color: #f2f2f2;
    color: #2c3e50;
    font-family: 'Arial', sans-serif;
    width: 35%;
}
