/* --- NAVIGATION --- */
nav {
    background: rgb(248, 243, 226);
    padding: 20px 5%;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(156, 175, 136, 0.1);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--sage);
    text-decoration: none;
    letter-spacing: 2px;
    font-style: italic;
}

.back-link {
    text-decoration: none;
    color: var(--taupe);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Base Styles */
.checklist-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

.checklist-header {
    text-align: center;
    margin-bottom: 40px;
}

.checklist-header h1 {
    color: #5d4037; /* A nice chocolate/seal point brown */
    font-size: 2.5rem;
}

/* Grid Layout */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

/* Card Styling */
.item-card {
    background: #fdf5e6; /* Old Lace - soft cream color */
    border-left: 5px solid #8d6e63; /* Accent color */
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
}

.item-card:hover {
    transform: translateY(-5px);
}

.item-card h3 {
    margin-top: 0;
    color: #4e342e;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

.item-card ul {
    padding-left: 20px;
    list-style-type: square;
}

.item-card li {
    margin-bottom: 10px;
}

.checklist-footer {
    margin-top: 40px;
    padding: 20px;
    background: #e0f2f1; /* Light mint/water color */
    border-radius: 8px;
    text-align: center;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .checklist-header h1 {
        font-size: 1.8rem;
    }
}