.uhost-hero {
	height: calc(100vh - var(--header-height));
	display: flex;
	align-items: center;
	color: white;
	width: 100%;
	flex-direction: column;
	position: relative;
}

.uhost-hero-image-container {
	height: 100vh;
	width: 100%;
	position: relative;
	overflow: hidden;
	z-index: 2;
	pointer-events: none;
}


.uhost-hero-image-container img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .4s ease;
}

.uhost-hero-image-container img:not(.active) {
    opacity: 0;
}

.uhost-hero-image-container img.active {
    opacity: 1;
}

.uhost-hero-image-container::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(
        circle at center,
        rgba(0,0,0,0.05),
        rgba(0,0,0,0.55)
    );
    z-index: 2;
}

.uhost-hero-content {
	display: flex;
	position: absolute;
	flex-direction: column;
	gap: 1rem;
	align-items: flex-start;
	max-width: 800px;
	width: fit-content;
	justify-content: center;
	z-index: 3;
	bottom: 50%;
	transform: translateY(50%);
	left: 20px;
	padding: 2rem;
}


.uhost-hero-content span {
	margin: 0;
}
.uhost-hero-content h1 {
	font-family: 'styled-serif';
	margin: 0;
	font-size: clamp(2rem, 4vw, 5rem);
	font-weight: 300;
}

.uhost-hero-action-bar {
	padding: 10px;
	width: 100%;
	background-color: white;
	color: black;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.uhost-hero-action-bar hr {
	border: none;
	width: 1px;
	height: 40px;
	background-color: #e1e1e1;
	margin: 0;
}

.uhost-hero-action-bar button {
	font-size: .8rem;
	background-color: black;
	color: white;
	border: none;
	height: 40px;
	padding: 0 16px;
	letter-spacing: .2em;
	font-family: system-ui;
	font-weight: 600;
}

.hero-iconed-input-container {
	display: flex;
	flex-direction: row;
	gap: 10px;
	align-items: center;
}
.hero-iconed-input-container input,
.hero-iconed-input-container select {
	font-size: 1rem;
	height: 40px;
	border: none;
	margin: 0;
	padding: 0;
	outline: none;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    outline: none;
}

.select-container {
    position: relative;
}

.select-container::after {
    content: "";
    position: absolute;
    right: 16px;
    top: calc(50% - 5px);
    width: 8px;
    height: 8px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    pointer-events: none;
}

.hero-iconed-input-container select {
    width: 100%;
	color: black;
}


.hero-iconed-input-container input::placeholder {
  color: gray;
  font-size: 15px;
  opacity: 1;
}
.hero-iconed-input-container select {
	padding-right: 40px;
	font-size: 16px;
	transform: scale(0.95);
	transform-origin: left center;
}

.hero-iconed-input-container svg,
.hero-iconed-input-container img {
	width: 22px;
	height: 22px;
}

@media (max-width:768px) {
	.uhost-hero-content {
		left: 20px;
		padding: 0;
		width: calc(100% - 40px);
		gap: 12px;
		bottom: 40px;
		transform: none;
	}
	.uhost-hero-action-bar {
		flex-direction: column;
		width: calc(100% - 20px);
	}

	.uhost-hero-action-bar hr {
		width: 50%;
		height: 1px;
	}

	.hero-iconed-input-container {
		width: 100%;
		margin-left: 0px !important;
	}

	.hero-iconed-input-container input,
	.hero-iconed-input-container select {
		text-align: center;
		width: 100%;
		transform-origin: center;
		margin-right: 30px;
		padding-right: 0;
	}

	.hero-iconed-input-container svg,
	.hero-iconed-input-container img {
		width: 20px;
		height: 20px;
		flex-shrink: 0;
		margin-left: 10px;
	}

	.uhost-hero-action-bar button {
		width: 100%;
	}
}


/* ~~~~~~~~ */

.selection-section.odd {
	background-color: #f7f7f7;
}
.selection-section {
	display: flex;
	flex-direction: column;
	width: 100%;
	align-items: center;
	padding: 40px 0;
	gap: 40px;
}
.selection-header {
	display: flex;
	flex-direction: row;
	width: calc(100% - 40px);
	max-width: 1100px;
	justify-content: space-between;
	align-items: flex-end;
	gap: 1rem;
}
.selection-header span {
	margin: 0;
}
.selection-header h2 {
	font-family: 'styled-serif';
	margin: 0;
	font-size: clamp(1.6rem, 3.4vw, 4rem);
	font-weight: 300;
	text-align: left;
}
.selection-header p {
	line-height: 1.4;
	color: #555;
	margin: 0;
	max-width: 520px;
}
.selection-header-left {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: flex-start;
}
.selection-header-right {
	display: flex;
}
.selection-header-right a {
	color: #666;
	text-decoration: none;
	display: flex;
	gap: 6px;
	align-items: center;
	font-size: 14px;
	transition: gap .2s;
}
.selection-header-right a:hover {
	color: #555;
	gap: 10px;
}

.selection-items-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	width: calc(100% - 40px);
	max-width: 1100px;
}

@media (max-width: 768px) {
	.selection-items-container {
		display: flex;
		gap: 20px;
		overflow-x: auto;
		overflow-y: hidden;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 20px;
		padding: 0 20px;
		scrollbar-width: none;
		-webkit-overflow-scrolling: touch;
		height: 100%;
	}

	.selection-items-container::-webkit-scrollbar {
		display: none;
	}

	.selection-items-container > * {
		flex: 0 0 auto;
		scroll-snap-align: start;
		max-width: 300px;
	}

	.item-image {
		width: 300px;
		height: 220px;
	}

	.selection-header {
		flex-direction: column;
		width: calc(100% - 40px);
		align-items: flex-start;
	}
}


/* ~~~~~~~~~ */

.landing-filler-section,
.footer-filler-section {
	padding: 80px 40px;
	display: flex;
	justify-content: center;
	width: calc(100% - 80px);
	padding-bottom: 90px;
}
.footer-filler-section {
	background: #000;
	color: #fff;
}

.filler-content {
    max-width: 900px;
    text-align: center;
}

.section-tag {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    display: block;
    margin-bottom: 20px;
}
.footer-filler-section .section-tag {
	color: #949494;
}

.filler-content h2 {
	font-size: 42px;
	font-weight: 500;
	margin-bottom: 20px;
	color: #111;
	font-family: 'styled_serif';
}
.footer-filler-section .filler-content h2 {
	color: #e5e5e5;
}

.filler-content p {
	font-size: 16px;
	line-height: 1.7;
	color: #444;
}
.footer-filler-section .filler-content p {
	color: #c0c0c0;
}

@media (max-width: 768px) {
    .landing-filler-section {
        padding: 80px 20px;
    }

    .filler-content h2 {
        font-size: 32px;
    }
}