/*
==========================================================
TRAIL VET GEAR - Complete Website Stylesheet
==========================================================
*/

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-dark: #1a3c2a;
    --forest-medium: #2d5a3f;
    --forest-light: #3d7a54;
    --amber: #d4a854;
    --amber-dark: #b8923e;
    --burnt-orange: #c96b3c;
    --rust: #a65d3a;
    --earth-dark: #3d3229;
    --off-white: #f8f6f3;
    --cream: #f0ebe4;
    --gray-light: #e5e0d8;
    --gray-medium: #6b6b6b;
    --gray-dark: #333333;
    --success: #2d7a4f;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--off-white);
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    color: var(--forest-dark);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a {
    color: var(--forest-medium);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--amber);
}

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

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

/* ==================== HEADER ==================== */
.site-header {
    background: var(--forest-dark);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo a:hover {
    opacity: 0.9;
}

.logo-img {
    height: 120px;
    width: auto;
}

.tagline {
    color: var(--amber);
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-top: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
}

.main-nav a {
    color: var(--off-white);
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 22px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--amber);
    background-color: rgba(255, 255, 255, 0.08);
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--off-white);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 900px) {
    .header-content {
        padding: 10px 20px;
    }

    .logo-img {
        height: 80px;
    }

    .main-nav a {
        padding: 12px 14px;
        font-size: 1rem;
    }

    .main-nav ul {
        gap: 4px;
    }
}

/* ==================== HERO SECTION ==================== */
.hero {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--earth-dark) 100%);
    color: var(--off-white);
    padding: 80px 20px;
    text-align: center;
}

.hero h1 {
    color: var(--off-white);
    font-size: 2.8rem;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== BUTTONS ==================== */
.btn {
    font-family: 'Oswald', sans-serif;
    padding: 14px 32px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--amber) 0%, var(--burnt-orange) 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--burnt-orange) 0%, var(--rust) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
}

.btn-secondary {
    background: transparent;
    color: var(--off-white);
    border: 2px solid var(--off-white);
}

.btn-secondary:hover {
    background: var(--off-white);
    color: var(--forest-dark);
}

.btn-green {
    background: linear-gradient(135deg, var(--forest-medium) 0%, var(--forest-dark) 100%);
    color: white;
}

.btn-green:hover {
    background: linear-gradient(135deg, var(--forest-light) 0%, var(--forest-medium) 100%);
    color: white;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 60px 20px;
}

.section-light {
    background: white;
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--forest-dark);
    color: var(--off-white);
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.section-dark .section-title {
    color: var(--off-white);
}

/* ==================== FEATURE CARDS ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-medium);
    margin-bottom: 20px;
}

/* ==================== CATEGORY CARDS ==================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 4px solid var(--amber);
}

.category-card-content {
    padding: 20px;
}

.category-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.category-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

/* ==================== REVIEW CARDS ==================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-card-content {
    padding: 25px;
}

.trending-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--amber) 0%, var(--burnt-orange) 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.review-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.review-card p {
    color: var(--gray-medium);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.star-rating {
    color: var(--amber);
    margin-bottom: 15px;
}

/* ==================== REVIEW PAGE SPECIFIC ==================== */
.review-header {
    background: var(--cream);
    padding: 40px 20px;
}

.review-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

.review-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.review-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--amber);
}

.review-content p {
    margin-bottom: 20px;
}

/* Specs Table */
.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.specs-table th {
    background: var(--forest-dark);
    color: var(--off-white);
    padding: 15px;
    text-align: left;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.specs-table td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-light);
}

.specs-table tr:nth-child(even) {
    background: var(--cream);
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pros-box {
    background: linear-gradient(135deg, #e8f5ec 0%, #d4edda 100%);
    border-left: 5px solid var(--success);
    padding: 25px;
    border-radius: 8px;
}

.pros-box h3 {
    color: var(--success);
    margin-bottom: 15px;
}

.cons-box {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d4 100%);
    border-left: 5px solid var(--burnt-orange);
    padding: 25px;
    border-radius: 8px;
}

.cons-box h3 {
    color: var(--rust);
    margin-bottom: 15px;
}

.pros-box ul, .cons-box ul {
    list-style: none;
}

.pros-box li, .cons-box li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.pros-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.cons-box li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--rust);
    font-weight: bold;
}

