/* Color Palette 
background colour: #fae0bf - Light Peach
#3D5B59 - Dark Teal
#ACC0D3 - Light Blue
#09A1A1 - Bright Teal
#f3b973 - Soft Orange
#D396A6 - Soft Pink
#5484A4 - Medium Blue
*/

/* Styles for the About Me page */
body {
    font-family: Georgia, 'Times New Roman', Times, serif;
    background-color: #fae0bf;
}

li {
        color: #3D5B59;
}

/* Header Styles */
header {
    text-align: center; 
    background-color: #ACC0D3;
    padding: 20px;
}

header h1 {
    font-size: 50px;
    color: #09A1A1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

header nav li {
    list-style-type: none;
    display: inline-block;
    padding: 20px;
    font-size: 20px;
    text-align: center;
}

header nav li a {
    text-decoration: none;
    color: #5484A4;
}

header nav li a:hover {
    color: #09A1A1;
    text-decoration: underline;
}

#logo {
    float: left;
    height: 280px;
    position: absolute;
    top: 0;
    z-index: 4;
}

/* Footer Styles */
footer {
    text-align: center;
    width: 100%;
    position: relative;
    bottom: 0;
    clear: left;
    color:#09A1A1;
}


/* Filter Navigation Styles */

.filter_nav {
    width: 100%;
    border: 1px solid #09A1A1;
    background-color: #D396A6;
    justify-content: flex-start;
    position: sticky;
    top: 0;
    z-index: 1000;
}

#filter {
    font-size: 15px;
    font-weight: bold;
    text-align: left;
    margin: 0;
    border-radius: 0;
    border-bottom: solid thin #37b225;
}

.filter_header {
    font-size: 20px;
    text-align: center;
    margin-bottom: 20px;
    margin-top: 10px;
    font-weight: bold;
    color: #077272;
}

.filter_type {
    font-size: 20px;
    padding: 10px;
    color: #3a5d74;
}

#form_1, #form_2 {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

/* Section Styles */

section {
    position: relative;
    left:5%;
}

/* Project Card Styles */
.project_card {
    border-radius: 5px;
    padding: 15px;
    margin: 15px;
    background-color: #D396A6;
    width: 250px;
    height: 300px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    text-align: center;
    float: left;
}

.project_card h2 {
    font-size: 24px;
    color: #077272;
    height: 50px;
}

.project_card p {
    font-size: 16px;
    color: #3a5d74;
    text-align: justify;
}

.project_card img {
    width: 200px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: underline #077272;
}