/* General Body Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    margin: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 0.5em 1.5em;
    display: block;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #555;
    border-radius: 5px;
}

/* Language Switcher */
.language-switcher a {
    color: white;
    text-decoration: none;
    padding: 0.5em 1em;
    display: inline-block;
    border: 1px solid white;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.language-switcher a:hover {
    background-color: #555;
}

/* Main Content Area */
main {
    padding: 2em;
    max-width: 800px;
    margin: 2em auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    border-radius: 8px;
}

/* Headings */
h1, h2, h3 {
    color: #333;
}

h1 {
    text-align: center;
    margin-bottom: 1em;
}

h2 {
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5em;
    margin-top: 1.5em;
}

/* Hero Section (index.html) */
.hero-section {
    text-align: center;
    margin-bottom: 2em;
}

.hero-section img {
    border-radius: 50%;
    max-width: 150px;
    height: auto;
    margin-bottom: 1em;
    border: 5px solid #fff;
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

/* Call-to-Action Buttons */
.cta-buttons a, .download-link {
    display: inline-block;
    background-color: #007bff;
    color: white;
    padding: 0.8em 1.5em;
    margin: 0.5em;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-buttons a:hover, .download-link:hover {
    background-color: #0056b3;
}

/* CV Container (cv.html) */
.cv-container {
    text-align: center;
}

.cv-container iframe {
    width: 100%;
    height: 800px;
    border: 1px solid #ccc;
    margin-top: 1em;
}

/* Contact Info (contact.html) */
.contact-info {
    text-align: center;
}

.contact-info p {
    margin: 0.5em 0;
}

.contact-info a {
    color: #007bff;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Lists */
ul {
    list-style-position: inside;
    padding-left: 0;
}

li {
    margin-bottom: 0.5em;
}
