/* Hero
------------------------------------------------------*/
.hero {
	width: 100%;
	min-height: 100vh; /* fallback for older software */
	min-height: 100svh; /* stable viewport height */
	/*	min-height: calc(100vh - 80px); 
    min-height: calc(100svh - 80px);*/
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	background-color: black;
	position: relative;
	/*overflow: hidden;*/
	z-index: 1;
	isolation: isolate;
}
/* Overlay effect for index */
.hero .hero-title {
	mix-blend-mode: overlay;
}
.hero:has(video) .hero-title {
	color: white;
	animation: fadeOut 1s ease 4s forwards;
}
img.hero-title {
	max-width: 700px;
}
@keyframes fadeOut {
	from {
		opacity: 0.6;
	}
	to {
		opacity: 0;
	}
}
/* Slideshow */
.hero-slideshow {
	position: absolute;
	inset: 0;
	background-color: black;
	z-index: 0;
}
.hero-slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transform: scale(1);
	transition: opacity 1s ease;
	z-index: 0;
}
.hero-slide.active {
	opacity: 1;
	z-index: 1;
	animation: heroZoom 5s linear forwards;
}
.hero-slide.previous {
	opacity: 0;
	z-index: 0;
	transform: scale(1.08);
}
.hero-slide picture, .hero-slide img {
	width: 100%;
	background-color: black;
	height: 100%;
	display: block;
}
.hero-slide img {
	object-fit: cover;
}
@keyframes heroZoom {
	from {
		transform: scale(1);
	}
	to {
		transform: scale(1.08);
	}
}
/* Slideshow arrow navigation */
.hero-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background-image: url("../icons/large-arrow.svg");
	border: none;
	padding: 15px 20px;
	width: 70px;
	height: 70px;
	background-position: center;
	background-size: contain;
	cursor: pointer;
	transition: 0.3s ease;
	filter: brightness(0) invert(1);
	opacity: 0.5;
	display: none;
}
.hero-arrow:hover {
	opacity: 1;
}
.hero-arrow-left {
	left: 50px;
	transform: scale(-1);
}
.hero-arrow-right {
	right: 50px;
}
@media (max-width: 1000px) {
	.hero-arrow {
		display: none;
		pointer-events: none;
	}
}
/* Book form -- in progress */
.hero form {
	display: flex;
	flex-direction: row;
	padding: 15px 15px 15px 0;
	width: fit-content;
	background-color: var(--old-lace);
	position: absolute;
	bottom: 40px;
}
/* filtering for carousel */
.filter-options {
	display: flex;
	flex-direction: row;
	gap: 15px;
	padding: 32px 20px 10px;
	box-sizing: border-box;
	align-items: center;
	overflow: hidden;
	width: 100%;
	justify-content: center;
}
/* Destinations Sliding text tracks
--------------------------------------------------------------------------------------*/
.destinations {
	overflow: hidden;
	display: flex;
	flex-direction: column;
	gap: 15px;
	width: 100%;
	/*max-width: 2k native*/
	max-width: 2560px;
	margin: 20px 0 35px;
	padding: 20px 0 35px;
	transition: 0.2s;
	z-index: 3;
}
.mq-clip {
	overflow: hidden;
	width: 100%;
	padding: 60px 0;
	margin: -60px 0;
}
.mq-row {
	overflow: visible;
	width: 100%;
	height: 40px;
}
.mq-track {
	display: flex;
	width: max-content;
	will-change: transform;
	height: 40px;
	align-items: center;
}
/* Left to right animation */
.ltr {
	animation: mq-ltr 60s linear infinite;
}
/* Right to left animation */
.rtl {
	animation: mq-ltr 60s linear infinite reverse;
}
@keyframes mq-ltr {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
@keyframes mq-rtl {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}
.destinations:hover .mq-track {
	animation-play-state: paused;
}
.w {
	display: inline-flex;
	font-family: Ruthligos, sans-serif;
	font-size: 100px;
	line-height: 1px;
	transform: translateY(12px);
	color: #C0AD9E;
	opacity: 30%;
	padding: 0 10px;
	white-space: nowrap;
	cursor: default;
	font-weight: 400;
	text-decoration: none;
	transition: color .2s;
	letter-spacing: normal;
	pointer-events: none;
	/* very faint black background added to avoid accessibility contrast penalties */
	background-color: rgba(0, 0, 0, 0.002);
	border: 1px solid transparent;
}
.w.link {
	cursor: pointer;
	color: var(--dusty-taupe);
	opacity: 100%;
	pointer-events: auto;
}
.w.link:hover {
	color: #8b6447;
}
@media (max-width: 500px) {
	.w {
		font-size: 80px;
		transform: translateY(12px);
		padding: 0 10px;
	}
	.destinations {
		gap: var(--xsg);
		width: 100%;
		max-width: 500px;
		margin: 0;
	}
	.mq-clip {
		overflow: hidden;
		width: 100%;
		padding: 30px 0;
		margin: -30px 0;
	}
}
/* Hotels carousel
Features -at most- 5 carousels at a time
(! Most of the css for this element is at main-carousel.css, this file contains index-specific modifications )
---------------------------------------------------------------------------------------------------------------*/
/*wraps swiper and filtering options*/
.hotels {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 29px;
	padding-bottom: var(--superp);
	width: 100%;
	overflow: hidden;
}
.carousel-container {
	position: relative;
	width: 100%;
}
.main-carousel-set {
	position: absolute;
	inset: 0;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(10px);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.main-carousel-set.is-active {
	position: relative;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
	transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s linear 0s;
	z-index: 2;
}
.louis-logo {
	width: 239px;
	height: 29px;
	aspect-ratio: 239/29;
	fill: var(--coffee-bean);
}
.rewards {
	/*width: 100%;*/
	margin-top: 10px;
	overflow: visible;
	height: fit-content;
	gap: var(--sg);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.rewards-title h2 {
	color: var(--coffee-bean);
	text-align: center;
	font-size: 32px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	text-transform: uppercase;
}
.rewards-title img {
	width: 100%;
	max-width: 260px;
}
.rewards-pointers li {
	position: relative;
	padding-left: var(--lp);
	color: var(--coffee-bean);
	width: fit-content;
	font-size: 13px;
	line-height: 150%;
	font-weight: 500;
	background: linear-gradient(180deg, #B3762E 0%, #4a2d08 85.1%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
}
.rewards-pointers li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 3px;
	height: 12px;
	width: 12px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	background-image: url("../icons/checkmark.svg");
}
.rewards-pointers {
	width: 100vw;
	box-sizing: border-box;
	max-width: 900px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: var(--lg);
	padding: 40px 0;
}
.two-button-wrapper {
	margin-bottom: 30px;
}
@media (max-width: 700px) {
	.rewards-pointers {
		padding: 40px 20px;
	}
	.rewards-title img {
		max-width: 230px;
	}
}
@media (max-width: 380px) {
	.two-button-wrapper {
		flex-direction: column;
		width: 100%;
		padding: 0 20px;
		box-sizing: border-box;
	}
	.two-button-wrapper .btn {
		width: 100%;
		box-sizing: border-box;
	}
}
/* Special offers widescreen element
(! Most code for this element is at styles.css )
 --------------------------------------------------------------------------*/
.widescreen-element.left-margin {
	box-sizing: border-box;
	align-items: flex-start;
}
.widescreen-element.left-margin h2, .widescreen-element.left-margin p, .widescreen-element.left-margin a {
	margin-left: 10%;
}
.widescreen-element.left-margin h2 {
	padding: 0;
	font-size: 100px;
}
.left-margin .widescreen-desc {
	color: #F3DFCF;
}
.left-margin .widescreen-desc i {
	color: white;
}
.widescreen-element .widescreen-title {
	text-align: center;
	width: fit-content;
}
.widescreen-element.left-margin .widescreen-title {
	text-align: left;
	width: fit-content;
}
@media (max-width: 700px) {
	.widescreen-element.left-margin {
		box-sizing: border-box;
		align-items: center;
	}
	.widescreen-element.left-margin h2, .widescreen-element.left-margin p {
		margin: 10px auto;
		padding: 0 20px;
		width: 100%;
		box-sizing: border-box;
		text-align: center;
	}
	.widescreen-element.left-margin a {
		margin: 10px auto;
	}
	.widescreen-element.left-margin h2 {
		padding: 0;
		font-size: 100px;
	}
	.left-margin .widescreen-desc {
		color: #F3DFCF;
	}
	.left-margin .widescreen-desc i {
		color: white;
	}
	.widescreen-element.left-margin .widescreen-title {
		text-align: center;
		width: fit-content;
	}
}

/* Instagram
----------------------------------------------------*/
.instagram {
	display: flex;
	flex-direction: column;
	gap: var(--sg);
	padding-bottom: var(--l50p);
	align-items: center;
	justify-content: center;
	height: fit-content;
}
.section-wrap .instagram .description:not(:first-child):not(:last-child) {
	margin-bottom: 10px;
}
.instagram-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 5px;
	width: 100%;
	padding: 0 20px;
	box-sizing: border-box;
	max-width: calc(var(--large-width) + 40px);
	aspect-ratio: 1520/390;
}
.instagram-grid a {
	position: relative;
	height: 100%;
	overflow: hidden;
	background-color: black;
}
.instagram-grid a img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 292/400;
}
.instagram-grid a:focus-visible {
	outline: 5px solid var(--copperwood);
	outline-offset: -4px;
}
.instagram-grid a::before {
	position: absolute;
	content: "";
	top: 20px;
	right: 20px;
	width: 24px;
	height: 24px;
	z-index: 2;
	opacity: 1;
	fill: white;
	mix-blend-mode: overlay;
	background-size: contain;
	background-repeat: no-repeat;
	background-image: url("../icons/instagrram.svg");
}
.insta-btn {
	display: flex;
	flex-direction: row;
	gap: 7px;
	color: #704719;
	font-size: 16px;
	text-decoration: none;
	fill: var(--copperwood);
	line-height: 1.5;
	padding: 5px 15px;
	background-color: #FFF7EE;
	border-radius: 5px;
	transition: 0.2s;
	align-items: center;
	justify-content: center;
}
.insta-btn:hover {
	color: #FFF7EE;
	background-color: var(--copperwood);
	fill: #FFF7EE;
}
@media (max-width: 1100px) {
	.instagram-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.instagram-grid a:last-child {
		display: none;
	}
}
@media (max-width: 700px) {
	.instagram-grid {
		grid-template-columns: 1fr 1fr;
		grid-template-rows: 1fr 1fr;
		height: fit-content;
		aspect-ratio: unset;
	}
	.instagram-grid a:last-child {
		display: none;
	}
	.instagram .description {
		display: none;
	}
}