/* ── SHHS Custom Styles ── */

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
	-webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
	.shhs-feat-card,
	.shhs-feat-card .shhs-feat-img img {
		transition: none;
	}
	.shhs-feat-card:hover {
		transform: none;
	}
	.shhs-feat-card:hover .shhs-feat-img img {
		transform: none;
	}
}

/* ── Skip link ── */
.shhs-skip-link {
	position: fixed;
	top: 8px;
	left: 50%;
	transform: translateX(-50%) translateY(-200%);
	z-index: 10000;
	padding: 12px 24px;
	background: var(--wp--preset--color--bg-event-bar);
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-decoration: none;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0,0,0,0.3);
	transition: transform 0.2s ease;
}

.shhs-skip-link:focus {
	transform: translateX(-50%) translateY(0);
}

/* ── Global focus styles ── */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[role="button"]:focus-visible {
	outline: 3px solid var(--wp--preset--color--accent-warm);
	outline-offset: 2px;
}

/* ── Dark-background global: white text, no underlines ── */
.has-primary-deep-background-color,
.has-accent-background-color,
.has-bg-event-bar-background-color {
	color: #fff;
}

.has-primary-deep-background-color a,
.has-accent-background-color a,
.has-bg-event-bar-background-color a,
.has-primary-deep-background-color .wp-block-button__link,
.has-accent-background-color .wp-block-button__link,
.has-bg-event-bar-background-color .wp-block-button__link,
.has-primary-deep-background-color .wp-block-navigation-item__content,
.has-accent-background-color .wp-block-navigation-item__content,
.has-bg-event-bar-background-color .wp-block-navigation-item__content {
	color: #fff !important;
	text-decoration: none !important;
}

.has-primary-deep-background-color a:hover,
.has-accent-background-color a:hover,
.has-bg-event-bar-background-color a:hover,
.has-primary-deep-background-color a:focus-visible,
.has-accent-background-color a:focus-visible,
.has-bg-event-bar-background-color a:focus-visible {
	color: #fff !important;
	text-decoration: none !important;
	opacity: 0.85;
}

.has-primary-deep-background-color a:focus-visible,
.has-accent-background-color a:focus-visible,
.has-bg-event-bar-background-color a:focus-visible {
	outline: 3px solid #fff;
	outline-offset: 2px;
}

.has-primary-deep-background-color h1,
.has-primary-deep-background-color h2,
.has-primary-deep-background-color h3,
.has-primary-deep-background-color h4,
.has-primary-deep-background-color p,
.has-accent-background-color h1,
.has-accent-background-color h2,
.has-accent-background-color h3,
.has-accent-background-color h4,
.has-accent-background-color p,
.has-bg-event-bar-background-color h1,
.has-bg-event-bar-background-color h2,
.has-bg-event-bar-background-color h3,
.has-bg-event-bar-background-color h4,
.has-bg-event-bar-background-color p {
	color: #fff;
}

/* ── Navbar ── */
.shhs-navbar {
	display: flex;
	align-items: center;
	padding: 0 32px;
	height: 68px;
	gap: 6px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.shhs-navbar .wp-block-site-logo {
	line-height: 0;
	flex-shrink: 0;
	position: relative;
	z-index: 999;
}

.shhs-navbar .wp-block-site-logo img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	display: block;
	background: white;
	border-radius: 50%;
	padding: 6px;
	box-shadow: 0 0 0 2px rgba(255,255,255,0.3);
}

.shhs-navbar .wp-block-site-title {
	margin-right: auto;
	font-size: 18px;
}

.shhs-navbar .wp-block-navigation {
	gap: 6px;
}

/* ── Dropdown / Submenu ── */
.shhs-navbar .wp-block-navigation .wp-block-navigation__submenu-container {
	background: #3D4F5F;
	border: none;
	border-radius: 6px;
	padding: 6px 0;
	box-shadow: 0 4px 12px rgba(0,0,0,0.25);
	min-width: 180px;
}

