* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: 'MerriweatherSans-LightItalic', 'Lato', serif;
	overscroll-behavior-x: none;
	text-decoration: none;
}

body {
	overflow-x: hidden;
	background-image: url("/img/bali.webp");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

:root {
	--camel: #f7f2ee;
	--dark-camel: #866f59;
	--orange-camel: #AD7D52;
	--camel-rgb: 247, 242, 238;
	--dark: #381f0f;
	--dark-filter: invert(89%) sepia(46%) saturate(762%) hue-rotate(341deg) brightness(97%) contrast(95%); /* https://codepen.io/sosuke/pen/Pjoqqp */
	--light: #fff;
	--max-width: 1200px;
	--anim-time: 300ms;
	--long-anim-time: 800ms;
}

@media only screen and (max-width: 600px) {
	:root {
		--max-width: 600px;
	}
}

p {
	color: #625656;
	padding: 4px 0;
}

.article-content p {
	font-size: 20px;
	line-height: 32px;
	padding-bottom: 32px;
}

a {
	/*color: #f7775e;*/
	color: var(--dark-camel);
}

h1, h2, h3 {
	font-family: 'Shalimar', cursive;
	font-weight: bold;
	color: var(--dark);
}

h1 {
	font-size: 64px;
	letter-spacing: 3px;
}

h2 {
	font-size: 40px;
}

h3 {
	font-size: 32px;
	color: var(--dark-camel);
}

.full-width {
	width: 100%;
	flex: 1;
}

@media only screen and (max-width: 1190px) {
	h1 {
		font-size: 40px;
		letter-spacing: 2px;
	}

	h2 {
		font-size: 32px;
	}

	h3 {
		font-size: 22px;
	}
}


ul {
	list-style-position: inside;
}

li, li a {
	font-size: 22px;
	margin-bottom: 8px;
	color: #000;
	font-family: 'MerriweatherSans-LightItalic', 'Lato', serif;
}

li a {
	text-decoration: none;
}

.content-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	margin-top: -1px;
}

.content {
	display: flex;
	width: 100%;
	max-width: var(--max-width);
	justify-content: center;
	align-items: center;
}

.article-content {
	background-color: var(--camel);
	display: flex;
	padding: 16px;
}

.continent-image {
	filter: blur(0.7px) sepia(0.3);
	max-width: 140px;
	padding: 24px;
	transition: all var(--anim-time) ease-out;
}

.continent-wrapper {
	display: flex;
	justify-content: space-between;
}

.continent-box {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	padding: 24px;
}

.continent-box h2 {
	color: #6a6561;
	transition: all var(--anim-time) ease-out;
}

.continent-box:hover img {
	transform: scale(1.15);
	filter: blur(0.2px) sepia(0.4);
}

.continent-box:hover h2 {
	transform: scale(1.05);
}

@media only screen and (max-width: 1200px) {
	.continent-image {
		max-width: 100px;
		padding: 12px;
	}

	.continent-wrapper {
		padding: 0 48px;
	}

	.continent-box {
		padding: 12px;
	}
}

@media only screen and (max-width: 900px) {
	.continent-wrapper {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 8px;
		padding: 16px;
	}

	.continent-wrapper a {
		text-align: center;
	}

	.continent-box {
		padding: 0;
	}
}



#header-bg-wrapper {
	width: 100%;
	height: 480px;
	overflow: hidden;
}

#header-bar {
	position: fixed;
	background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,212,255,0) 100%);
	top: 0;
	left: 0;
	right: 0;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;

	backdrop-filter: blur(0px);
	-webkit-backdrop-filter: blur(0px);
	background-color: rgba(0, 0, 0, 0);
	transition: backdrop-filter var(--long-anim-time) ease-in-out, padding var(--long-anim-time) ease-in-out;
}

#header-content {
	padding-top: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	transition: padding-top var(--anim-time) ease-in-out;
}

#header-destinations, #header-socials {
	width: 160px;
}

#header-desktop-logo {
	display: block;
}

.header-logo-img {
	display: block;
	height: 48px;
	width: auto;
}

#header-mobile-logo, #hamburger-menu, #header-mobile-end {
	display: none;
}

#header-mobile-logo {
	transition: all var(--anim-time) ease-out;
}


#header-menu nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

#header-menu nav a {
	color: #fff;
	margin: 0 16px;
	font-size: 20px;
	text-decoration: none;
	transition: all var(--anim-time) ease-out;
}
.birds-link {
	height: 68px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center 13px;
	background-size: 180px;
}

#header-menu nav a:hover {
	transform: translateY(-2px) scale(1.05);
	border: none;
}

.birds-link:hover {
	background-image: var(--flying-birds-white);
	background-position: center -20px;
	background-repeat: no-repeat;
	background-size: 280px;
	text-decoration: none;
}

