/* ==========================================================================
   Find Review Today — shared site-wide design system
   Brand: deep green (#2d5a27) + leaf green (#4caf50) + orange CTA (#ff6b35)
   ========================================================================== */

:root{
    --green:#2d5a27;
    --green-mid:#4caf50;
    --green-tint:#e8f5e9;
    --green-tint-2:#f1f8e9;
    --orange:#ff6b35;
    --orange-dark:#e85a2a;
    --ink:#333;
    --muted:#777;
    --bg:#f8f9fa;
    --line:#e0e0e0;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    line-height:1.75;
    background:var(--bg);
    color:var(--ink);
}

a{
    text-decoration:none;
}

img{
    max-width:100%;
    height:auto;
}

p{
    margin-bottom:16px;
}

ul{
    margin:15px 0 20px 25px;
}

li{
    margin-bottom:10px;
}

h1,h2,h3{
    color:var(--green);
    line-height:1.3;
}

h2{
    margin:32px 0 15px;
}

h3{
    margin:22px 0 10px;
    color:#3a7a33;
}

/* ---------- Navigation bar (all pages) ---------- */
.navbar{
    background:#fff;
    border-bottom:1px solid var(--line);
    position:sticky;
    top:0;
    z-index:100;
    box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

.navbar-inner{
    max-width:1000px;
    margin:auto;
    padding:0 20px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    min-height:60px;
}

.navbar-brand{
    color:var(--green);
    font-size:1.25rem;
    font-weight:bold;
}

.navbar-brand::before{
    content:"🔥 ";
}

.navbar-links{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
}

.navbar-links a{
    color:#444;
    font-size:0.95rem;
    font-weight:bold;
    padding:6px 0;
    transition:0.2s;
}

.navbar-links a:hover{
    color:var(--orange);
}

/* ---------- Page container (review pages) ---------- */
.container{
    max-width:960px;
    margin:auto;
    background:#fff;
    padding:30px;
}

.content{
    padding:0;
}

.section{
    margin-bottom:28px;
}

/* ---------- Feature image (review pages) ---------- */
.feature-img{
    display:block;
    width:100%;
    max-height:360px;
    object-fit:cover;
    border-radius:12px;
    margin:0 0 30px;
    box-shadow:0 4px 16px rgba(0,0,0,0.08);
}

/* ---------- Hero ---------- */
.hero{
    text-align:center;
    padding:50px 25px;
    background:linear-gradient(135deg,#2d5a27,#4caf50);
    color:#fff;
    border-radius:12px;
    margin:0 0 30px;
}

.hero h1{
    color:#fff;
    font-size:2.2rem;
    margin-bottom:15px;
}

.hero p{
    color:#eafbe9;
    font-size:1.1rem;
    max-width:760px;
    margin:0 auto;
}

/* ---------- Buttons (every CTA variant) ---------- */
.cta-btn,
.cta-button,
.cta,
.card-link{
    display:inline-block;
    background:var(--orange);
    color:#fff;
    font-weight:bold;
    text-decoration:none;
    padding:15px 32px;
    border-radius:50px;
    font-size:1.05rem;
    margin-top:18px;
    transition:0.25s;
}

.cta-btn:hover,
.cta-button:hover,
.cta:hover,
.card-link:hover{
    background:var(--orange-dark);
    transform:translateY(-2px);
}

/* ---------- Accent / callout boxes ---------- */
.highlight,
.highlight-box,
.feature-box,
.review-box{
    background:var(--green-tint);
    border-left:5px solid var(--green-mid);
    padding:20px;
    margin:25px 0;
    border-radius:6px;
}

/* ---------- Light CTA panels ---------- */
.cta-box,
.cta-section{
    background:var(--green-tint-2);
    border:2px solid var(--green-mid);
    text-align:center;
    padding:32px 22px;
    margin:38px 0;
    border-radius:12px;
}

.cta-box h2,
.cta-box h3,
.cta-section h2,
.cta-section h3{
    color:var(--green);
    margin-top:0;
}

/* ---------- Dark CTA panels (page footers) ---------- */
.final-cta,
.footer-cta{
    background:var(--green);
    color:#fff;
    text-align:center;
    padding:42px 22px;
    margin-top:42px;
    border-radius:12px;
}

.final-cta h2,
.final-cta h3,
.footer-cta h2,
.footer-cta h3{
    color:#fff;
}

.final-cta p,
.footer-cta p{
    color:#eafbe9;
}

/* ---------- Pros & cons columns ---------- */
.pros-cons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin:20px 0;
}

.pros-cons .box,
.pros-cons .card{
    flex:1;
    min-width:260px;
    padding:22px;
    border-radius:10px;
    background:#f6f8f6;
}

.pros-cons .pros{
    background:#e9f9ec;
}

.pros-cons .cons{
    background:#fff2f2;
}

.pros-cons .box h3,
.pros-cons .card h3{
    margin-top:0;
}

/* ---------- Misc review-page bits ---------- */
.rating{
    font-size:22px;
    color:#f5a623;
    margin:10px 0;
}

.features{
    text-align:left;
    max-width:420px;
    margin:25px auto;
}

.disclaimer{
    font-size:13px;
    color:#666;
    background:#f4f6f4;
    border-radius:6px;
    padding:15px;
    margin-top:30px;
}

.footer{
    text-align:center;
    color:var(--muted);
    font-size:14px;
    padding:26px 0;
    margin-top:20px;
}

/* ==========================================================================
   Home page
   ========================================================================== */
.site-header{
    background:linear-gradient(135deg,#2d5a27,#4caf50);
    color:#fff;
    text-align:center;
    padding:55px 20px;
}

.site-header h1{
    color:#fff;
    font-size:2.4rem;
    margin-bottom:12px;
}

.site-header p{
    color:#eafbe9;
    font-size:1.15rem;
    max-width:680px;
    margin:0 auto;
}

.wrap{
    max-width:1000px;
    margin:auto;
    padding:20px;
}

.intro{
    background:#fff;
    padding:30px;
    border-radius:10px;
    margin:30px 0;
    box-shadow:0 2px 10px rgba(0,0,0,0.04);
}

.intro h2{
    margin-bottom:15px;
}

.section-title{
    color:var(--green);
    font-size:1.6rem;
    margin:40px 0 20px;
    padding-bottom:8px;
    border-bottom:3px solid var(--green-mid);
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(280px, 1fr));
    gap:25px;
}

.grid .card{
    background:#fff;
    border:1px solid var(--line);
    border-radius:10px;
    padding:25px;
    display:flex;
    flex-direction:column;
    transition:0.3s;
}

.grid .card-img{
    width:100%;
    height:175px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:16px;
}

.grid .card:hover{
    box-shadow:0 8px 20px rgba(0,0,0,0.1);
    transform:translateY(-4px);
}

.grid .card h3{
    margin:0 0 12px;
    font-size:1.2rem;
    color:var(--green);
}

.grid .card p{
    color:#555;
    font-size:0.97rem;
    flex-grow:1;
    margin-bottom:18px;
}

.grid .card-link{
    align-self:flex-start;
    margin-top:0;
    padding:10px 22px;
    font-size:1rem;
}

.tag{
    display:inline-block;
    background:var(--green-tint);
    color:var(--green);
    font-size:0.75rem;
    font-weight:bold;
    padding:3px 10px;
    border-radius:50px;
    margin-bottom:12px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}

.site-footer{
    background:var(--green);
    color:#e8f5e9;
    text-align:center;
    padding:30px 20px;
    margin-top:50px;
}

.site-footer p{
    font-size:0.9rem;
    max-width:720px;
    margin:0 auto 10px;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media(max-width:768px){
    .hero h1{
        font-size:1.7rem;
    }

    .site-header h1{
        font-size:1.85rem;
    }

    .container{
        padding:18px;
    }

    .section-title{
        font-size:1.35rem;
    }

    .cta-btn,
    .cta-button,
    .cta{
        display:block;
        width:100%;
        max-width:340px;
        margin-left:auto;
        margin-right:auto;
        text-align:center;
    }
}