.shhs-navbar .wp-block-navigation .wp-block-navigation__submenu-container a {
	color: #FFFFFF !important;
	padding: 8px 18px;
	font-size: 14px;
}

.shhs-navbar .wp-block-navigation .wp-block-navigation__submenu-container a:hover,
.shhs-navbar .wp-block-navigation .wp-block-navigation__submenu-container a:focus {
	background: rgba(255,255,255,0.12);
	color: #FFFFFF !important;
}

.shhs-nav-btn {
	font-size: 14px !important;
	font-weight: 600 !important;
	padding: 9px 18px !important;
	border-radius: 5px !important;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	white-space: nowrap;
	text-decoration: none !important;
}

.shhs-nav-btn--outline {
	border: 1.5px solid rgba(255,255,255,0.5) !important;
	background: transparent !important;
	color: #fff !important;
}

.shhs-nav-btn--outline:hover {
	border-color: #fff !important;
	background: rgba(255,255,255,0.1) !important;
}

.shhs-nav-btn--donate {
	background: var(--wp--preset--color--accent-warm) !important;
	color: #fff !important;
	border: none !important;
	padding: 9px 22px !important;
}

.shhs-nav-btn--donate:hover {
	background: var(--wp--preset--color--accent-warm-hover) !important;
}

/* ── Event Spotlight Bar ── */
.shhs-event-bar {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 14px 32px;
}

.shhs-event-badge {
	background: var(--wp--preset--color--accent-warm);
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	padding: 5px 14px;
	border-radius: 12px;
	white-space: nowrap;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	flex-shrink: 0;
	text-decoration: none;
}

.shhs-event-badge:hover {
	color: #fff;
	opacity: 0.85;
}

.shhs-event-thumb {
	flex-shrink: 0;
	line-height: 0;
}

.shhs-event-thumb .shhs-event-thumb-img {
	width: 90px;
	height: 90px;
	max-width: 90px;
	max-height: 90px;
	object-fit: cover;
	border-radius: 50%;
}

.shhs-event-bar .shhs-event-text {
	font-size: 16px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
}

.shhs-event-bar .shhs-event-text:hover {
	color: var(--wp--preset--color--sand);
}

.shhs-event-bar .shhs-event-sub {
	font-size: 15px;
	color: rgba(255,255,255,0.85);
	font-weight: 400;
	margin-top: 3px;
	font-family: var(--wp--preset--font-family--accent);
	font-style: italic;
}

.shhs-event-cta {
	font-size: 15px;
	color: #fff !important;
	white-space: nowrap;
	text-decoration: none !important;
	font-weight: 600;
	flex-shrink: 0;
	margin-left: auto;
}

.shhs-event-cta:hover {
	color: var(--wp--preset--color--sand) !important;
}

/* ── Hero ── */
.shhs-hero {
	display: flex;
	align-items: flex-start;
	gap: 48px;
	padding: 56px 32px 16px;
	max-width: 1200px;
	margin: 0 auto;
}

.shhs-hero-text {
	flex: 1;
}

.shhs-eyebrow {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--accent);
	margin-bottom: 14px;
}

.shhs-hero-sub {
	font-size: 18px;
	color: var(--wp--preset--color--text-dark);
	line-height: 1.7;
	max-width: 520px;
	font-family: var(--wp--preset--font-family--accent);
}

.shhs-hero-img {
	flex-shrink: 0;
	width: 420px;
	aspect-ratio: 4 / 3;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 6px 28px rgba(0,0,0,0.1);
}

.shhs-hero-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ── Section Headers ── */
.shhs-section-hed {
	font-family: var(--wp--preset--font-family--body);
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--wp--preset--color--accent);
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 32px 0 18px;
	margin: 0;
	line-height: 1.4;
}

.shhs-section-hed::after {
	content: '';
	flex: 1;
	height: 1px;
	background: var(--wp--preset--color--sand);
}

/* ── Feature Cards ── */
.shhs-feat-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	align-items: start;
}

.shhs-feat-grid > * {
	margin-top: 0;
	margin-bottom: 0;
}

