body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5dc; /* Light beige */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.catalogue-header {
    font-size: 1.5em;
    font-weight: bold;
    padding: 30px 20px 20px 20px;
    margin-bottom: 50px;
}

.catalogue-header a {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}

.portfolio-list {
    padding-left: 20px;
    width: 100%;
}

.project-section {
    padding-left: 20px;
}

.project-date {
    font-size: 0.9em;
    color: #777;
}

.project-name a {
    text-decoration: none;
    color: #333;
    font-size: 1.2em;
    font-weight: bold;
    display: block;
    cursor: pointer;
}

/* Styles for photo_project.html */
.photo-project-page .catalogue-header {
    font-size: 1.5em;
    font-weight: bold;
    padding: 30px 20px 20px 20px;
    margin-bottom: 30px;
}

.photo-project-page .catalogue-header a {
    text-decoration: none;
    color: inherit;
}

.photo-project-page .project-date {
    font-size: 0.9em;
    color: #777;
    padding-left: 20px;
}

.photo-project-page .project-name {
    font-size: 1.2em;
    font-weight: bold;
    padding-left: 20px;
    margin-bottom: 20px;
}

.photo-project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    padding: 20px;
}

.photo-project-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}