/* styles.css */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('picture002.jpg'); /* Customizable background wallpaper */
    background-size: cover;
    background-attachment: fixed;
}

header {
    background: rgba(0, 77, 64, 0.8); /* Transparent background */
    color: #fff;
    padding: 1rem 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 0 1.5rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

nav ul li a:hover {
    text-decoration: underline;
    color: #b2dfdb;
}

.profile-photo {
    text-align: center;
    margin-top: 6rem; /* Ensure image is visible below the sticky header */
    margin-bottom: 2rem;
}

.profile-photo img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid #00796b;
}

section {
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9); /* Slightly transparent background */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    text-align: justify;
}

h2 {
    border-bottom: 3px solid #00796b;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: #00796b;
    font-weight: 700;
}

h3 {
    margin-top: 0;
    color: #004d40;
    margin-bottom: 2rem;
}

.resume-section {
    margin-bottom: 2rem;
}

.resume-section p {
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
    padding-left: 1.5rem;
    text-align: left;
}

ul li {
    margin-bottom: 0.5rem;
}

.resume-section ul {
    margin-bottom: 2rem;
}

a {
    color: #00796b;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    color: #004d40;
}

footer {
    background: rgba(0, 77, 64, 0.8); /* Transparent background */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    position: sticky;
    bottom: 0;
    width: 100%;
}

.download-button {
    text-align: center;
    margin: 2rem 0;
}

.download-button button {
    background-color: #00796b;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 5px;
}

.download-button button:hover {
    background-color: #004d40;
}

@media (max-width: 600px) {
    nav ul {
        text-align: center;
        padding: 0;
    }

    nav ul li {
        display: block;
        margin: 0.5rem 0;
    }
}

