/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0fdfa;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #5CC8C8;
    color: #fff;
    text-align: center;
    padding: 3rem 1rem;
}

header h1 {
    margin: 0;
    font-size: 2.5rem;
}

header p {
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* Sections */
section {
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1rem;
}

/* Section Headings */
section h2 {
    font-size: 1.8rem;
    color: #005f5f;
    margin-bottom: 1rem;
}

/* About Me */
#about p {
    font-size: 1rem;
}

/* Project Cards */
.project-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.project-card h3 {
    margin-top: 0;
    color: #005f5f;
}

.project-card a {
    color: #5CC8C8;
    text-decoration: none;
    font-weight: bold;
}

.project-card a:hover {
    text-decoration: underline;
}

.project-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

/* Contact */
#contact p, #contact a {
    text-align: center;
    font-size: 1rem;
}

#contact a {
    color: #005f5f;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}
/* Navigation Bar */
#navbar {
    background-color: #009a9a; /* darker teal, complements light teal theme */
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* subtle shadow */
}

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

#navbar li {
    margin: 0 1rem;
}

#navbar a {
    color: #fff; /* white text for contrast */
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: color 0.2s;
}

#navbar a:hover {
    color: #f4f898; /* your soft yellow highlight */
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Footer */
footer {
    background-color: #009a9a; /* same as navbar for consistency */
    color: #fff;
    text-align: center;
    padding: 1rem 0;
    margin-top: 2rem;
    font-size: 0.9rem;
}

footer p {
    margin: 0;
}

