/*
Theme Name: RCHopgood
Description: Storyteller portfolio theme for Roberto Cofresí Hopgood — bilingual catalog of stories, reviews, blog projects, and music.
Version: 0.1.0
Author: The Beehive Salon
*/

:root {
	--band-hero: #6b7680;
	--band-stories: #f0efec;
	--band-reviews: #8a97a6;
	--band-blogs: #8f8471;
	--band-music: #c6d3dc;
	--ink: #1c1c1c;
	--ink-soft: #3a3a3a;
	--paper: #d8c9a3;
	--font-display: 'Special Elite', 'Courier New', Courier, monospace;
	--font-body: 'Courier Prime', 'Courier New', Courier, monospace;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-body);
	color: var(--ink);
	background: var(--band-stories);
}

h1, h2, h3 {
	font-family: var(--font-display);
	font-weight: normal;
	letter-spacing: 0.02em;
}

a {
	color: inherit;
}

.site-header {
	background: #cfd9e0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	position: sticky;
	top: 0;
	z-index: 10;
}

.site-header__inner {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.site-title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	border: 1px solid var(--ink);
	padding: 6px 14px;
}

.site-title a {
	display: block;
	margin: -6px -14px;
	padding: 6px 14px;
	border-radius: 3px;
	text-decoration: none;
	transition: background-color 0.15s ease;
}

.site-title a:hover,
.site-title a:focus-visible {
	background-color: rgba(0, 0, 0, 0.08);
}

.main-nav ul {
	list-style: none;
	display: flex;
	gap: 36px;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}

.main-nav a {
	display: inline-block;
	margin: -6px -10px;
	padding: 6px 10px;
	border-radius: 4px;
	text-decoration: none;
	font-family: var(--font-display);
	font-size: 0.95rem;
	transition: background-color 0.15s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
	background-color: rgba(0, 0, 0, 0.08);
}

.lang-switcher {
	display: flex;
	gap: 8px;
}

.lang-switcher a {
	display: flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	border: 1px solid var(--ink);
	padding: 4px 10px;
	font-size: 0.85rem;
}

.lang-switcher img {
	width: 18px;
	height: auto;
}

.band {
	padding: 64px 24px;
}

.band__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.band--hero {
	background: var(--band-hero);
	color: var(--ink);
	text-align: center;
}

.band--hero h1 {
	font-size: 4rem;
	margin: 0 0 16px;
}

.band--hero .tagline {
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 0 0 40px;
}

.tagline__line {
	display: block;
}

.coming-soon {
	background: center / cover no-repeat;
	aspect-ratio: 969 / 342;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 0 90px;
	text-align: left;
	max-width: 680px;
	width: 100%;
	margin: 20px auto 60px;
	font-size: 1.05rem;
	transform: rotate(-3deg);
	filter: drop-shadow(0 10px 16px rgba(0,0,0,0.35));
}

.coming-soon p {
	margin: 0;
}

.coming-soon strong {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-display);
}

@media (max-width: 555px) {
	.band--hero .coming-soon {
		background-image: url('https://static.wixstatic.com/media/01c379_227c93626f0c4e78ac1e00c026682269~mv2.png/v1/fill/w_280,h_154,al_c,q_85,usm_0.66_1.00_0.01,enc_avif,quality_auto/2222_edited.png');
		aspect-ratio: 280 / 154;
		padding: 0 26px;
		font-size: 0.7rem;
	}
}

.news-contact h2 {
	font-size: 1.9rem;
	margin: 0 0 20px;
}

.social-links {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-bottom: 20px;
}

.social-links a {
	display: block;
	transition: transform 0.2s ease;
}

.social-links a:hover,
.social-links a:focus-visible {
	transform: translateY(-4px);
}

.social-links img {
	width: 28px;
	height: 28px;
	display: block;
}

.representation {
	font-size: 1.15rem;
	max-width: 460px;
	margin: 0 auto;
}

.representation__agency {
	text-decoration: underline;
}

.band--stories { background: var(--band-stories); }
.band--reviews { background: var(--band-reviews); }
.band--blogs   { background: var(--band-blogs); }
.band--music   { background: var(--band-music); }

.band h2 {
	font-size: 2.6rem;
	margin: 0 0 32px;
}

.pub-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 40px;
}

.pub-card {
	text-decoration: none;
	color: inherit;
	display: block;
	transition: transform 0.2s ease;
}

.pub-card:hover,
.pub-card:focus-visible {
	transform: translateY(-6px);
}

.pub-card__media {
	display: block;
	width: 292px;
	max-width: 100%;
	height: 291px;
	overflow: hidden;
	margin: 0 auto 12px;
}

.band--stories .pub-card__media { background: var(--band-stories); }
.band--reviews .pub-card__media { background: var(--band-reviews); }
.band--blogs   .pub-card__media { background: var(--band-blogs); }
.band--music   .pub-card__media { background: var(--band-music); }

.pub-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.pub-card__title {
	font-family: var(--font-display);
	font-size: 1.1rem;
	margin: 0 0 4px;
	text-align: center;
}

.pub-card__subtitle {
	text-align: center;
	font-size: 0.95rem;
	margin: 0 0 10px;
}

.pub-card__excerpt {
	font-size: 0.9rem;
	text-align: center;
	line-height: 1.5;
}

.page-content {
	max-width: 1100px;
	margin: 0 auto;
	padding: 64px 24px;
	display: grid;
	grid-template-columns: 320px 1fr;
	gap: 48px;
}

.page-content img {
	width: 100%;
	height: auto;
}

.page-content .entry-content {
	line-height: 1.7;
}

@media (max-width: 780px) {
	.page-content {
		grid-template-columns: 1fr;
	}
}

.page-content--bio {
	display: block;
	max-width: 620px;
}

.newspaper {
	column-count: 2;
	column-gap: 40px;
	line-height: 1.7;
	font-family: var(--font-display);
	font-size: 1rem;
}

.newspaper__image {
	width: 100%;
	height: auto;
	display: block;
	margin: 0 0 16px;
}

@media (max-width: 780px) {
	.newspaper {
		column-count: 1;
	}
}

.site-footer {
	text-align: center;
	padding: 32px 24px;
	font-size: 0.85rem;
	background: #fff;
}
