/* =========================================================
   HERO (HOME PAGE)
   ========================================================= */
.hero {
	position: relative;
	height: 75vh;
	display: flex;
	align-items: center;
	overflow: hidden;
	margin-left: 5%;
}

.hero-inner {
	padding-inline: min(40px, 5vw);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.hero-image {
	position: absolute;
	top: 0;
	right: 0;
	width: 55vw;
	height: 100%;
	background: url("images/main-page.png") center right / cover no-repeat;
	border-top-left-radius: 40px;
	border-bottom-left-radius: 40px;
}

.hero-content {
	flex: 1 1 45%;
	position: relative;
	z-index: 1;
	padding-right: 18px;
	max-width: 40vw;
}

.hero-content h1 {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 15px;
	line-height: 1.2;
	font-weight: 800;
	color: #0b1629;
}

.hero-content p {
	font-size: clamp(1rem, 1.6vw, 1.2rem);
	line-height: 1.6;
}

.hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	margin-top: 6px;
}

.hero-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 11px 24px;
	border-radius: 999px;
	background: var(--accent);
	color: #ffffff;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
	border: none;
	box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.hero-button:hover {
	background: #1d4ed8;
	transform: translateY(-1px);
	box-shadow: 0 18px 40px rgba(37, 99, 235, 0.45);
}

.hero-actions a.hero-secondary {
	font-size: 0.9rem;
	color: var(--text-main);
	padding: 9px 20px;
	border-radius: 999px;
	background: #ffffffb3;
	border: 1px solid var(--border-subtle);
}

/* =========================================================
   TYPOGRAPHY & INTRO SECTIONS
   ========================================================= */
main h3 {
	font-size: 1.15rem;
	margin-top: 26px;
	margin-bottom: 8px;
}

.quote-section p {
	font-size: clamp(1.2rem, 2vw, 3.5rem);
	max-width: 80vw;
	color: black;
	margin: 120px 0;
	text-align: center;
}

main > .container > p:first-of-type {
	max-width: 80vw;
	color: black;
	margin: 120px 0;
}

/* =========================================================
   FACTS SECTION
   ========================================================= */
.facts {
	padding: 60px 20px;
	text-align: center;
}

.facts h2 {
	font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
	margin-bottom: 35px;
	font-weight: 700;
	letter-spacing: -0.5px;
}

.fact-grid {
	display: grid;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	max-width: 900px;
	margin: 0 auto;
}

.fact-card {
	padding: 18px 16px;
	border-radius: 10px;
	font-size: 1.05rem;
	line-height: 1.4;
	background: var(--card-bg);
	box-shadow: var(--shadow-card);
	align-content: center;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) {
	.fact-card:hover {
		transform: translateY(-5px);
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	}
}

/* =========================================================
   PHOTO STRIP & CAROUSEL
   ========================================================= */
.photo-strip,
.photo-strip-mobile {
	padding-top: 40px;
	background: #fff;
	text-align: center;
}

.photo-strip h2,
.photo-strip-mobile h2 {
	font-size: clamp(2rem, 3vw + 1rem, 2.6rem);
	margin-bottom: 20px;
}

.carousel,
.carousel-mobile {
	display: flex;
	gap: 18px;
	overflow-x: auto;
	padding-bottom: 20px;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
	display: none;
}

.carousel img,
.carousel-mobile img {
	flex: 0 0 70%;
	max-width: 400px;
	height: 220px;
	object-fit: cover;
	border-radius: var(--radius-md);
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	transition: transform 0.25s ease;
}

@media (hover: hover) {
	.carousel img:hover,
	.carousel-mobile img:hover {
		transform: scale(1.03);
	}
}

/* =========================================================
   INFO CARDS
   ========================================================= */
.info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 50px;
	width: 100%;
	margin-bottom: 80px;
}

.info-card {
	margin-top: 22px;
	padding: 18px 20px;
	border-radius: var(--radius-md);
	background: #f8fafc;
	box-shadow: var(--shadow-card);
	text-align: left;
}

.info-card h3 {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

.info-underline {
	width: 50px;
	height: 4px;
	background: var(--accent);
	border-radius: 999px;
	margin-bottom: 22px;
}

/* =========================================================
   FULL BLEED IMAGE SECTION
   ========================================================= */
.full-bleed-image {
	width: 100%;
	height: 40vh;
	min-height: 300px;
	margin-top: 40px;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url("images/panoramic-1.png") top center / cover no-repeat;
	display: grid;
	place-items: center;
	text-align: center;
	padding: 20px;
	border-radius: var(--radius-md);
}

.full-bleed-content h2 {
	color: #ffffff;
	font-size: clamp(1.5rem, 3vw, 2.5rem);
	max-width: 35rem;
	font-weight: 600;
	line-height: 1.4;
	margin: 0;
}

/* =========================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================= */
@media (min-width: 768px) {
	.photo-strip-mobile,
	.carousel-mobile {
		display: none;
	}

	.hero {
		height: 55vh;
	}

	.hero-image {
		width: 50vw;
	}

	.carousel img {
		flex: 0 0 40%;
		height: 260px;
	}

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

@media (min-width: 1181px) {
	.photo-strip-mobile,
	.carousel-mobile {
		display: none;
	}

	.hero {
		height: 70vh;
	}

	.hero-content {
		max-width: 40vw;
	}

	.carousel img {
		flex: 0 0 30%;
		height: 280px;
	}
}

@media (max-width: 600px) {
	.full-bleed-image {
		height: 30vh;
		min-height: 250px;
	}

	.hero {
		margin-left: 0;
		background: radial-gradient(circle at 0 0, #eff6ff 0, #dbeafe 40%, #f9fafb 100%);
		text-align: center;
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		height: auto;
	}

	.hero-inner {
		padding: 30px;
		margin: 0 auto;
		max-width: 90%;
		order: 1;
	}

	.hero-content {
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 0;
		max-width: 100%;
		order: 1;
	}

	.hero-image {
		display: none;
	}

	.photo-strip,
	.carousel {
		display: none;
	}

	.footer-container {
		flex-direction: column;
		text-align: center;
	}

	.footer-column {
		min-width: 100%;
		align-items: center;
	}

	.site-header {
		padding-inline: 0;
		padding-bottom: 20px;
	}
}

@media (orientation: portrait) and (min-width: 768px) {
	.photo-strip-mobile,
	.carousel-mobile {
		display: none;
	}

	.hero {
		height: 45vh;
	}
}

@media (orientation: landscape) and (max-height: 500px) {
	.photo-strip-mobile,
	.carousel-mobile {
		display: none;
	}

	.fact-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}

	.hero {
		height: 65vh;
		overflow: visible;
	}

	.hero-content h2 {
		font-size: 1.2rem;
	}
}
