/* FreshFreezeHub.com - Main Stylesheet */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f0f6fa;
}

a { color: #1a6b8a; }
a:hover { color: #0d4f6b; }
a:visited { color: #4a6a7a; }

/* Header */
#site-header {
    background-color: #1a6b8a;
    border-bottom: 4px solid #0d4f6b;
    padding: 16px 20px;
    text-align: center;
}

#site-header h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 28px;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

#site-header h1 a {
    color: #ffffff;
    text-decoration: none;
}

#site-header .tagline {
    font-size: 12px;
    color: #b8dce9;
    margin-top: 4px;
    font-style: italic;
}

/* Navigation */
#main-nav {
    background-color: #e2eff5;
    border-bottom: 2px solid #c5d9e3;
    padding: 8px 20px;
    text-align: center;
}

#main-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
}

#main-nav li a {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    color: #1a6b8a;
    text-decoration: none;
    border-radius: 3px;
}

#main-nav li a:hover {
    background-color: #1a6b8a;
    color: #ffffff;
}

/* Layout */
#content-wrap {
    max-width: 800px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Main Content */
.page-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 24px;
    color: #1a6b8a;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c5d9e3;
}

.content-section {
    margin-bottom: 28px;
}

.content-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 18px;
    color: #0d4f6b;
    margin-bottom: 10px;
    padding-top: 8px;
}

.content-section h3 {
    font-size: 15px;
    color: #2a5a6e;
    margin-bottom: 8px;
}

.content-section p {
    margin-bottom: 12px;
}

/* Tables */
.storage-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 13px;
}

.storage-table th {
    background-color: #1a6b8a;
    color: #ffffff;
    padding: 8px 12px;
    text-align: left;
    font-weight: bold;
}

.storage-table td {
    padding: 7px 12px;
    border-bottom: 1px solid #d0dfe6;
}

.storage-table tr:nth-child(even) td {
    background-color: #eaf2f7;
}

.storage-table tr:hover td {
    background-color: #d6e8f0;
}

/* Related Links Box */
.related-box {
    background-color: #e8f1f5;
    border: 1px solid #c5d9e3;
    border-left: 4px solid #1a6b8a;
    padding: 14px 18px;
    margin-top: 30px;
}

.related-box h3 {
    font-size: 14px;
    color: #0d4f6b;
    margin-bottom: 8px;
}

.related-box ul {
    list-style: none;
    padding: 0;
}

.related-box li {
    margin-bottom: 5px;
}

.related-box li a {
    font-size: 13px;
}

/* Category Hub Pages */
.food-list {
    list-style: none;
    padding: 0;
}

.food-list li {
    padding: 8px 0;
    border-bottom: 1px solid #d0dfe6;
}

.food-list li a {
    font-size: 14px;
    font-weight: bold;
}

.food-list li .food-desc {
    font-size: 12px;
    color: #555;
    margin-top: 2px;
}

/* Food Detail Pages */
.food-detail-section {
    margin-bottom: 22px;
}

.food-detail-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    color: #0d4f6b;
    margin-bottom: 8px;
    padding-top: 6px;
    border-bottom: 1px solid #d0dfe6;
    padding-bottom: 4px;
}

.quick-answer {
    background-color: #e0f0e8;
    border: 1px solid #a8d4b8;
    border-left: 4px solid #3a9a5c;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.tips-list {
    list-style: disc;
    margin-left: 20px;
    margin-top: 8px;
}

.tips-list li {
    margin-bottom: 8px;
    font-size: 13px;
}

/* Homepage */
.home-intro {
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.home-section {
    margin-bottom: 28px;
}

.home-section h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 20px;
    color: #0d4f6b;
    margin-bottom: 12px;
    border-bottom: 2px solid #c5d9e3;
    padding-bottom: 6px;
}

.home-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-grid a {
    display: block;
    background-color: #e8f1f5;
    border: 1px solid #c5d9e3;
    padding: 12px 14px;
    text-decoration: none;
    border-radius: 3px;
    font-size: 13px;
    color: #1a6b8a;
    font-weight: bold;
}

.home-grid a:hover {
    background-color: #d6e8f0;
    border-color: #1a6b8a;
}

.home-grid a span {
    display: block;
    font-weight: normal;
    font-size: 11px;
    color: #555;
    margin-top: 4px;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 12px;
    color: #777;
    margin-bottom: 14px;
}

.breadcrumb a {
    color: #1a6b8a;
    font-size: 12px;
}

/* Footer */
#site-footer {
    text-align: center;
    padding: 16px 20px;
    margin-top: 40px;
    border-top: 2px solid #c5d9e3;
    background-color: #e2eff5;
    font-size: 11px;
    color: #666;
}

/* Mobile */
@media (max-width: 600px) {
    #site-header h1 { font-size: 22px; }
    #main-nav ul { flex-direction: column; align-items: center; }
    .home-grid { grid-template-columns: 1fr; }
    .storage-table { font-size: 12px; }
    .storage-table th, .storage-table td { padding: 5px 8px; }
    .page-title { font-size: 20px; }
    #content-wrap { padding: 0 12px; }
}
