/*
Theme Name: Sprouty
Theme URI: http://www.sprouty-eg.com
Author: Manus
Description: A custom WordPress theme for Sprouty with vibrant page-specific colors.
Version: 1.0
Text Domain: sprouty
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    transition: background-color 0.3s ease;
}

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

header {
    background: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    margin: 0;
    font-size: 24px;
    color: #42b16c; /* Default green from Veggie Vibes */
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    font-size: 14px;
}

nav ul li a:hover {
    color: #42b16c;
}

.page-content {
    min-height: 70vh;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.entry-content {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Page Specific Backgrounds */
.page-quinoa-boost { background-color: #775ca7; color: #ffffff; }
.page-beef-power { background-color: #881d3f; color: #ffffff; }
.page-chick-n-fuel { background-color: #f68a1f; color: #ffffff; }
.page-salmon-glow { background-color: #f26f63; color: #ffffff; }
.page-tuna-tide { background-color: #0297a7; color: #ffffff; }
.page-cheesy-delight { background-color: #f4c42d; color: #333333; }
.page-veggie-vibes { background-color: #42b16c; color: #ffffff; }
.page-default { background-color: #ffffff; color: #333333; }

/* Ensure header links are visible on colored backgrounds if needed, 
   but here the header is white, so it's fine. */
header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
}

.nav-list li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-list li a:hover {
    color: #42b16c;
}

footer {
    background: #333;
    color: #fff;
    padding: 40px 0;
    text-align: center;
}
