:root {
    --primary-gold: #C9A961;
    --deep-green: #2C3E2F;
    --soft-cream: #F8F6F1;
    --warm-gray: #6B6B6B;
    --accent-sage: #8B9B88;
    --pure-white: #FFFFFF;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--deep-green);
    background-color: var(--soft-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--deep-green) 0%, #3d5540 100%);
    color: var(--pure-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 0;
}

.header-top {
    position: relative;
    padding: 2.5rem 2rem;
    text-align: center;
    /* Logo background image */
    background-image: url('../images/logo_2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 200px;
}

.header-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Semi-transparent overlay so text is readable over the logo */
    background: linear-gradient(135deg, rgba(44, 62, 47, 0.75) 0%, rgba(61, 85, 64, 0.70) 100%);
    z-index: 1;
}

.header-content {
    position: relative;
    z-index: 2;
}

.logo-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    color: var(--pure-white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInDown 1s ease-out;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.3s both;
}


/* Navigation */
nav {
    background-color: rgba(44, 62, 47, 0.95);
    border-top: 1px solid rgba(201, 169, 97, 0.3);
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
}

nav ul li {
    margin: 0;
}

nav ul li a {
    display: block;
    color: var(--soft-cream);
    text-decoration: none;
    padding: 1.2rem 2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-gold);
    background-color: rgba(201, 169, 97, 0.1);
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 60%;
}

/* Page Content */
.page-content {
    display: none;
    animation: fadeIn 0.6s ease-in;
}

.page-content.active {
    display: block;
}

/* Home Page */
.hero-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.image-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 4rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #8B9B88 0%, #C9A961 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.2rem;
    font-style: italic;
    position: relative;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" opacity="0.05" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.hero-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.approach-section {
    background-color: var(--pure-white);
    padding: 5rem 2rem;
    margin: 4rem 0;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 4rem;
    position: relative;
}

.approach-title::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: var(--primary-gold);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--soft-cream);
    border-radius: 8px;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 169, 97, 0.2);
    animation: fadeInUp 0.8s ease-out both;
}

.feature-card:nth-child(1) {
    animation-delay: 0.2s;
}
.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}
.feature-card:nth-child(3) {
    animation-delay: 0.6s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(44, 62, 47, 0.15);
    border-color: var(--primary-gold);
}

.feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--warm-gray);
    line-height: 1.8;
    font-size: 1rem;
}

/* Services Page */
.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    color: var(--deep-green);
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.services-two-column {
    margin-top: 3rem;
}

.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-row:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.service-row.reverse {
    display: flex;
    flex-direction: row-reverse;
}

.service-image {
    height: 100%;
    min-height: 350px;
}

.service-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-img-placeholder:hover {
    opacity: 0.9;
}

.service-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" opacity="0.05" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.service-text {
    padding: 3rem;
}

.service-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.service-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.service-text p {
    color: var(--warm-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* Prepared Meals Page */
.meals-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.meals-intro {
    text-align: center;
    margin: 3rem 0;
}

.meals-intro h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.meals-intro p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    font-style: italic;
}

/* Meals Hub – category selector cards */
.meals-hub-subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1.05rem;
    font-style: italic;
    margin-bottom: 3rem;
}

.meals-hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.meals-hub-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 3rem 2rem 2.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 1px solid rgba(201, 169, 97, 0.2);
    text-decoration: none;
    color: inherit;
    transition: all 0.35s ease;
}

.meals-hub-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(44, 62, 47, 0.18);
    border-color: var(--primary-gold);
}

.meals-hub-card:link,
.meals-hub-card:visited {
    color: inherit;
    text-decoration: none;
}

.meals-hub-card-icon {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    line-height: 1;
}

.meals-hub-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.meals-hub-card p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.meals-hub-card-cta {
    display: inline-block;
    color: var(--primary-gold);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: transform 0.3s ease;
}

.meals-hub-card:hover .meals-hub-card-cta {
    transform: translateX(4px);
}

/* Sub-page shared layout */
.subpage-wrapper {
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem 4rem;
}

.subpage-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.subpage-back:link,
.subpage-back:visited {
    color: var(--primary-gold);
    text-decoration: none;
}

.subpage-back:hover {
    color: var(--deep-green);
    transform: translateX(-4px);
}

/* Responsive – hub cards stack on mobile */
@media (max-width: 600px) {
    .meals-hub-grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
}

.menu-section {
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.menu-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
}

