/*
Theme Name: LABITV Theme
Theme URI: https://lab-itv.isva.uc3m.es
Author: LABITV - UC3M
Author URI: https://www.uc3m.es
Description: Tema de bloques (FSE) para el Laboratorio de ITV de la Universidad Carlos III de Madrid.
Requires at least: 6.6
Tested up to: 7.0
Requires PHP: 8.0
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: labitv-theme
Tags: full-site-editing, block-patterns, custom-colors, custom-menu
*/

/* ── Cabecera sticky ─────────────────────────────────────── */
.labitv-header {
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: var(--wp--preset--shadow--header);
}

.labitv-header .labitv-site-title {
	margin: 0;
	font-size: 1.625rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1.2;
}

.labitv-header .labitv-site-title a {
	text-decoration: none;
	color: var(--wp--preset--color--primary);
}

.labitv-header .labitv-site-title a:hover {
	color: var(--wp--preset--color--primary-dark);
	text-decoration: none;
}

/* ── Hero split ──────────────────────────────────────────── */
.labitv-hero {
	position: relative;
	overflow: hidden;
}

.labitv-hero__image img {
	width: 100%;
	height: 100%;
	min-height: 420px;
	object-fit: cover;
	display: block;
}

.labitv-hero__image {
	position: relative;
}

.labitv-hero__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(20, 20, 20, 0.55) 0%,
		rgba(0, 85, 164, 0.25) 100%
	);
	pointer-events: none;
}

.labitv-hero__accent {
	display: inline-block;
	width: 48px;
	height: 4px;
	background: var(--wp--preset--color--primary);
	border-radius: 2px;
	margin-bottom: 1rem;
}

.labitv-hero__uc3m {
	font-size: 0.875rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--wp--preset--color--muted);
}

/* ── Stats band ──────────────────────────────────────────── */
.labitv-stat {
	text-align: center;
	padding: 1.5rem 1rem;
}

.labitv-stat__number {
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	line-height: 1;
	margin-bottom: 0.5rem;
}

.labitv-stat__label {
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
	line-height: 1.4;
}

/* ── Section titles ──────────────────────────────────────── */
.labitv-section-title {
	position: relative;
	padding-bottom: 0.75rem;
}

.labitv-section-title::after {
	content: "";
	display: block;
	width: 48px;
	height: 3px;
	background: var(--wp--preset--color--primary);
	margin: 0.75rem auto 0;
	border-radius: 2px;
}

.labitv-section-title.has-text-align-left::after {
	margin-left: 0;
}

/* ── Service cards ───────────────────────────────────────── */
.labitv-service-card {
	border: 1px solid var(--wp--preset--color--line);
	border-top: 3px solid var(--wp--preset--color--primary);
	box-shadow: var(--wp--preset--shadow--card);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	height: 100%;
}

.labitv-service-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 8px 32px rgba(20, 20, 20, 0.12);
}

.labitv-service-card__number {
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--wp--preset--color--primary);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 0.5rem;
}

.labitv-service-card a {
	font-weight: 600;
	text-decoration: none;
}

.labitv-service-card a:hover {
	text-decoration: underline;
}

/* ── Equipment teaser ────────────────────────────────────── */
.labitv-equipment-card img {
	width: 100%;
	height: 220px;
	object-fit: cover;
	display: block;
	border-radius: 6px 6px 0 0;
}

.labitv-equipment-card {
	border: 1px solid var(--wp--preset--color--line);
	border-radius: 6px;
	overflow: hidden;
	box-shadow: var(--wp--preset--shadow--card);
	transition: transform 0.2s ease;
}

.labitv-equipment-card:hover {
	transform: translateY(-3px);
}

/* ── Person cards ────────────────────────────────────────── */
.labitv-person-card {
	border: 1px solid var(--wp--preset--color--line);
	box-shadow: var(--wp--preset--shadow--card);
	transition: transform 0.2s ease;
}

.labitv-person-card:hover {
	transform: translateY(-3px);
}

.labitv-person-card img {
	width: 96px !important;
	height: 96px !important;
}

.labitv-person-card__area {
	color: var(--wp--preset--color--primary);
	font-weight: 600;
	font-size: 0.8rem;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

/* ── CTA band ────────────────────────────────────────────── */
.labitv-cta {
	position: relative;
	overflow: hidden;
}

.labitv-cta::before {
	content: "";
	position: absolute;
	top: -60px;
	right: -60px;
	width: 200px;
	height: 200px;
	border: 3px solid rgba(0, 85, 164, 0.3);
	border-radius: 50%;
	pointer-events: none;
}

/* ── Footer ──────────────────────────────────────────────── */
.labitv-footer {
	border-top: 3px solid var(--wp--preset--color--primary);
}

.labitv-footer__title {
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	margin: 0;
}

.labitv-footer a {
	color: rgba(255, 255, 255, 0.85);
	text-decoration: none;
}

.labitv-footer a:hover {
	color: var(--wp--preset--color--primary);
}

/* ── Page hero (inner pages) ─────────────────────────────── */
.labitv-page-hero {
	border-bottom: 1px solid var(--wp--preset--color--line);
}

.labitv-breadcrumb {
	font-size: 0.875rem;
	color: var(--wp--preset--color--muted);
}

.labitv-breadcrumb a {
	color: var(--wp--preset--color--muted);
	text-decoration: none;
}

.labitv-breadcrumb a:hover {
	color: var(--wp--preset--color--primary);
}

.labitv-cta .wp-block-button.is-style-outline .wp-block-button__link {
	color: var(--wp--preset--color--base);
	border-color: var(--wp--preset--color--base);
}

.labitv-cta .wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: rgba(255, 255, 255, 0.1);
	color: var(--wp--preset--color--base);
}

/* ── Service page sidebar ────────────────────────────────── */
.labitv-sidebar-cta {
	border-left: 4px solid var(--wp--preset--color--primary);
}
