/* Shared site styles */

body {
    font-family: Arial, sans-serif;
    padding: 20px;
    background: #f3f3f3;
}

/* Navigation */
.nav {
    text-align: center;
    margin-bottom: 30px;
}
.nav a {
    text-decoration: none;
    margin: 0 15px;
    color: #007bff;
    font-weight: bold;
}
.nav a:hover {
    color: #0056b3;
}
.nav a.active {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
    padding-bottom: 2px;
}

/* Project cards */
.project-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.project-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    padding: 15px;
    width: 280px;
    text-align: center;
}
.project-card h3 {
    margin-top: 10px;
}
.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.project-meta {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

/* Wood type cards */
.wood-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.wood-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    width: 250px;
    text-align: center;
}
.wood-card img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #ddd;
    background-color: #fff;
    margin-bottom: 10px;
    transition: transform 0.2s ease;
}
.wood-card img:hover {
    transform: scale(1.5);
}

/* Site logo */
.site-logo {
    text-align: center;
    margin-bottom: 20px;
}
.site-logo img {
    max-height: 200px;
}

/* Page headings */
h1 { text-align: center; }