.shhs-feat-card {
	background: var(--wp--preset--color--bg-card);
	border: 1px solid rgba(212,204,192,0.5);
	border-radius: 10px;
	overflow: hidden;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
	display: flex;
	flex-direction: column;
}

.shhs-feat-card:hover {
	box-shadow: 0 8px 32px rgba(0,0,0,0.1);
	transform: translateY(-3px);
}

.shhs-feat-card .shhs-feat-img {
	aspect-ratio: 4 / 3;
	overflow: hidden;
	margin: 0;
}

.shhs-feat-card .shhs-feat-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.shhs-feat-card:hover .shhs-feat-img img {
	transform: scale(1.05);
}

.shhs-feat-body {
	padding: 18px 20px 20px;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.shhs-feat-body p:not(.shhs-feat-link) {
	flex: 1;
}

.shhs-feat-body h3 {
	font-size: 19px;
	font-weight: 500;
	margin-top: 0;
	margin-bottom: 8px;
}

.shhs-feat-body p {
	font-size: 15px;
	line-height: 1.6;
}

.shhs-feat-link {
	font-size: 14px;
	margin-top: 12px;
	margin-bottom: 0;
}

.shhs-feat-link a {
	color: var(--wp--preset--color--accent-warm) !important;
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 500;
}

.shhs-feat-link a:hover {
	color: var(--wp--preset--color--accent-warm-hover) !important;
}

/* ── Walking Tour Band ── */
.shhs-tour-band {
	display: flex;
	align-items: stretch;
	overflow: hidden;
}

.shhs-tour-content {
	flex: 1;
	padding: 40px 36px;
	color: #fff;
}

.shhs-tour-content .shhs-eyebrow {
	color: rgba(255,255,255,0.9);
}

.shhs-tour-content h2 {
	color: #fff;
	font-size: 26px;
	margin-bottom: 12px;
}

.shhs-tour-content p {
	font-size: 16px;
	color: #fff;
	line-height: 1.65;
	max-width: 500px;
	font-family: var(--wp--preset--font-family--accent);
}

.shhs-tour-cta {
	display: inline-block;
	margin-top: 18px;
	font-size: 15px;
	color: #fff !important;
	background: rgba(255,255,255,0.18);
	padding: 11px 26px;
	border-radius: 5px;
	text-decoration: none !important;
	font-weight: 600;
	border: 1.5px solid rgba(255,255,255,0.5);
	letter-spacing: 0.02em;
	transition: background 0.2s;
}

.shhs-tour-cta:hover {
	background: rgba(255,255,255,0.28);
}

.shhs-tour-img {
	width: 380px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	padding: 24px;
}

.shhs-tour-img img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 10px;
}

/* ── Timeline ── */
.shhs-timeline-track {
	position: relative;
	padding: 0 0 0 32px;
}

.shhs-timeline-track::before {
	content: '';
	position: absolute;
	left: 7px;
	top: 4px;
	bottom: 4px;
	width: 2px;
	background: var(--wp--preset--color--sand);
}

.shhs-timeline-item {
	position: relative;
	padding: 0 0 28px 0;
}

.shhs-timeline-item:last-child {
	padding-bottom: 0;
}

.shhs-timeline-dot {
	position: absolute;
	left: -32px;
	top: 4px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--wp--preset--color--accent);
	border: 3px solid var(--wp--preset--color--bg-main);
	box-shadow: 0 0 0 2px var(--wp--preset--color--accent);
}

.shhs-timeline-year {
	font-family: var(--wp--preset--font-family--display);
	font-size: 20px;
	font-weight: 600;
	color: var(--wp--preset--color--text-dark);
	margin-bottom: 4px;
}

.shhs-timeline-desc {
	font-size: 16px;
	color: var(--wp--preset--color--text-dark);
	line-height: 1.65;
	max-width: 600px;
}

/* ── Articles Band ── */
.shhs-articles-inner {
	display: grid;
	grid-template-columns: 340px 1fr;
	gap: 32px;
	align-items: center;
	max-width: 900px;
}

.shhs-articles-thumb {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 10px;
}