.menu-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.menu-item-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.menu-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--soft-cream);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.menu-option:hover {
    background-color: rgba(201, 169, 97, 0.15);
    transform: translateY(-2px);
}

.menu-option .portion {
    color: var(--warm-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-option .price {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Menu Two-Column Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
}

.menu-column {
    min-width: 0;
}

.menu-column .menu-item:last-child {
    border-bottom: none;
}

/* Solutions Page */
.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}
.solutions-two-column {
    margin-top: 3rem;
}
.solutions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background-color: var(--pure-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.solutions-row:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.solutions-row.reverse {
    display: flex;
    flex-direction: row-reverse;
}

.solutions-image {
    height: 100%;
    min-height: 350px;
}

.solutions-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    background: linear-gradient(135deg, var(--accent-sage) 0%, var(--primary-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 1.1rem;
    font-style: italic;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.solutions-img-placeholder:hover {
    opacity: 0.9;
}

.solutions-img-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23ffffff" opacity="0.05" width="100" height="100"/></svg>');
    opacity: 0.3;
}

.solutions-text {
    padding: 3rem;
}

.solutions-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.solutions-text h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-gold);
}

.solutions-text p {
    color: var(--warm-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}



/* Contact Page */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.contact-intro {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem auto 3rem;
    max-width: 700px;
}

.contact-info-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.contact-detail {
    text-align: center;
}

.contact-detail h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--deep-green);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--deep-green);
}

.form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    text-align: center;
    margin: 3rem 0 0.5rem;
}

.form-subtitle {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.contact-form {
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-green);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(201, 169, 97, 0.3);
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: var(--soft-cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    background: linear-gradient(135deg, var(--deep-green) 0%, #3d5540 100%);
    color: var(--pure-white);
    padding: 1rem 3rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 62, 47, 0.3);
}

/* About Page */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
    align-items: center;
}

.about-content {
    background-color: var(--pure-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-top: 2;
    line-height: 2;
}

.about-content p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-content p {
    color: var(--warm-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-top: -10px;
}

.about-content h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin: 0.5rem 0 1.5rem;
    font-weight: 400;
    font-style: italic;
}

/* Footer */
footer {
    background-color: var(--deep-green);
    color: var(--soft-cream);
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.footer-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    margin: 0.5rem 0;
    line-height: 1.6;
}

.footer-column strong {
    color: var(--primary-gold);
}

.footer-right {
    position: relative;
    text-align: right;
    background-image: url('../images/logo_2.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding: 2rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 47, 0.5) 0%, rgba(61, 85, 64, 0.45) 100%);
    z-index: 1;
    border-radius: 8px;
}

.footer-right p {
    position: relative;
    z-index: 2;
    margin: 0.3rem 0;
}
a:link {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

a:visited {
    color: white;
    background-color: transparent;
    text-decoration: none;
}

/* Override link colors in service and about sections to be black */
.service-text a:link,
.service-text a:visited,
.about-content a:link,
.about-content a:visited {
    color: black !important;
    text-decoration: none;
}

.service-text a:hover,
.about-content a:hover {
    color: var(--primary-gold) !important;
    text-decoration: underline;
}


  .black-link { color: black;
    background-color: transparent;
    text-decoration: underline;
}
  .blue-link { color: blue;
    background-color: transparent;
    text-decoration: underline;
}
  .white-link { color: white;
    background-color: transparent;
    text-decoration: underline;
}

  
  .black-link:hover {color: black;
    background-color: transparent;
    text-decoration: underline;
}
  .blue-link:hover {color: darkblue;
    background-color: transparent;
    text-decoration: underline;
}
  .white-link:hover { color: white;
    background-color: transparent;
    text-decoration: underline;
}

  .black-link:active {color: black;
    background-color: transparent;
    text-decoration: none;
}
  .blue-link:active {color: darkblue;
    background-color: transparent;
    text-decoration: none;
}
  .white-link:active{color: white;
    background-color: transparent;
    text-decoration: none;
}



/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Subpage Wrapper Styles */
.subpage-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 6rem;
    min-height: calc(100vh - 400px);
}

.subpage-back {
    display: inline-block;
    color: var(--deep-green);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    background-color: rgba(201, 169, 97, 0.1);
}

.subpage-back:hover {
    background-color: rgba(201, 169, 97, 0.2);
    color: var(--primary-gold);
    transform: translateX(-5px);
}

/* Meals Hero Section */
.meals-hero-section {
    margin: 3rem 0 4rem;
}

.meals-image-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.meals-hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Enhanced Menu Item Styles */
.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.05);
}

