/* ==========================================================================
   Header
   ========================================================================== */
.hrc-site-header {
	background: var(--hrc-color-bg);
	border-bottom: 1px solid var(--hrc-color-border);
	position: sticky;
	top: 0;
	z-index: 999;
}
.hrc-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}
.hrc-logo-text { font-family: var(--hrc-font-heading); font-weight: 700; font-size: 22px; text-decoration: none; color: var(--hrc-color-text); }
.hrc-primary-nav { flex: 1; display: flex; justify-content: center; }
.hrc-nav-menu { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
.hrc-nav-menu a { color: var(--hrc-color-text); text-decoration: none; font-weight: 500; font-size: 15px; }
.hrc-nav-menu a:hover { color: var(--hrc-color-primary); }
.hrc-header-cta { white-space: nowrap; }
.hrc-mobile-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.hrc-mobile-toggle span { width: 24px; height: 2px; background: var(--hrc-color-text); display: block; }

@media (max-width: 900px) {
	.hrc-primary-nav { display: none; }
	.hrc-primary-nav.hrc-nav-open { display: block; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px 24px; box-shadow: var(--hrc-shadow-md); }
	.hrc-nav-open .hrc-nav-menu { flex-direction: column; gap: 16px; }
	.hrc-header-cta { display: none; }
	.hrc-mobile-toggle { display: flex; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.hrc-site-footer { background: var(--hrc-color-text); color: #eee; margin-top: 64px; }
.hrc-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; padding: 56px 24px; }
.hrc-footer-col h4 { color: #fff; font-size: 15px; margin-bottom: 16px; }
.hrc-footer-col p, .hrc-footer-col li { color: #cfcfcf; font-size: 14px; }
.hrc-footer-menu, .hrc-footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.hrc-footer-menu a { color: #cfcfcf; text-decoration: none; }
.hrc-footer-menu a:hover { color: #fff; }
.hrc-social-links { display: flex; flex-wrap: wrap; gap: 10px; }
.hrc-social-links a { color: #cfcfcf; text-decoration: none; font-size: 13px; border: 1px solid #555; padding: 6px 12px; border-radius: 999px; }
.hrc-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; text-align: center; font-size: 13px; color: #999; }

@media (max-width: 900px) {
	.hrc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.hrc-footer-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Generic page / blog
   ========================================================================== */
.hrc-page-content, .hrc-page { padding: 48px 0; }
.hrc-page-title { font-size: 34px; margin-bottom: 16px; }
.hrc-entry-content { line-height: 1.75; font-size: 16px; }
.hrc-entry-content p { margin-bottom: 1.2em; }

.hrc-blog-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; padding: 48px 0; }
.hrc-blog-card { margin-bottom: 40px; }
.hrc-blog-card-img img { border-radius: var(--hrc-radius-md); }
.hrc-blog-meta { display: flex; gap: 14px; font-size: 13px; color: var(--hrc-color-text-muted); margin: 12px 0 6px; }
.hrc-blog-card-title { font-size: 22px; margin: 0 0 10px; }
.hrc-blog-card-title a { color: var(--hrc-color-text); text-decoration: none; }
.hrc-blog-excerpt { color: var(--hrc-color-text-muted); margin-bottom: 16px; }
.hrc-widget { margin-bottom: 32px; }
.hrc-widget-title { font-size: 16px; margin-bottom: 12px; }
.hrc-single-post-thumb img { border-radius: var(--hrc-radius-md); margin: 20px 0; }
.hrc-author-box { display: flex; gap: 16px; align-items: center; background: var(--hrc-color-bg-alt); padding: 20px; border-radius: var(--hrc-radius-md); margin: 32px 0; }
.hrc-author-box img { border-radius: 50%; }
.hrc-related-posts { margin-top: 40px; }

@media (max-width: 900px) {
	.hrc-blog-layout { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Single Room / Car
   ========================================================================== */
.hrc-single-item { padding: 40px 0; }
.hrc-single-main-img { width: 100%; border-radius: var(--hrc-radius-md); aspect-ratio: 16/8; object-fit: cover; }
.hrc-thumb-strip { display: flex; gap: 12px; margin-top: 12px; overflow-x: auto; }
.hrc-thumb-strip img { width: 110px; height: 80px; object-fit: cover; border-radius: var(--hrc-radius-sm); flex-shrink: 0; }

.hrc-single-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; margin-top: 32px; }
.hrc-badge-inline { position: static; display: inline-block; background: var(--hrc-color-primary); margin-bottom: 12px; }
.hrc-single-meta { display: flex; flex-wrap: wrap; gap: 16px; color: var(--hrc-color-text-muted); font-size: 14px; margin-bottom: 20px; }
.hrc-amenities-full li { font-size: 13px; }

.hrc-single-sidebar { position: relative; }
.hrc-booking-box { position: sticky; top: 100px; background: var(--hrc-color-bg-alt); border-radius: var(--hrc-radius-md); padding: 28px; }
.hrc-price-large { font-size: 28px; margin-bottom: 20px; }

@media (max-width: 900px) {
	.hrc-single-layout { grid-template-columns: 1fr; }
	.hrc-booking-box { position: static; }
}

/* Elementor-built pages should render edge-to-edge — no theme padding wrapper */
.hrt-elementor-built .hrc-entry-content { padding: 0; }
