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

/* Body and Typography */
body {
    font-family: 'Georgia', serif; /* Classic, food-friendly font */
    line-height: 1.6;
    background-color: #f4f4f4; /* Light gray background */
    color: #333; /* Dark text */
}

/* Header Styling - Top banner */
header {
    background-color: #334aff; /* A rich, 'food' red/maroon for the school */
    color: #ffc500;
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid #ffaa00; /* Gold/Orange accent border */
}

header h1 {
    font-family: sans-serif; /* Modern font for the title */
    margin-bottom: 5px;
    font-size: 2.5em;
}

/* Navigation Bar */
nav {
    background-color: #00A361; /* Dark background for nav */
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 10px 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffc500; /* Change color on hover */
}

/* Main Content Layout */
main {
    padding: 20px;
    max-width: 1000px;
    margin: auto;
}

section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px; /* Slightly rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Subtle shadow */
}

section h2 {
    color: #0055A7;
    border-bottom: 2px solid #ffaa00;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #334aff;
    color: white;
    font-size: 0.9em;
}
section h3 {
    color: #0055A7;
}


/* Add this to your existing styles.css */

/* General page content wrapper for sub-pages */
.page-content {
    min-height: 50vh; /* Ensures the page looks decent even with little content */
}

/* Styling for sections within the About page */
.team-member {
    border-left: 5px solid #ffaa00; /* Gold/Orange accent */
    padding-left: 15px;
    margin-bottom: 20px;
}

.team-member h4 {
    color: #96281c;
    margin-bottom: 5px;
}

/* Styling for Event and Recipe items */
.event-item, .recipe-card {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    transition: box-shadow 0.3s;
}

.event-item:hover, .recipe-card:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.15); /* Lift on hover */
}

.recipe-card a {
    color: #96281c;
    text-decoration: none;
    font-weight: bold;
}