/*
Theme Name:        Burzil Resort
Theme URI:         https://example.com/burzilresort
Author:            Burzil Studio
Author URI:        https://example.com
Description:       A modern, production-ready luxury resort theme built with the WordPress Coding Standards, security best practices, Tailwind CSS, and a refined navy/gold design system.
Version:           1.1.6
Requires at least: 6.0
Tested up to:      6.7
Requires PHP:      7.4
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       burzilresort
Tags:              custom-logo, featured-images, custom-menu, threaded-comments, translation-ready, responsive-layout
*/

/* -------------------------------------------------------------------------
 * Design System
 * Fonts are enqueued in PHP (inc/enqueue.php). The CSS custom properties and
 * presentational helpers live here so they load with the stylesheet header.
 * ---------------------------------------------------------------------- */

:root {
	/* Colors */
	--color-navy: #072557;
	--color-cream: #f4e2bc;
	--color-gold: #cba165;
	--color-white: #ffffff;
	--color-black: #000000;
	--color-black-light: #222222C9;

	/* Gradient */
	--gradient-gold: linear-gradient(to right, #cba266 0%, #f4dfb9 100%);
	--gradient-start: #cba266;
	--gradient-end: #f4dfb9;

	/* Fonts */
	--font-heading: "Cinzel", serif;
	--font-body: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-heading);
}

body {
	font-family: var(--font-body);
	color: var(--color-navy);
}

/* -------------------------------------------------------------------------
 * Accessibility
 * ---------------------------------------------------------------------- */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: var(--color-cream);
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: var(--color-navy);
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

.skip-link {
	left: -9999px;
	position: absolute;
}

/* -------------------------------------------------------------------------
 * WordPress core helper classes (alignment, captions, galleries)
 * ---------------------------------------------------------------------- */

.alignleft {
	float: left;
	margin: 0 1.5rem 1rem 0;
}

.alignright {
	float: right;
	margin: 0 0 1rem 1.5rem;
}

.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	max-width: 100%;
}

.wp-caption-text {
	font-size: 0.875rem;
	font-style: italic;
	text-align: center;
}

.sticky,
.bypostauthor,
.gallery-caption {
	/* Defined for theme-check compliance. */
}

/* -------------------------------------------------------------------------
 * Reusable presentational helpers (complement Tailwind utilities)
 * ---------------------------------------------------------------------- */

.text-gradient-gold {
	background: var(--gradient-gold);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	color: transparent;
}

.bg-gradient-gold {
	background: var(--gradient-gold);
}

/* Solid base surfaces driven by the design-system tokens. */
.bg-base-white {
	background-color: var(--color-white);
}

/* Body / paragraph text color (#222222C9) used across light sections. */
.text-ink {
	color: var(--color-black-light);
}

/*
 * Hero overlay gradient (darkest at the top so the transparent header and its
 * light text stay legible over the banner image).
 */
.hero-overlay {
	background: linear-gradient(
		359.85deg,
		rgba(0, 0, 0, 0.2) 23.6%,
		rgba(0, 0, 0, 0.63) 37.33%,
		rgba(0, 0, 0, 0.74) 83.34%
	);
}

/* "Be Part of Astore Valley" closing CTA overlay gradient. */
.cta-overlay {
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.3) 0%,
		rgba(0, 0, 0, 0.94) 100%
	);
}

/* Master Plan hero overlay gradient. */
.masterplan-hero-overlay {
	background: linear-gradient(
		359.85deg,
		rgba(0, 0, 0, 0.5) 23.6%,
		rgba(0, 0, 0, 0.73) 37.33%,
		rgba(0, 0, 0, 0.84) 83.34%
	);
}

/* Long-form content styling for post / page bodies. */
.entry-content a {
	color: var(--color-gold);
	text-decoration: underline;
}

.entry-content a:hover,
.entry-content a:focus {
	color: var(--color-navy);
}

.entry-content blockquote {
	border-left: 4px solid var(--color-gold);
	font-style: italic;
	margin: 1.5rem 0;
	padding-left: 1.25rem;
}
