/* THE FOOD ECONOMIST - MASTER STYLES */
:root { 
    --navy: #1E3A5F; 
    --navy-dark: #152A45;
    --gold: #B8860B; 
    --white: #FFFFFF; 
    --gray: #F8F9FA; 
}

body { font-family: 'Inter', sans-serif; margin: 0; color: #333; line-height: 1.6; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
a { text-decoration: none; color: inherit; }

/* Navigation */
.navbar { padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.05); background: white; position: sticky; top: 0; z-index: 1000; }
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 700; color: var(--navy); display: flex; align-items: center; gap: 10px; }
.nav-links { list-style: none; display: flex; gap: 25px; margin: 0; padding: 0; align-items: center; }
.nav-links li a { font-weight: 600; color: var(--navy); font-size: 0.95rem; transition: color 0.3s; }
.nav-links li a:hover { color: var(--gold); }
.btn-nav { background: var(--navy); color: white !important; padding: 8px 20px; border-radius: 4px; transition: background 0.3s; }
.btn-nav:hover { background: var(--gold); }

/* Hero Section */
.hero { background: var(--gray); padding: 100px 0; text-align: center; }

/* BILLBOARD HERO TAG (The Huge Box) */
.hero-tag { 
    background: var(--navy); 
    color: var(--white); 
    display: inline-block; 
    padding: 30px 50px;       
    border-radius: 12px; 
    font-size: 2.2rem;        
    margin-bottom: 40px; 
    font-weight: 800;         
    max-width: 800px;
    width: 90%;         
    line-height: 1.3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25); 
    border: 3px solid var(--gold);
    box-sizing: border-box;
}

/* GOLD TEXT FIX - FORCES GOLD COLOR */
#rotating-text, .highlight-text { 
    color: var(--gold) !important; 
    font-weight: 900; 
    text-transform: uppercase;
}

.hero h1 { color: var(--navy); font-size: 3rem; margin-bottom: 20px; line-height: 1.2; }
.hero-subtitle { font-size: 1.35rem; color: #555; max-width: 800px; margin: 0 auto 30px auto; }
.hero-credentials { margin-top: 40px; color: #666; font-weight: 600; font-size: 1.1rem; }
.hero-credentials span { margin: 0 20px; display: inline-block; }

/* DELIVERABLES BOX (The High-Impact Feature) */
.deliverables-box {
    background: white;
    border: 4px solid var(--navy);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.deliverables-box::before {
    content: "CORE VALUE";
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: white;
    padding: 5px 20px;
    font-size: 0.8rem;
    font-weight: bold;
    border-bottom-left-radius: 8px;
}
.deliverables-list { list-style: none; padding: 0; }
.deliverables-list li { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #eee; font-size: 1.1rem; }
.deliverables-list strong { color: var(--navy); font-size: 1.3rem; display: block; margin-bottom: 8px; }
.check-icon { color: var(--gold); font-weight: bold; margin-right: 10px; font-size: 1.4rem; }

/* Pricing Card */
.pricing-card { background: var(--navy); color: var(--white); padding: 40px; border-radius: 12px; text-align: center; box-shadow: 0 10px 30px rgba(0,0,0,0.15); height: fit-content; }
.pricing-amount { font-size: 3.5rem; font-weight: 700; margin: 15px 0; color: var(--gold); }

/* News / Resources / FAQ Layouts */
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }
.resource-card { background: white; padding: 25px; border-radius: 8px; border-left: 5px solid var(--navy); box-shadow: 0 2px 5px rgba(0,0,0,0.05); transition: 0.3s; }
.resource-card:hover { transform: translateY(-5px); border-left-color: var(--gold); }
.faq-item { background: white; padding: 30px; border-radius: 8px; margin-bottom: 20px; border-bottom: 2px solid #eee; }
.faq-question { color: var(--navy); font-size: 1.3rem; font-weight: 700; margin-bottom: 15px; }
.faq-answer { color: #555; font-size: 1.05rem; }

/* Buttons */
.btn { display: inline-block; padding: 18px 40px; border-radius: 6px; font-weight: 700; transition: 0.3s; font-size: 1.2rem; cursor: pointer; border: none; }
.btn-primary { background: var(--gold); color: var(--white); border: 2px solid var(--gold); }
.btn-primary:hover { background: #9d7309; border-color: #9d7309; transform: translateY(-2px); }
.btn-full { display: block; width: 100%; text-align: center; box-sizing: border-box; }

/* Full Article */
.full-article { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); border-left: 5px solid var(--gold); margin-bottom: 40px; }
.full-article h2 { color: var(--navy); font-size: 2rem; margin-top: 10px; }
.news-date { color: #888; font-size: 0.8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* About & Footer */
.about-section { background: white; padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; align-items: center; }
.footer { background: var(--navy-dark); color: var(--white); padding: 60px 0; text-align: center; margin-top: auto; }

/* Mobile */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-tag { max-width: 100%; width: 100%; min-width: auto; font-size: 1.4rem; padding: 20px; box-sizing: border-box; }
    .service-main { flex-direction: column; }
    .hero h1 { font-size: 2rem; }
    .about-grid { grid-template-columns: 1fr; }
}