/**
 * travel-guide.css
 * Page-specific styles for travel-guide.html
 * Shared section/lightbox components are in knuckles-experience.css
 * All colours reference main.css design tokens.
 */

/* ── Quick Jump Navigation ───────────────────────────────────── */
.tg-jump-nav {
    background: #fff;
    border-bottom: 1px solid #e8ede8;
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.6rem 0;
}

.tg-jump-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.tg-jump-links a {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-forest, #2d5a27);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.tg-jump-links a:hover {
    background: var(--color-sage-light, #eaf3ea);
    color: var(--color-forest-dark, #0f1c0f);
    text-decoration: none;
}

/* ── Section Icon Wrap ───────────────────────────────────────── */
.tg-section-icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--color-sage-light, #eaf3ea);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-forest, #2d5a27);
    margin: 0 auto 1rem;
}

/* ── Quick Fact Cards ────────────────────────────────────────── */
.tg-fact-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tg-fact-card:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
    transform: translateY(-2px);
}

.tg-fact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 0.1rem;
}

.tg-fact-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 0.2rem;
}

.tg-fact-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #222;
    line-height: 1.4;
}

/* ── Visa Cards ──────────────────────────────────────────────── */
.tg-visa-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
    border-top: 4px solid var(--color-forest, #2d5a27);
}

.tg-visa-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.tg-visa-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2a1a;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tg-visa-title i {
    color: var(--color-forest, #2d5a27);
}

.tg-visa-text {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── Climate Cards ───────────────────────────────────────────── */
.tg-climate-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    height: 100%;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    position: relative;
}

.tg-climate-card.recommended {
    border: 2px solid var(--color-gold, #d4af37);
}

.tg-climate-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.tg-climate-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tg-climate-months {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-forest, #2d5a27);
    margin-bottom: 0.4rem;
}

.tg-climate-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a2a1a;
    margin-bottom: 0.6rem;
}

.tg-climate-desc {
    font-size: 0.83rem;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.tg-climate-rec-badge {
    position: absolute;
    top: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-gold, #d4af37);
    color: #1a2a1a;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.7rem;
    border-radius: 12px;
    white-space: nowrap;
}

/* ── Transport Cards ─────────────────────────────────────────── */
.tg-transport-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
    height: 100%;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tg-transport-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.tg-transport-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tg-transport-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a2a1a;
    margin-bottom: 0.5rem;
}

.tg-transport-desc {
    font-size: 0.875rem;
    color: #555;
    line-height: 1.65;
    margin: 0;
}

/* ── Currency Tips ───────────────────────────────────────────── */
.tg-currency-tip {
    background: #fff;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    border-left: 4px solid var(--color-forest, #2d5a27);
    transition: box-shadow 0.2s;
}

.tg-currency-tip:hover {
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.10);
}

.tg-currency-tip-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a2a1a;
    margin-bottom: 0.3rem;
}

.tg-currency-tip-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.55;
    margin: 0;
}

/* ── Health & Safety ─────────────────────────────────────────── */
.tg-health-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    transition: background 0.2s;
}

.tg-health-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

.tg-health-icon {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.tg-health-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.tg-health-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.6;
    margin: 0;
}

/* ── Culture Cards ───────────────────────────────────────────── */
.tg-culture-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.tg-culture-card:hover {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.tg-culture-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.tg-culture-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a2a1a;
}

.tg-culture-text {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

/* ── Destination Cards ───────────────────────────────────────── */
.tg-dest-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.tg-dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tg-dest-card:hover img {
    transform: scale(1.08);
}

.tg-dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
    display: flex;
    align-items: flex-end;
    padding: 1rem 1.25rem;
}

.tg-dest-name {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

/* ── Hero Breadcrumb (Travel Guide specific) ─────────────────── */
.tg-breadcrumb-nav {
    margin-bottom: 0.75rem;
}

.tg-breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
}

.tg-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.70);
    text-decoration: none;
    transition: color 0.2s;
}

.tg-breadcrumb .breadcrumb-item a:hover {
    color: var(--color-gold, #d4af37);
}

.tg-breadcrumb .breadcrumb-item.active {
    color: var(--color-gold, #d4af37);
}

.tg-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.40);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 767px) {
    .tg-jump-links {
        gap: 0.35rem 0.6rem;
    }

    .tg-jump-links a {
        font-size: 0.76rem;
        padding: 0.25rem 0.5rem;
    }

    .tg-currency-tip {
        flex-direction: column;
    }

    .tg-climate-icon {
        font-size: 2rem;
    }
}