.destinations-continents-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 16px;
	flex: 1;
}

@media only screen and (max-width: 1100px) {
	.destinations-continents-wrapper {
		grid-template-columns: 1fr 1fr;
	}
}

@media only screen and (max-width: 750px) {
	.destinations-continents-wrapper {
		grid-template-columns: 1fr;
	}
}

.destinations-continent-wrapper {
	padding: 16px;
	border-radius: 16px;
}

.destinations-continent-wrapper ul li a, .destinations-continent-header h2 {
	text-transform: capitalize;
	transition: all var(--anim-time) ease-in-out;
}

.destinations-continent-header h2 {
	font-size: 40px !important;
}

.destinations-continent-wrapper ul li a:hover, .destinations-continent-header h2:hover {
	color: var(--dark-camel);
}

.destinations-continent-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.destinations-continent-header img {
	filter: blur(0.7px) sepia(0.3);
	max-width: 140px;
	padding: 24px;
	transition: all var(--anim-time) ease-out;
}

#header-socials, #footer-socials {
	display: flex;
	padding: 16px 0;
}

#header-socials {
	justify-content: flex-end;
	padding-right: 8px;
}

#header-socials a:first-child .social-icon {
	margin-left: 0;
}


.white-content {
	background: #fff;
}

.bubble-img-container {
	flex: 3;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.bubble-img-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	mask-image: var(--bubble-mask);

	margin-bottom: 24px;
}

#who-we-are div article {
	padding-left: 100px;
	flex: 5;
}

#who-we-are div article p {
	font-size: 22px;
}

.our-photos {
	display: flex;
	max-width: 500px;
}

#map {
	background: #fff;
	padding: 48px;
}

#map-img {
	/*width: 100%;*/
}


#book {
	padding: 16px;
	background-color: var(--camel);
	background-position: center left;
	background-size: contain;
	background-repeat: no-repeat;
	display: flex;
}

#books-wrapper {
	height: 500px;
	width: 600px;
	flex-basis: 500px;
}

#book1 {
	width: 240px;
	margin-top: 80px;
	margin-left: 210px;
	position: absolute;
}

#book2 {
	width: 240px;
	margin-top: 110px;
	margin-left: 30px;
	position: absolute;
}

#book-form-wrapper {
	flex: 1;
}


.article-tipple-img {
	width: 33%;
	height: auto;
	padding: 16px;
	border-radius: 8px;
}

.article-image-link {
	text-decoration: none;
}

.article-content img.article-tipple-img,
.article-content img.article-single-img {
	cursor: zoom-in;
}

body.lightbox-open {
	overflow: hidden;
}

#image-lightbox {
	position: fixed;
	inset: 0;
	z-index: 5000;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity var(--anim-time) ease-out;
}

#image-lightbox.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.image-lightbox__backdrop {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.92);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 8px 8px 12px;
}

.image-lightbox__figure {
	margin: 0;
	max-width: min(95vw, 1800px);
	max-height: calc(100vh - 16px);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 6px;
}

.image-lightbox__img {
	max-width: 100%;
	max-height: calc(100vh - 64px);
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
	transform: translate3d(0, 0, 0) scale(1);
	transform-origin: center center;
	transition: transform 80ms linear;
	touch-action: none;
	user-select: none;
	-webkit-user-drag: none;
	cursor: zoom-in;
}

.image-lightbox__img.is-zoomed {
	cursor: grab;
}

.image-lightbox__img.is-dragging {
	cursor: grabbing;
	transition: none;
}

.image-lightbox__caption {
	color: #f2ece4;
	font-size: 14px;
	line-height: 1.35;
	text-align: center;
	max-width: 900px;
	padding: 0 8px;
}

.image-lightbox__close {
	position: fixed;
	top: 8px;
	right: 8px;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 34px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background var(--anim-time) ease-out;
}

.image-lightbox__close:hover {
	background: rgba(255, 255, 255, 0.35);
}

.article-single-img {
	width: 100%;
	height: auto;
	padding: 16px;
	border-radius: 8px;
}

@media only screen and (max-width: 640px) {
	.article-tipple-img {
		width: 100%;
		padding: 16px 0;
	}
}

.article-content-wrapper {
	display: flex;
	padding-bottom: 64px;
}

