html {
    scroll-behavior: smooth;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #f4f4f9; /* Light gray background for good readability */
    color: #333; /* Dark text for contrast */
}

/* Header & Navigation */
header {
    background: #4a148c; /* Deep purple for strong contrast */
    color: #fff;
    padding: 15px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
nav ul li {
    display: inline;
    margin: 0 20px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
nav ul li a:hover {
    color: #ffd700; /* Golden hover effect */
}

/* Sections */
.section {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
    margin: 20px auto;
    max-width: 900px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.section h2 {
    color: #4a148c; /* Matches header for theme consistency */
    margin-bottom: 15px;
}
.section a {
    color: #4a148c;
    text-decoration: none;
    font-weight: bold;
}
.section a:hover {
    color: #6a1b9a; /* Slightly lighter purple on hover */
}

/* Projects List */
#projects ul {
    padding-left: 0;
    list-style: none;
}
#projects li {
    background: #f0e6f6; /* Soft lavender for subtle color contrast */
    margin: 10px auto;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
}

/* Footer */
footer {
    background: #4a148c;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}
