﻿/* TaxiSearcher - clean minimal style */
:root {
    --tf-accent: #E0A800;
    --tf-text: #111;
    --tf-muted: #666;
    --tf-border: #E9E9E9;
    --tf-bg: #fff;
    --tf-link: #0d6efd; /* bootstrap default blue */
}

html, body {
    background: var(--tf-bg);
    color: var(--tf-text);
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.tf-brand {
    font-weight: 700;
    letter-spacing: -0.2px;
    text-decoration: none;
    color: var(--tf-accent); /* Taxi yellow */
    font-size: 20px;
    transition: color 0.2s ease;
}

    .tf-brand:hover {
        color: #0d6efd; /* Bootstrap blue */
        text-decoration: none;
}

html, body {
    background: var(--tf-bg);
    color: var(--tf-text);
}

.tf-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.tf-header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--tf-border);
    z-index: 10;
}

.tf-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.tf-nav a {
    text-decoration: none;
    color: var(--tf-text);
    margin-left: 16px;
    font-weight: 600;
}

    .tf-nav a:hover {
        opacity: 0.75;
    }

.tf-nav-cta {
    background: var(--tf-accent);
    padding: 10px 14px;
    border-radius: 10px;
}

.tf-footer {
    border-top: 1px solid var(--tf-border);
    margin-top: 60px;
    padding: 24px 0;
    color: var(--tf-muted);
    font-size: 14px;
}

.tf-footer-row {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.tf-footer-links a {
    color: var(--tf-muted);
    text-decoration: none;
    margin-left: 14px;
}

.tf-hero {
    padding: 60px 0 36px;
}

.tf-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
}

.tf-h1 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 14px;
    letter-spacing: -1px;
}

.tf-sub {
    font-size: 18px;
    color: var(--tf-muted);
    line-height: 1.6;
    margin: 0 0 18px;
}

.tf-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.tf-pill {
    border: 1px solid var(--tf-border);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 14px;
    color: var(--tf-text);
    background: #fff;
}

.tf-card {
    border: 1px solid var(--tf-border);
    border-radius: 18px;
    padding: 18px;
    background: #fff;
}

.tf-shot {
    width: 100%;
    border-radius: 18px;
    border: 1px solid var(--tf-border);
    display: block;
}

.tf-section {
    padding: 28px 0;
}

.tf-h2 {
    font-size: 26px;
    margin: 0 0 14px;
    letter-spacing: -0.4px;
}

.tf-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 900px) {
    .tf-hero-grid {
        grid-template-columns: 1fr;
    }

    .tf-h1 {
        font-size: 38px;
    }

    .tf-two {
        grid-template-columns: 1fr;
    }
}

/* --- Screenshot cards (Driver vs Passenger, Trip Request vs Trip Offer) --- */

.tf-card h3 {
    margin: 0 0 10px;
    font-size: 18px;
    letter-spacing: -0.2px;
}

.tf-shot {
    /* keep your existing styles, but add these: */
    object-fit: contain; /* prevents stretching */
    background: #fff; /* looks clean if there’s extra space */
}

/* Optional: make side-by-side screenshots feel aligned */
.tf-shot-fixed {
    height: 560px; /* adjust to taste */
}

@media (max-width: 900px) {
    .tf-shot-fixed {
        height: auto; /* don’t force height on mobile */
    }
}

.tf-shot {
    width: 100%;
    height: 520px; /* tweak: 480–620 depending on your layout */
    object-fit: contain; /* no stretching */
    background: #fff; /* or #f6f6f6 if you want a framed look */
}

/* --- Callout box for important notes or highlights --- */
.tf-callout {
    border: 1px solid var(--tf-border);
    border-left: 6px solid var(--tf-accent);
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    color: var(--tf-text);
    margin: 14px 0 0;
}

    .tf-callout strong {
        font-weight: 800;
    }
