/* Lanka Vacation Tours & Travels - public site styles */
:root {
	--navy: #0b3d5c;
	--navy-dark: #072a3f;
	--teal: #1c98c5;
	--teal-dark: #157a9e;
	--gold: #f5b301;
	--bg-light: #f6f9fb;
	--white: #ffffff;
	--text: #2b2f36;
	--text-muted: #6b7480;
	--border: #e5eaee;
	--radius: 6px;
	--radius-lg: 10px;
	--shadow: 0 4px 18px rgba(11, 61, 92, 0.09);
	--shadow-hover: 0 10px 28px rgba(11, 61, 92, 0.16);
}

* { box-sizing: border-box; }

body {
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	color: var(--text);
	background: var(--white);
	line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	background: var(--teal);
	color: var(--white);
	border: 2px solid var(--teal);
	padding: 12px 26px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: var(--radius);
	transition: background 0.2s ease, transform 0.15s ease;
}
.btn:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: var(--white); transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); color: var(--white); }
.btn--block { display: flex; width: 100%; margin-bottom: 10px; }

/* ---------- Header ---------- */
.site-header { background: var(--navy); position: sticky; top: 0; z-index: 500; }
.site-header__inner { max-width: 1240px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 30px; }

.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--white); margin-right: auto; }
.site-logo__icon { font-size: 26px; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1.2; }
.site-logo__text strong { font-size: 15px; }
.site-logo__text small { font-size: 10px; letter-spacing: 0.1em; opacity: 0.75; text-transform: uppercase; }

.site-nav { display: flex; gap: 26px; }
.site-nav a { color: rgba(255, 255, 255, 0.85); text-decoration: none; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; padding-bottom: 4px; border-bottom: 2px solid transparent; }
.site-nav a:hover, .site-nav a.is-active { color: var(--white); border-bottom-color: var(--teal); }

.site-header__cta { flex-shrink: 0; padding: 10px 22px; }

/* ---------- Hero ---------- */
.hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--teal-dark) 130%);
	color: var(--white);
	overflow: hidden;
}
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 80% 30%, rgba(28, 152, 197, 0.35), transparent 55%); }
.hero__content { position: relative; z-index: 1; max-width: 640px; padding: 60px 24px; margin: 0 auto; width: 100%; }
.hero__eyebrow { display: inline-block; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; font-size: 13px; margin-bottom: 14px; }
.hero h1 { font-size: clamp(30px, 5vw, 50px); font-weight: 800; text-transform: uppercase; line-height: 1.15; margin: 0 0 16px; }
.hero p { font-size: 16px; color: rgba(255, 255, 255, 0.85); margin: 0 0 26px; max-width: 480px; }

/* ---------- Stats bar ---------- */
.stats-bar { background: var(--navy); border-top: 1px solid rgba(255, 255, 255, 0.1); }
.stats-bar__inner { max-width: 1000px; margin: 0 auto; padding: 34px 24px; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 20px; text-align: center; }
.stats-bar__item strong { display: block; font-size: 30px; font-weight: 800; color: var(--white); }
.stats-bar__item span { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255, 255, 255, 0.7); }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--alt { background: var(--bg-light); }
.section__inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section__title { position: relative; color: var(--navy); font-size: 24px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; margin: 0 0 32px; padding-bottom: 14px; text-align: center; }
.section__title::after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; height: 3px; background: var(--teal); }
.section__cta { text-align: center; margin-top: 30px; }

.empty-state { grid-column: 1 / -1; text-align: center; color: var(--text-muted); padding: 30px; background: var(--bg-light); border-radius: var(--radius); }

/* ---------- Grid & cards ---------- */
.grid { display: grid; gap: 28px; grid-template-columns: repeat(3, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow 0.25s ease, transform 0.25s ease; display: flex; flex-direction: column; }
.card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.card__media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-light); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card__media img { transform: scale(1.06); }
.card__media-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 40px; background: linear-gradient(135deg, var(--navy) 0%, var(--teal-dark) 100%); }
.card__badge { position: absolute; top: 12px; left: 12px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; padding: 6px 12px; border-radius: 4px; }
.card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex-grow: 1; }
.card__title { margin: 0 0 10px; font-size: 17px; font-weight: 800; letter-spacing: 0.02em; text-transform: uppercase; color: var(--navy); }
.card__excerpt { margin: 0 0 16px; font-size: 14px; color: var(--text-muted); flex-grow: 1; }
.card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 10px; }
.card__price { display: flex; flex-direction: column; line-height: 1.2; }
.card__price-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; }
.card__price-value { font-size: 20px; font-weight: 800; color: var(--navy); }
.card__pill { font-size: 11px; font-weight: 700; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: #eef6fa; color: var(--teal-dark); white-space: nowrap; }
.card .btn { align-self: flex-start; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--navy); color: var(--white); text-align: center; }
.cta-banner__inner { max-width: 640px; margin: 0 auto; padding: 70px 24px; }
.cta-banner h2 { font-size: 28px; text-transform: uppercase; margin: 0 0 14px; }
.cta-banner p { color: rgba(255, 255, 255, 0.8); margin: 0 0 26px; }

