/**
 * Blue Hen Travel — Custom Styles
 * Child theme of Astra
 */

:root {
	--bht-primary: #003366;
	--bht-primary-dark: #002244;
	--bht-accent: #f4a024;
	--bht-accent-hover: #e08f10;
	--bht-text: #333333;
	--bht-text-light: #666666;
	--bht-bg: #ffffff;
	--bht-bg-alt: #f5f8fc;
	--bht-border: #dde4ee;
	--bht-radius: 8px;
	--bht-shadow: 0 4px 20px rgba(0, 51, 102, 0.1);
	--bht-container: 1140px;
}

/* Layout */
.bht-container {
	max-width: var(--bht-container);
	margin: 0 auto;
	padding: 0 20px;
}

.bht-visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* Buttons */
.bht-btn {
	display: inline-block;
	padding: 12px 28px;
	border-radius: var(--bht-radius);
	font-weight: 600;
	text-decoration: none;
	transition: background 0.2s, transform 0.2s;
	cursor: pointer;
	border: none;
	font-size: 1rem;
}

.bht-btn--primary {
	background: var(--bht-accent);
	color: var(--bht-primary-dark);
}

.bht-btn--primary:hover,
.bht-btn--primary:focus {
	background: var(--bht-accent-hover);
	color: var(--bht-primary-dark);
	transform: translateY(-1px);
}

/* Hero */
.bht-hero {
	background: linear-gradient(135deg, var(--bht-primary) 0%, #004488 100%);
	color: #fff;
	padding: 80px 0;
}

.bht-hero .bht-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.bht-hero__title {
	font-size: 2.75rem;
	line-height: 1.2;
	margin-bottom: 16px;
	color: #fff;
}

.bht-hero__subtitle {
	font-size: 1.15rem;
	line-height: 1.6;
	margin-bottom: 28px;
	opacity: 0.9;
}

.bht-hero__image img {
	width: 100%;
	height: auto;
	border-radius: var(--bht-radius);
	box-shadow: var(--bht-shadow);
}

/* Sections */
.bht-section {
	padding: 70px 0;
}

.bht-section--intro {
	background: var(--bht-bg-alt);
}

.bht-section--testimonials {
	background: var(--bht-bg);
}

.bht-section--contact {
	background: var(--bht-bg-alt);
}

.bht-section__title {
	font-size: 2rem;
	color: var(--bht-primary);
	text-align: center;
	margin-bottom: 12px;
}

.bht-section__subtitle {
	text-align: center;
	color: var(--bht-text-light);
	margin-bottom: 40px;
	font-size: 1.05rem;
}

/* Features */
.bht-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bht-feature {
	text-align: center;
	padding: 30px 20px;
	background: var(--bht-bg);
	border-radius: var(--bht-radius);
	box-shadow: var(--bht-shadow);
}

.bht-feature__icon {
	font-size: 2.5rem;
	display: block;
	margin-bottom: 12px;
}

.bht-feature h3 {
	color: var(--bht-primary);
	margin-bottom: 8px;
}

.bht-feature p {
	color: var(--bht-text-light);
	line-height: 1.6;
}

/* Testimonials */
.bht-testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 24px;
}

.bht-testimonial-card {
	background: var(--bht-bg);
	border: 1px solid var(--bht-border);
	border-radius: var(--bht-radius);
	padding: 28px;
	box-shadow: var(--bht-shadow);
}

.bht-testimonial-card__avatar img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	object-fit: cover;
	margin-bottom: 16px;
}

.bht-testimonial-card__rating {
	color: var(--bht-accent);
	font-size: 1.1rem;
	margin-bottom: 12px;
}

.bht-testimonial-card__quote {
	font-style: italic;
	color: var(--bht-text);
	line-height: 1.7;
	margin: 0 0 16px;
	border: none;
	padding: 0;
}

.bht-testimonial-card__quote p {
	margin: 0;
}

.bht-testimonial-card__author {
	display: block;
	font-style: normal;
}

.bht-testimonial-card__location {
	display: block;
	color: var(--bht-text-light);
	font-size: 0.9rem;
}

/* Services */
.bht-services-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.bht-service-box {
	background: var(--bht-bg);
	border: 1px solid var(--bht-border);
	border-radius: var(--bht-radius);
	padding: 32px 24px;
	text-align: center;
	box-shadow: var(--bht-shadow);
	transition: transform 0.2s;
}

.bht-service-box:hover {
	transform: translateY(-4px);
}

.bht-service-box__image img {
	width: 100%;
	height: 180px;
	object-fit: cover;
	border-radius: var(--bht-radius);
	margin-bottom: 16px;
}

.bht-service-box__icon {
	font-size: 3rem;
	margin-bottom: 16px;
}

.bht-service-box__title {
	color: var(--bht-primary);
	font-size: 1.35rem;
	margin-bottom: 12px;
}

.bht-service-box__description {
	color: var(--bht-text-light);
	line-height: 1.6;
}

/* Page hero */
.bht-page-hero {
	background: var(--bht-primary);
	color: #fff;
	padding: 60px 0;
	text-align: center;
}

.bht-page-hero__title {
	color: #fff;
	font-size: 2.5rem;
	margin-bottom: 12px;
}

.bht-page-hero__excerpt {
	font-size: 1.15rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

/* CTA */
.bht-cta {
	text-align: center;
	background: var(--bht-primary);
	color: #fff;
	padding: 50px 30px;
	border-radius: var(--bht-radius);
}

.bht-cta h2 {
	color: #fff;
	margin-bottom: 12px;
}

.bht-cta p {
	opacity: 0.9;
	margin-bottom: 24px;
}

/* Contact */
.bht-contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.bht-contact-form-wrapper {
	background: var(--bht-bg);
	padding: 30px;
	border-radius: var(--bht-radius);
	box-shadow: var(--bht-shadow);
}

.bht-form-row {
	margin-bottom: 18px;
}

.bht-form-row label {
	display: block;
	font-weight: 600;
	margin-bottom: 6px;
	color: var(--bht-primary);
}

.bht-form-row input,
.bht-form-row textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--bht-border);
	border-radius: var(--bht-radius);
	font-size: 1rem;
	font-family: inherit;
}

.bht-form-row input:focus,
.bht-form-row textarea:focus {
	outline: 2px solid var(--bht-accent);
	border-color: var(--bht-accent);
}

.bht-notice {
	padding: 12px 16px;
	border-radius: var(--bht-radius);
	margin-bottom: 20px;
}

.bht-notice--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.bht-notice--error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.bht-map-wrapper {
	border-radius: var(--bht-radius);
	overflow: hidden;
	box-shadow: var(--bht-shadow);
}

.bht-map-embed {
	display: block;
}

.bht-empty {
	text-align: center;
	color: var(--bht-text-light);
	font-style: italic;
}

/* Responsive */
@media (max-width: 900px) {
	.bht-hero .bht-container,
	.bht-features,
	.bht-services-grid,
	.bht-contact-grid {
		grid-template-columns: 1fr;
	}

	.bht-hero__title {
		font-size: 2rem;
	}

	.bht-hero {
		padding: 50px 0;
	}
}
