:root {
    --primary-color: #1a2533; /* Dark Navy */
    --accent-color: #c43e3e; /* Baseball Red */
    --wood-color: #e3dcd2; /* Maple Wood */
    --text-dark: #333;
    --text-light: #f4f4f4;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.navbar { display: flex; justify-content: space-between; align-items: center; }

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
    text-decoration: none;
}
.logo span { color: var(--wood-color); }

.nav-links { list-style: none; display: flex; }
.nav-links li { margin-left: 20px; }
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--wood-color);
    border-bottom: 2px solid var(--accent-color);
}

.hero {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 40px;
}
.hero h1 { font-size: 3rem; margin-bottom: 20px; }

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
    font-weight: bold;
    border: none;
    cursor: pointer;
}
.btn:hover { background-color: #a02e2e; }

.main-content { flex: 1; padding-bottom: 40px; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 40px;
    color: var(--primary-color);
    font-size: 2rem;
    text-transform: uppercase;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

/* Gray placeholder box for missing images */
.card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #eee; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    color: #666;
}

.card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.card-title { font-size: 1.25rem; margin-bottom: 10px; color: var(--primary-color); }
.price { font-size: 1.2rem; font-weight: bold; color: var(--accent-color); margin-bottom: 15px; }

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: bold; }
.form-control { width: 100%; padding: 10px; border: 1px solid #ddd; border-radius: 4px; }
textarea.form-control { height: 150px; resize: vertical; }

footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}
footer a { color: var(--wood-color); text-decoration: none; }

@media (max-width: 768px) {
    .nav-links { flex-direction: column; width: 100%; text-align: center; margin-top: 10px; }
    .nav-links li { margin: 10px 0; }
    .navbar { flex-direction: column; }
}