/* ---------- Page hero (archive / single) ---------- */
.page-hero { position: relative; min-height: 300px; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; background-color: var(--navy-dark); padding: 40px 20px; }
.page-hero--tall { min-height: 400px; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 42, 63, 0.55) 0%, rgba(7, 42, 63, 0.8) 100%); }
.page-hero__content { position: relative; z-index: 1; max-width: 760px; }
.page-hero__eyebrow { display: inline-block; color: var(--gold); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 13px; margin-bottom: 10px; }
.page-hero h1 { color: var(--white); font-size: clamp(28px, 4vw, 46px); font-weight: 800; text-transform: uppercase; margin: 0 0 12px; }
.page-hero__subtitle { color: rgba(255, 255, 255, 0.9); font-size: 17px; margin: 0; }

/* ---------- Filter tabs ---------- */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 36px; }
.filter-tabs a { display: inline-block; padding: 10px 22px; border: 2px solid var(--navy); border-radius: 999px; color: var(--navy); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; text-decoration: none; }
.filter-tabs a:hover, .filter-tabs a.is-active { background: var(--navy); color: var(--white); }

/* ---------- Info bar ---------- */
.info-bar { background: var(--navy); }
.info-bar__inner { max-width: 1200px; margin: 0 auto; padding: 18px 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 24px; justify-content: center; }
.info-bar__item { color: var(--white); text-align: center; }
.info-bar__item strong { display: block; font-size: 15px; }
.info-bar__item small { display: block; font-size: 11px; color: rgba(255, 255, 255, 0.65); text-transform: uppercase; letter-spacing: 0.03em; }
.info-bar__cta { margin-left: auto; }

/* ---------- Single layout ---------- */
.single-layout { max-width: 1200px; margin: 0 auto; padding: 50px 24px; display: grid; grid-template-columns: 1fr 320px; gap: 50px; align-items: start; }
.content-section { margin-bottom: 44px; }
.content-section__title { position: relative; color: var(--navy); font-size: 22px; font-weight: 800; text-transform: uppercase; margin: 0 0 22px; padding-bottom: 14px; }
.content-section__title::after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background: var(--teal); }
.prose { font-size: 15px; line-height: 1.8; }

.checklist { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 24px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; }
.checklist__icon { color: var(--teal); font-weight: 700; }

.itinerary { list-style: none; margin: 0; padding: 0; }
.itinerary__day { display: flex; gap: 20px; padding-bottom: 28px; position: relative; }
.itinerary__day::before { content: ""; position: absolute; left: 20px; top: 44px; bottom: 0; width: 2px; background: var(--border); }
.itinerary__day:last-child::before { display: none; }
.itinerary__marker { flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; z-index: 1; }
.itinerary__body h3 { margin: 4px 0 8px; font-size: 16px; color: var(--navy); }
.itinerary__body p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.inc-exc { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.inc-exc h4 { margin: 0 0 12px; font-size: 15px; text-transform: uppercase; }
.inc-exc__col--in h4 { color: var(--teal-dark); }
.inc-exc__col--out h4 { color: #b3492f; }
.inc-exc ul { list-style: none; margin: 0; padding: 0; }
.inc-exc li { display: flex; gap: 8px; font-size: 14px; margin-bottom: 8px; }
.inc-exc__col--in li span { color: var(--teal); }
.inc-exc__col--out li span { color: #b3492f; }

.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid__item { display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3; }
.gallery-grid__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.gallery-grid__item:hover img { transform: scale(1.05); }

.map-embed iframe { width: 100%; height: 360px; border: 0; border-radius: var(--radius-lg); }

.single-layout__sidebar { position: sticky; top: 90px; }
.booking-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); padding: 26px; }
.booking-box__price { text-align: center; margin-bottom: 18px; padding-bottom: 18px; border-bottom: 1px solid var(--border); }
.booking-box__label { display: block; font-size: 12px; text-transform: uppercase; color: var(--text-muted); }
.booking-box__value { display: block; font-size: 30px; font-weight: 800; color: var(--navy); }
.booking-box__note { display: block; font-size: 12px; color: var(--text-muted); }

/* ---------- Lightbox ---------- */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(7, 20, 30, 0.92); display: flex; align-items: center; justify-content: center; z-index: 10000; padding: 30px; }
.lightbox-overlay img { max-width: 100%; max-height: 90vh; border-radius: 4px; }
.lightbox-overlay__close { position: absolute; top: 20px; right: 30px; color: var(--white); font-size: 34px; line-height: 1; cursor: pointer; background: none; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: rgba(255, 255, 255, 0.8); }
.site-footer__inner { max-width: 1200px; margin: 0 auto; padding: 56px 24px 30px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; margin: 0 0 16px; }
.site-footer__col a { display: block; color: rgba(255, 255, 255, 0.75); text-decoration: none; font-size: 13px; margin-bottom: 10px; }
.site-footer__col a:hover { color: var(--teal); }
.site-footer__col p { font-size: 13px; margin: 0 0 8px; }
.site-logo--footer { margin-bottom: 16px; }
.site-footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); text-align: center; padding: 18px; font-size: 12px; color: rgba(255, 255, 255, 0.5); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
	.site-nav { display: none; }
	.grid, .grid--3 { grid-template-columns: repeat(2, 1fr); }
	.single-layout { grid-template-columns: 1fr; }
	.single-layout__sidebar { position: static; }
	.inc-exc { grid-template-columns: 1fr; }
	.checklist { grid-template-columns: 1fr; }
	.site-footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
	.grid, .grid--3 { grid-template-columns: 1fr; }
	.gallery-grid { grid-template-columns: repeat(2, 1fr); }
	.info-bar__inner { justify-content: flex-start; }
	.info-bar__cta { margin-left: 0; width: 100%; }
}
