/*
Theme Name:   Newspaper Child
Template:     Newspaper
Author:       ORM Digital Solutions
Version:      1.0.2
Description:  Child theme for beautifulplaces.pk. Holds schema additions and site fixes; the parent Newspaper theme stays untouched.
*/

/* ---------------------------------------------------------------------------
   1. Header logo legibility (2026-09-05)

   The header row is dark green. The DESKTOP header logo block renders the logo
   PNG only (no SVG fallback), and that PNG is black script type with a green
   emblem, so the wordmark was disappearing into the dark background.

   Fix: swap in a light recolour of the same artwork, uploaded as media 4085.
   It has identical dimensions (719x200) to the original, so nothing reflows.

   The ORIGINAL dark PNG is deliberately left in place as the Yoast /
   Organization schema logo, because Google renders that one on white.

   The mobile header blocks use an SVG mark plus text and are already #ffffff,
   so they are untouched.
--------------------------------------------------------------------------- */

.td-header-desktop-wrap .tdb-logo-img,
.td-header-template-wrap .tdb-logo-img {
	content: url('https://beautifulplaces.pk/wp-content/uploads/2026/09/Beautiful-Places-Logo-Light.png');
}

/* Keep the header ground solidly dark so both the light PNG and the white
   mobile SVG mark always have contrast. */
.td-header-desktop-wrap,
.td-header-mobile-wrap,
.td-header-template-wrap {
	background-color: #0b1c0a;
}

.tdb_header_logo .tdb-logo-text-title,
.tdb_header_logo .tdb-logo-text-tagline {
	color: #ffffff;
}

.tdb_header_logo .tdb-logo-icon-svg svg,
.tdb_header_logo .tdb-logo-icon-svg svg * {
	fill: #ffffff;
}

/* ---------------------------------------------------------------------------
   2. No breadcrumb on the front page (2026-09-05)

   The homepage was showing "Home > Beautiful Places of Pakistan", which points
   at the page you are already on. Breadcrumbs stay on every other template.
--------------------------------------------------------------------------- */

.home .td-crumb-container {
	display: none;
}
