/*
Theme Name: Parsa Dev - Towerpedia
Description: Bespoke WordPress block theme for Tower Pedia — an estate and commercial agency based in Hammersmith, London. Designed and developed by Parsa Dev.
Author: Parsa Dev
Template: yith-wonder
Version: 1.0.0
Requires at least: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: parsadev-towerpedia
Tags: block-theme, full-site-editing, business, real-estate
*/

/* ============================================================
   Parsa Dev — Towerpedia
   Brand tokens
   ------------------------------------------------------------
   navy    #102229    gold   #c2a47b
   surface #f4f5f7    body   #3f4a54    muted #6b7580
   ============================================================ */

:root {
	--pd-navy: #102229;
	--pd-gold: #c2a47b;
	--pd-surface: #f4f5f7;
	--pd-body: #3f4a54;
	--pd-muted: #6b7580;
}

/* Footer links inherit the brand gold and lift on hover. */
footer .wp-block-group a {
	text-decoration: none;
	transition: color 0.18s ease, opacity 0.18s ease;
}

footer .wp-block-group a:hover,
footer .wp-block-group a:focus-visible {
	color: var(--pd-gold);
	opacity: 0.85;
}

/* Call-to-action buttons: subtle lift, no colour shift. */
.wp-block-button__link {
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wp-block-button__link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 18px rgba(16, 34, 41, 0.18);
}

/* Stack the two-up card grids on small screens. */
@media (max-width: 781px) {
	.wp-block-columns {
		gap: 1.5rem;
	}
}