.shhs-articles-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.shhs-articles-eyebrow {
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	color: #fff;
	margin-bottom: 10px;
}

.shhs-articles-title {
	font-family: var(--wp--preset--font-family--display);
	font-size: 24px;
	font-weight: 500;
	color: #fff;
	line-height: 1.3;
	margin-bottom: 12px;
}

.shhs-articles-excerpt {
	font-size: 16px;
	color: rgba(255,255,255,0.9);
	line-height: 1.7;
	font-family: var(--wp--preset--font-family--accent);
}

.shhs-articles-cta {
	display: inline-block;
	margin-top: 16px;
	font-size: 16px;
	color: #fff !important;
	text-decoration: none !important;
	font-weight: 600;
}

.shhs-articles-cta:hover {
	color: var(--wp--preset--color--bg-main) !important;
}

/* ── Newsletter ── */
.shhs-newsletter {
	text-align: center;
	border-top: 1px solid var(--wp--preset--color--sand);
}

.shhs-newsletter h2 {
	font-size: 28px;
}

.shhs-newsletter .shhs-nl-sub {
	font-family: var(--wp--preset--font-family--accent);
	font-style: italic;
	margin-bottom: 24px;
}

.shhs-nl-form {
	display: flex;
	gap: 10px;
	max-width: 440px;
	margin: 0 auto;
}

.shhs-nl-form input[type="email"] {
	flex: 1;
	padding: 13px 16px;
	border: 1.5px solid #999;
	border-radius: 6px;
	font-size: 16px;
	background: #fff;
	font-family: var(--wp--preset--font-family--body);
	outline: none;
	transition: border-color 0.2s;
}

.shhs-nl-form input[type="email"]:focus {
	border-color: var(--wp--preset--color--accent);
	box-shadow: 0 0 0 3px rgba(92,107,125,0.15);
}

.shhs-nl-form button {
	background: var(--wp--preset--color--primary-deep);
	color: #fff;
	border: none;
	padding: 13px 26px;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	font-family: var(--wp--preset--font-family--body);
	white-space: nowrap;
	transition: background 0.2s;
}

.shhs-nl-form button:hover {
	background: var(--wp--preset--color--primary-mid);
}

.shhs-nl-fine {
	font-size: 15px;
	color: #666;
	margin-top: 16px;
}

/* ── Footer ── */
.shhs-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 28px 32px;
}

.shhs-footer .wp-block-site-title {
	font-size: 16px;
}

.shhs-footer-links a {
	font-size: 15px;
	color: rgba(255,255,255,0.85) !important;
	text-decoration: none !important;
}

.shhs-footer-links a:hover {
	color: #fff !important;
}

/* ── MOBILE ── */
@media (max-width: 768px) {
	.shhs-navbar {
		padding: 0 16px;
		height: 56px;
	}

	.shhs-navbar .shhs-nav-btn--outline {
		display: none;
	}

	.shhs-event-bar {
		padding: 10px 16px;
		gap: 10px;
	}

	.shhs-event-bar .shhs-event-thumb {
		display: none;
	}

	.shhs-hero {
		flex-direction: column-reverse;
		padding: 32px 16px 28px;
		gap: 24px;
	}



	.shhs-hero-img {
		width: 100%;
	}

	.shhs-hero h1 {
		font-size: 30px;
	}

	.shhs-hero-sub {
		font-size: 16px;
	}

	.shhs-feat-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.shhs-tour-band {
		flex-direction: column;
	}

	.shhs-tour-content {
		padding: 32px 16px;
	}

	.shhs-tour-img {
		width: 100%;
		padding: 0 16px 16px;
	}

	.shhs-articles-inner {
		grid-template-columns: 1fr;
		gap: 18px;
		max-width: none;
	}

	.shhs-nl-form {
		flex-direction: column;
	}

	.shhs-footer {
		flex-direction: column;
		gap: 14px;
		text-align: center;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.shhs-hero-img {
		width: 300px;
	}

	.shhs-feat-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.shhs-tour-img {
		width: 300px;
	}
}
