/* ===== MAIN LAYOUT ===== */
main {
    display: flex;
}

/* ===== LINKS ===== */
a{
    text-decoration: none;
    color: inherit; /* Erft kleur van parent element */
}

/* ===== CONTENT AREA ===== */
.content {
    flex: 1; /* Neemt alle beschikbare ruimte in */
    padding: 2rem;
}

/* ===== PAGE HEADER ===== */
.page-header {
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between; /* Verdeelt items met ruimte ertussen */
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap; /* Items wrappen naar volgende regel op kleine schermen */
}

/* Header Titles */
.header-text-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.header-text-content p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* Add Project Button */
.add-project-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #9B6A6c;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    white-space: nowrap; /* Voorkomt line-break in button tekst */
}

.add-project-btn:hover {
    background-color: #8a5d5f;
    transform: translateY(-1px); /* Zweef-effect */
}

.add-project-btn:active {
    transform: translateY(0);
}

/* ===== PROJECT TILES ===== */
/* Individual Project Cards */
.project-tile{
    border: rgb(229, 231, 235) 1px solid;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.2s;
    padding: 30px;
}

/* Project Title */
h2{
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

/* Status Badges */
.status {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px; /* Pill-vorm */
    background-color: #f3f4f6;
    margin-left: 0.7rem;
}

.status2 {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    background-color: #9B6A6c;
    color: white;
    margin-left: 0.7rem;
}

/* Small Text Elements */
small{
    color: #6b7280;
    font-size: 0.85rem;
    padding-top: 8px;
    margin-right: 20px;
}

/* Project Information Row */
.project-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    line-height: 1rem;
}

.project-info svg {
    width: 10px;
    height: 10px;
    color: #9B6A6c;
    margin-top: 8px; /* Uitlijning met tekst */
}

/* Section Headers */
h3{
    font-size: 1.2rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
    margin-top: 1.5rem;
}

/* ===== PROGRESS BAR ===== */
.progress-text {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.progress-bar {
    background-color: #e5e7eb;
    border-radius: 8px;
    overflow: hidden; /* Zorgt voor afgeronde hoeken bij .progress */
    height: 12px;
    margin-bottom: 1rem;
}

.progress {
    background-color: #9B6A6c;
    height: 100%;
    transition: width 0.2s; /* Animatie bij voortgang update */
}

/* ===== TECHNOLOGIES ===== */
.technologies {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap; /* Wrappen naar volgende regel */
}

.tech-badge {
    background-color: #f3f4f6;
    color: #374151;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Perfecte pill vorm */
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== CLOUD FILES ===== */
.cloud-files {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cloud-files div{
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ede7e3;
    padding: 14px;
    border-radius: 12px;
}

.cloud-files div:hover {
    background-color: #d4c2bf;
}

.cloud-files svg {
    width: 20px;
    height: 20px;
    color: #9B6A6c;
}

/* ===== PROJECT STATS ===== */
.project-stats {
    display: flex;
    align-items: center;
    margin-top: 10px;
    border-top: #6b7280 2px solid;
    padding-top: 20px;
    margin-top: 20px;
}

.project-stats svg {
    width: 20px;
    height: 20px;
    color: #9B6A6c;
    margin-right: 4px;
}