/* project-template.css */

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

/* Project detail specific styles */
.project-detail {
    background: #fff; /* Keep section background consistent */
    padding: 0; /* Container already has padding */
}

.project-detail h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #4A2B12; /* Consistent with main.css section titles */
    font-size: 2em;
}

.project-detail > img { /* Main project image */
    max-width: 600px; /* Allow image to be larger on its own page */
    width: 100%;
    height: auto;
    display: block; /* Center image */
    margin: 0 auto 1.5rem auto; /* Center and add bottom margin */
    border-radius: 8px;
    background-color: #8D5F3D;
}

.project-detail h3 {
    color: #4A2B12;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.5em;
    border-bottom: 1px solid #8D5F3D; /* Light brown accent line */
    padding-bottom: 0.25rem;
}

.project-detail p {
    margin-bottom: 1rem;
    line-height: 1.7; /* Slightly more line height for readability */
}

.project-detail ul {
    list-style: disc;
    margin-left: 2rem; /* Indent list */
    margin-bottom: 1rem;
}

.project-detail ul li {
    margin-bottom: 0.5rem;
}

.detail-image { /* For any additional smaller images */
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #ccc;
}