/* Why Trending Box */
.why-trending {
    background: linear-gradient(135deg, var(--cream) 0%, var(--gray-light) 100%);
    border: 2px dashed var(--amber);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
}

.why-trending h3 {
    color: var(--amber-dark);
    margin-bottom: 15px;
}

.why-trending h3::before {
    content: "🔥 ";
}

/* Verdict Box */
.verdict-box {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-medium) 100%);
    color: var(--off-white);
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
    text-align: center;
}

.verdict-box h3 {
    color: var(--amber);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.verdict-box p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: var(--cream);
    border: 1px solid var(--gray-light);
    padding: 15px 20px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--gray-medium);
    margin: 30px 0;
}

/* ==================== ABOUT PAGE ==================== */
.about-hero {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-medium) 100%);
    color: var(--off-white);
    padding: 60px 20px;
    text-align: center;
}

.about-hero h1 {
    color: var(--off-white);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.about-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.about-content li {
    margin-bottom: 10px;
}

/* ==================== NEWSLETTER ==================== */
.newsletter {
    background: linear-gradient(135deg, var(--forest-medium) 0%, var(--forest-dark) 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.newsletter h2 {
    color: var(--amber);
    margin-bottom: 15px;
}

.newsletter p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
}

.newsletter-form input[type="email"]:focus {
    outline: 3px solid var(--amber);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: linear-gradient(135deg, var(--earth-dark) 0%, #1a1a1a 100%);
    color: var(--gray-light);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    color: var(--amber);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--gray-light);
}

.footer-section a:hover {
    color: var(--amber);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--earth-dark);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--amber);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
        padding: 10px 15px;
    }

    .logo-img {
        height: 70px;
    }

    .main-nav {
        display: none;
        width: 100%;
        padding-top: 15px;
        border-top: 1px solid rgba(255,255,255,0.1);
        margin-top: 10px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .main-nav a {
        display: block;
        padding: 12px 15px;
        font-size: 1rem;
        border-radius: 6px;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .pros-cons {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }
}

/* ==================== TRUST BAR ==================== */
.trust-bar {
    background: var(--cream);
    padding: 25px 20px;
    border-bottom: 1px solid var(--gray-light);
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.trust-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--forest-dark);
    line-height: 1;
}

.trust-label {
    font-size: 0.85rem;
    color: var(--gray-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media (max-width: 600px) {
    .trust-items {
        gap: 30px;
    }

    .trust-number {
        font-size: 1.6rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }
}

/* ==================== STAR RATINGS ==================== */
.star-rating {
    color: var(--amber);
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.star-rating .stars {
    display: inline-flex;
    position: relative;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.star-rating .score {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    color: var(--gray-medium);
}

/* ==================== BEST LISTS GRID ==================== */
.best-lists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.best-list-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: block;
    color: inherit;
}

.best-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    color: inherit;
}

.best-list-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.best-list-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.best-list-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================== ARTICLES GRID ==================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.article-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
}

.article-card a {
    display: block;
    color: inherit;
}

.article-card a:hover {
    color: inherit;
}

.article-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-category {
    display: inline-block;
    background: var(--forest-light);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 10px;
}

.article-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.4;
}

.article-card p {
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================== SECTION EXTRAS ==================== */
.section-subtitle {
    text-align: center;
    color: var(--gray-medium);
    margin-bottom: 30px;
    margin-top: -25px;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

.feature-number {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 15px;
}

.section-dark .feature-card {
    background: rgba(255, 255, 255, 0.1);
    color: var(--off-white);
}

.section-dark .feature-card h3 {
    color: var(--amber);
}

.section-dark .feature-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== SOCIAL LINKS ==================== */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--amber);
    color: var(--forest-dark);
}

/* ==================== NEWSLETTER NOTE ==================== */
.newsletter-note {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 15px;
}

/* ==================== READ MORE LINK ==================== */
.read-more {
    color: var(--forest-medium);
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 10px;
}

.read-more:hover {
    color: var(--amber);
}

/* ==================== CATEGORY TAG ==================== */
.category-tag {
    display: inline-block;
    background: var(--forest-light);
    color: white;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 8px;
    margin-right: 5px;
}