@media only screen and (max-width: 1190px) {
	.article-content-wrapper {
		flex-direction: column;
	}

	.bubble-img-container {
		flex: none;
		width: 100%;
		height: 320px;
	}

	#who-we-are div article {
		padding-left: 0;
	}

	.bubble-right {
		padding-right: 16px !important;
	}

	.bubble-left {
		flex-direction: column-reverse;
	}

	#header-bar {
		height: 60px;
	}

	#header-content, #header-desktop-logo {
		display: none;
	}

	#header-mobile-logo, #hamburger-menu, #header-mobile-end {
		display: block;
		z-index: 1500;
	}

	#header-mobile-logo {
		margin-bottom: -4px;
	}

	#header-mobile-end {
		width: 88px;
	}

	.ham {
		cursor: pointer;
		-webkit-tap-highlight-color: transparent;
		transition: transform var(--anim-time);
		-moz-user-select: none;
		-webkit-user-select: none;
		-ms-user-select: none;
		user-select: none;
		height: 64px;
		margin-top: 3px;
	}

	.hamRotate.active {
		transform: rotate(45deg);
	}
	.hamRotate180.active {
		transform: rotate(180deg);
	}
	.line {
		fill: none;
		/*transition: stroke-dasharray var(--anim-time), stroke-dashoffset var(--anim-time);*/
		transition: all var(--anim-time) ease-in-out;
		stroke: #fff;
		stroke-width: 3;
		stroke-linecap: round;
	}

	.ham.active .line {
		stroke: var(--dark);
	}
	.ham1 .top {
		stroke-dasharray: 40 139;
	}
	.ham1 .bottom {
		stroke-dasharray: 40 180;
	}
	.ham1.active .top {
		stroke-dashoffset: -98px;
	}
	.ham1.active .bottom {
		stroke-dashoffset: -138px;
	}

	.birds-link {
		height: 32px;
	}
}



#footer-wrapper {
	background-color: var(--camel);
	padding: 16px;
	margin-top: -1px;
}

.footer-copy {
	padding: 12px;
	letter-spacing: 2px;
}

#footer-wrapper .content {
	display: flex;
	margin-top: -200px;
}

#footer-we, footer {
	flex: 3;
}

#footer-we .bubble-img-container {
	flex: 3;
	height: 400px;
	position: relative;
	overflow: hidden;
}

#footer-we .bubble-img-container img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	mask-image: var(--bubble-mask2);

	margin-bottom: 24px;
}


@media only screen and (max-width: 420px) {
	#footer-we .bubble-img-container {
		margin: -24px 0 104px -32px;
		transform: scale(1.35);
	}
}


@media only screen and (max-width: 380px) {
	#footer-we .bubble-img-container {
		transform: scale(1.5);
	}
}

.footer-logo {
	filter: var(--dark-filter);
	width: 160px;
	height: auto;
	display: block;
	margin-left: 6px;
}

.header-content-visible {
	display: flex !important;
	flex-direction: column;
	background: rgba(var(--camel-rgb), 0.75)  !important;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	padding-top: 120px !important;
	animation: fadeInFromNone 0.4s ease-in-out;
}

.header-content-visible #header-menu nav {
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	margin-bottom: 32px;
}


.header-content-visible #header-menu nav a, .header-bar-scrolled #header-content #header-menu nav a {
	color: var(--dark);
}

.header-bar-scrolled #header-content {
	padding-top: 0;
}

.header-content-visible #header-menu nav a {
	margin-bottom: 32px;
}

.header-content-visible #header-socials a {
	margin-bottom: 16px;
}
/*// .header-content-visible #header-socials a,*/
.header-bar-scrolled #header-content #header-menu nav a img, .header-bar-scrolled #header-mobile-logo, #header-mobile-logo.active {
	filter: var(--dark-filter);
}

.header-bar-scrolled .ham .line {
	stroke: var(--dark);
}

.header-bar-scrolled {
	background-color: rgba(var(--camel-rgb), 0.9) !important;
}

.header-bar-scrolled .birds-link:hover {
	background-image: var(--flying-birds);
}

.instagramable-photos-container {
	overflow: hidden;
}

.instagramable-photos {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
	gap: 0;
}

.instagramable-photos img {
	width: 100%;
	filter: brightness(1.1) contrast(0.95);
	z-index: 10;
	border: 1px solid #f3efe6;
}

.instagramable-photos img:hover {
	transform: scale(1.1);
	filter: saturate(1.1) contrast(1) brightness(1);
	transition: all var(--anim-time) ease-out;
	z-index: 5;
}

@media only screen and (max-width: 1000px) {
	.instagramable-photos {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

@media only screen and (max-width: 700px) {
	.instagramable-photos {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

.bg-img {
	width: 100%;
	height: 500px;
	display: block;
	object-fit: cover;
	object-position: center center;
}

@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
	.header-bar-scrolled {
		background: none !important;
		background-color: rgba(var(--camel-rgb), 0.75) !important;
		backdrop-filter: blur(3px) !important;
		-webkit-backdrop-filter: blur(3px) !important;
	}
}

@keyframes fadeInFromNone {
	0% {
		display: none;
		opacity: 0;
	}

	1% {
		display: block;
		opacity: 0;
	}

	100% {
		display: block;
		opacity: 1;
	}
}
