/* Basic Reset from Session 2 Notes */
* { margin: 0; padding: 0; box-sizing: border-box; } [cite: 495, 498]

body { font-family: sans-serif; line-height: 1.6; background-color: #f4f4f4; }

.site-header {
    height: 300px;
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.header-inner {
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
}

.logo img {
    width: 80px;
    height: auto;
    margin-right: 12px;
}

.site-title {
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    width: 100%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
}

.header-nav {
    background: rgba(0, 0, 0, 0.25);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    padding: 8px;
}

.header-nav ul {
    list-style: none;
    display: flex;
    justify-content: flex-start;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.header-nav a {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease;
}

.header-nav a:hover {
    background: rgba(255, 255, 255, 0.35);
}

nav {
    background: #333;
    display: flex;
    justify-content: center;
    padding: 0.5rem;
}

nav a { color: white; margin: 0 15px; text-decoration: none; text-transform: uppercase; }

main { padding: 20px; max-width: 800px; margin: auto; background: white; min-height: 80vh; } [cite: 864, 868]

footer { background: #333; color: white; text-align: center; padding: 1rem; margin-top: 20px; } [cite: 870, 878]

/* Recipe Specific */
.recipe-img { width: 100%; height: auto; display: block; margin: 10px 0; } [cite: 543, 545]
table { width: 100%; border-collapse: collapse; margin: 20px 0; } [cite: 705]
th, td { border: 1px solid #ccc; padding: 10px; text-align: left; } [cite: 758, 762]

/* Print Style for Task 3 */
@media print {
    nav, .no-print { display: none; }
    main { width: 100%; }
}