/* projects.css */

/* Inherit styles from main.css */
@import url("main.css");

/* Styles for the project list */
.container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #4A2B12; /* Consistent with main.css section titles */
}

.project-list {
    list-style: none;
    padding: 0;
}

.project-list-item {
    background: #8D5F3D; /* Light brown background, like project cards on index */
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px; /* Consistent radius */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    width: 54rem;
}

.project-list-item img {
    width: 150px; /* Slightly larger thumbnail size for this page */
    height: auto;
    border: 2px solid #4A2B12;
    border-radius: 4px;
    flex-shrink: 0;
}

.project-list-item div {
    flex: 1;
}

.project-list-item h3 {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.5em;
}

.project-list-item h3 a {
    text-decoration: none;
    color: inherit;
}

.project-list-item h3 a:hover {
    text-decoration: underline;
    color: #8D5F3D; /* Lighter brown on hover */
}

.project-list-item p {
    color: black;
    font-size: 1em; /* Standard text size */
    line-height: 1.5;
}

/* Adjust header nav if needed for current page indication */
header nav ul li:nth-child(2) { /* Style the 'Projects' item if it's the second link */
    /* Example: color: #A0522D; or add a class for 'active' */
    font-weight: bold; /* Or some other indication */

/* projects.css */

/* Inherit styles from main.css */
@import url("main.css");

/* Styles for the project list */
.container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: black; /* Consistent with main.css section titles */
}

.project-list {
    list-style: none;
    padding: 0;
}

.project-list-item {
    background: #8D5F3D; /* Light brown background, like project cards on index */
    margin-bottom: 2rem;
    padding: 1.5rem;
    border-radius: 8px; /* Consistent radius */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.project-list-item img {
    width: 150px; /* Slightly larger thumbnail size for this page */
    height: auto;
    border: 2px solid #4A2B12;
    border-radius: 4px;
    flex-shrink: 0;
}

.project-list-item div {
    flex: 1;
}

.project-list-item h3 {
    color: black;
    margin-bottom: 0.5rem;
    font-size: 1.5em;
}

.project-list-item h3 a {
    text-decoration: none;
    color: inherit;
}

.project-list-item h3 a:hover {
    text-decoration: underline;
    color: #8D5F3D; /* Lighter brown on hover */
}

.project-list-item p {
    color: black;
    font-size: 1em; /* Standard text size */
    line-height: 1.5;
}

/* Adjust header nav if needed for current page indication */
header nav ul li:nth-child(2) { /* Style the 'Projects' item if it's the second link */
    /* Example: color: #A0522D; or add a class for 'active' */
    font-weight: bold; /* Or some other indication */
}
}