.menu-item-desc {
    color: var(--warm-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin: 0.5rem 0 1rem;
    line-height: 1.5;
}

.category-description {
    text-align: center;
    color: var(--warm-gray);
    font-size: 1rem;
    font-style: italic;
    margin: -1rem 0 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Macro Information Cards */
.macro-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.macro-card {
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.macro-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.macro-card.cutting {
    border-color: rgba(201, 169, 97, 0.3);
}

.macro-card.cutting:hover {
    border-color: var(--primary-gold);
}

.macro-card.bulking {
    border-color: rgba(139, 155, 136, 0.3);
}

.macro-card.bulking:hover {
    border-color: var(--accent-sage);
}

.macro-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.macro-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.portion-size {
    color: var(--warm-gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.macro-breakdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.macro-item {
    color: var(--deep-green);
    font-size: 0.95rem;
}

.macro-item strong {
    color: var(--primary-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.macro-divider {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.macro-description {
    color: var(--warm-gray);
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    line-height: 1.6;
}

/* Enhanced Menu Option Labels */
.cutting-label,
.bulking-label {
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cutting-label {
    background-color: rgba(201, 169, 97, 0.15);
    color: var(--primary-gold);
}

.bulking-label {
    background-color: rgba(139, 155, 136, 0.15);
    color: var(--accent-sage);
}

/* Nutrition Information Styling */
.nutrition-info {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-weight: 500;
    padding: 0.4rem 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    border-bottom: 1px solid rgba(201, 169, 97, 0.1);
    margin-bottom: 0.5rem;
}

/* Info Box Styles */
.info-box {
    background-color: var(--pure-white);
    border-radius: 12px;
    padding: 2.5rem 3rem;
    margin: 4rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-gold);
}

.info-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--deep-green);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.info-content p {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-content p strong {
    color: var(--deep-green);
    font-weight: 600;
}

.info-content ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.info-content ul li {
    color: var(--warm-gray);
    font-size: 1rem;
    line-height: 1.8;
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.info-content ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.info-note {
    font-style: italic;
    color: var(--accent-sage);
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Benefits Section */
.benefits-section {
    background-color: var(--soft-cream);
    padding: 3rem 2rem;
    margin: 4rem -2rem;
    border-radius: 12px;
}

.benefits-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-green);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--deep-green);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.benefit-item p {
    color: var(--warm-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    margin: 4rem 0 2rem;
}

.cta-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--deep-green);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: var(--warm-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--deep-green) 0%, #3d5540 100%);
    color: var(--pure-white);
    padding: 1rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 47, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(44, 62, 47, 0.3);
    background: linear-gradient(135deg, #3d5540 0%, var(--deep-green) 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-text h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li a {
        padding: 1rem;
        border-bottom: 1px solid rgba(201, 169, 97, 0.2);
    }

    .hero-heading {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .approach-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .image-placeholder {
        height: 300px;
    }

    /* Services responsive */
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-image {
        min-height: 250px;
    }

    .service-img-placeholder {
        min-height: 250px;
    }

    .service-text {
        padding: 2rem;
    }

    .service-text h3 {
        font-size: 1.8rem;
    }

    /* Prepared Meals responsive */
    .menu-section {
        padding: 2rem 1.5rem;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .menu-category {
        font-size: 1.6rem;
    }

    .menu-item-name {
        font-size: 1.3rem;
    }

    .menu-item-options {
        gap: 1rem;
    }
    .map-container {
        margin: 3rem auto;
        max-width: 100%;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(201, 169, 97, 0.2);
    }

    .map-container iframe {
        display: block;
        width: 100%;
        height: 400px;
        border: none;
    }


    @media (max-width: 768px) {
        .map-container {
            margin: 2rem auto;
        }

        .map-container iframe {
            height: 300px;
        }
    }
    /* Contact responsive */
    .contact-info-main {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    /* Subpage responsive */
    .subpage-wrapper {
        padding: 2rem 1.5rem 4rem;
    }

    .macro-info-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .info-box {
        padding: 2rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }

    .benefits-section {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        border-radius: 0;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .meals-hero-section {
        margin: 2rem -1.5rem 3rem;
    }

    .meals-image-container {
        border-radius: 0;
    }

    .cta-section {
        padding: 3rem 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}
