/* ============================================================
   Kazakhstan Tour — Single Post Page
   Loaded only on single-kz_tour.php
   ============================================================ */

:root {
	--primary-color: #482913;
	--primary-dark:  #3a2110;
	--accent-blue:   #2b7a9c;
	--accent-green:  #3d8b6e;
	--text-dark:     #2d2d2d;
	--text-muted:    #6b6b6b;
	--border-color:  #e5e5e5;
	--bg-white:      #ffffff;
	--bg-light:      #f5f5f5;
	--shadow-sm:  0 2px 8px  rgba(72,41,19,.08);
	--shadow-md:  0 4px 16px rgba(72,41,19,.12);
	--shadow-lg:  0 8px 32px rgba(72,41,19,.16);
	--radius-sm: 8px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--grid-gap:    20px;
	--grid-gap-sm: 12px;
	--container-padding: 20px;
}

/* ---- Buttons ---- */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 20px;
	border-radius: var(--radius-sm);
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	border: none;
	transition: all .2s ease;
}

.btn:focus { outline: 2px solid var(--primary-color); outline-offset: 2px; }
.btn i     { font-size: 16px; flex-shrink: 0; }

.btn-whatsapp { background-color: #25D366; color: white; }
.btn-whatsapp:hover { background-color: #1da851; }

.btn-telegram { background-color: #0088cc; color: white; }
.btn-telegram:hover { background-color: #006daa; }

.btn-kakao { background-color: #FEE500; color: #3C1E1E; }
.btn-kakao:hover { background-color: #e6ce00; }

/* ---- Main container ---- */
.main-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 var(--container-padding) 100px;
}

/* ---- Hero ---- */
.hero {
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	overflow: hidden;
	margin-top: 24px;
	box-shadow: var(--shadow-sm);
}

.hero-banner {
	width: 100%;
	aspect-ratio: 3 / 1;
	overflow: hidden;
}

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

.hero-content { padding: 28px; }

.hero-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 16px;
}

.meta-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 6px 12px;
	background-color: var(--bg-light);
	border-radius: 20px;
	font-size: .85rem;
	color: var(--text-muted);
}

.meta-badge i { font-size: 14px; color: var(--primary-color); }

.hero-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	line-height: 1.2;
}

.hero-subtitle {
	font-size: 1.1rem;
	color: var(--text-muted);
	margin-bottom: 20px;
}

/* ---- Action bar ---- */
.action-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 20px 0;
	border-top: 1px solid var(--border-color);
	margin-top: 20px;
}

/* ---- Sections ---- */
.section { margin-top: 32px; }

.section-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-title i { font-size: 22px; color: var(--primary-color); }

/* ---- Highlights ---- */
.highlights-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--grid-gap);
}

.highlight-card {
	background-color: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: box-shadow .2s ease, transform .2s ease;
}

.highlight-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.highlight-icon {
	width: 44px;
	height: 44px;
	background-color: var(--bg-light);
	border-radius: var(--radius-sm);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.highlight-icon i { font-size: 20px; color: var(--primary-color); }

.highlight-text {
	font-weight: 600;
	color: var(--text-dark);
	font-size: .95rem;
}

/* ---- Itinerary ---- */
#itinerary { margin-top: 40px; }

.day-card {
	background-color: var(--bg-white);
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	overflow: hidden;
	margin-bottom: 24px;
	transition: box-shadow .2s ease;
}

.day-card:hover { box-shadow: var(--shadow-md); }

.day-header {
	background-color: var(--primary-color);
	color: white;
	padding: 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.day-number {
	font-size: .85rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	opacity: .9;
	display: block;
}

.day-title { font-size: 1.25rem; font-weight: 700; }

.day-book-btn {
	padding: 8px 16px;
	background-color: rgba(255,255,255,.2);
	color: white;
	border: 1px solid rgba(255,255,255,.4);
	border-radius: var(--radius-sm);
	font-size: .85rem;
	font-weight: 600;
	cursor: pointer;
	transition: all .2s ease;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 6px;
}

.day-book-btn:hover { background-color: rgba(255,255,255,.3); }

.day-content { padding: 24px; }

/* ---- Activity list ---- */
.activity-list { list-style: none; }

.activity-item {
	padding: 16px 0;
	border-bottom: 1px solid var(--border-color);
	display: flex;
	gap: 16px;
	align-items: flex-start;
}

.activity-item:last-child { border-bottom: none; }

.activity-marker {
	width: 12px;
	height: 12px;
	background-color: var(--primary-color);
	border-radius: 50%;
	flex-shrink: 0;
	margin-top: 6px;
	position: relative;
}

.activity-item:not(:last-child) .activity-marker::after {
	content: '';
	position: absolute;
	top: 16px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: calc(100% + 24px);
	background-color: var(--border-color);
}

.activity-content { flex: 1; }

.activity-title {
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 6px;
	font-size: 1rem;
}

.activity-desc {
	color: var(--text-muted);
	font-size: .95rem;
	line-height: 1.65;
}

/* ---- Info grid ---- */
.info-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: var(--grid-gap);
}

.info-card {
	background-color: var(--bg-white);
	border-radius: var(--radius-md);
	padding: 24px;
	box-shadow: var(--shadow-sm);
	border: 1px solid var(--border-color);
	transition: box-shadow .2s ease, transform .2s ease;
}

.info-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.info-card-title {
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--primary-color);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.info-card-title i { font-size: 18px; color: var(--primary-color); }

.info-card p {
	color: var(--text-muted);
	font-size: .9rem;
	line-height: 1.6;
}

/* ---- Responsive — tablet ---- */
@media (max-width: 1024px) {
	.highlights-grid,
	.info-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

/* ---- Responsive — mobile ---- */
@media (max-width: 768px) {
	:root {
		--container-padding: 12px;
		--grid-gap: 16px;
	}

	.hero-banner { aspect-ratio: 2 / 1; }
	.hero-title  { font-size: 1.5rem; }
	.hero-subtitle { font-size: 1rem; }

	.action-bar        { flex-direction: column; }
	.action-bar .btn   { width: 100%; justify-content: center; }

	.highlights-grid,
	.info-grid { grid-template-columns: 1fr; }

	.day-header  { padding: 14px 18px; }
	.day-title   { font-size: 1.1rem; }
	.day-content { padding: 18px; }
}

/* ---- Responsive — small mobile ---- */
@media (max-width: 480px) {
	.hero-title    { font-size: 1.3rem; }
	.meta-badge    { font-size: .8rem; padding: 4px 10px; }
	.activity-title { font-size: .95rem; }
	.activity-desc  { font-size: .88rem; }
}
