.image-stack {
	position: relative;
	height: 100vh;
	overflow: hidden;
}

.smokyrow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.smokycolumn {
	flex: 1;
	height: 100%;
}

.smokycolumn.text {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 1.2rem;
	line-height: 1.6;
}

.smokycolumn.image-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.smokycolumn img {
	width: 80%;
	height: auto;
	object-fit: cover;
}

#row1 {
	z-index: 6;
}

#row2 {
	z-index: 5;
}

#row3 {
	z-index: 4;
}

#row4 {
	z-index: 3;
}

#row5 {
	z-index: 2;
}

#row6 {
	z-index: 1;
}

.smoky-text {
	text-align: left;
	padding: 35px 100px;
}

.smoky-text h2 {
	font-size: 2.7em;
}

.smoky-text p {
	font-size: 16px;
}

.bbl {
	border-bottom-left-radius: 3%;
}

.bbr {
	border-bottom-right-radius: 3%;
}


/* For mobile devices */
@media (max-width: 768px) {
	.smoky-text {
		padding: 0 15px;
	}

	.smoky-text h2 {
		font-size: 2.5em;
	}

	/* Stack columns vertically for mobile */
	.image-stack {
		height: auto;
	}

	.smokyrow {
		position: unset;
		flex-direction: column;
		height: auto;
		justify-content: center;
	}

	.smokycolumn {
		width: 100%;
		min-height: 100vh;
		flex: none;
	}

	.smokycolumn img {
		width: 100%;
	}

	#box1,
	#box2,
	#box3,
	#box4,
	#box5,
	#box6 {
		z-index: auto;
	}
}