/**
 * setup
 *
 * @format
 */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* 
font-family: "Montserrat", serif;
*/

:root {
	--hue: 30;
	--saturation: 10%;

	--alpha-03: 0.3;
	--alpha-05: 0.5;
	--alpha-07: 0.7;

	--bg-dark: hsl(0, 0%, 80%);
	--bg: hsl(0, 0%, 90%);
	--bg-light: hsl(0, 0%, 100%);

	--highlight: hsl(var(--hue), var(--saturation), 50%);
	--highlight-bright: hsl(var(--hue), var(--saturation), 60%);
	--highlight-brightest: hsl(var(--hue), var(--saturation), 70%);

	--main: hsl(0, 0%, 90%);
	--footer-color: hsl(0, 0%, 0%);

	--shallow: hsl(0, 0%, 100%);
	--misty: hsl(0, 0%, 60%);
	--deep: hsl(0, 0%, 20%);

	--shallow-op3: hsla(0, 0%, 100%, var(--alpha-03));
	--shallow-op5: hsla(0, 0%, 100%, var(--alpha-05));
	--shallow-op7: hsla(0, 0%, 100%, var(--alpha-07));

	--misty-op3: hsla(0, 0%, 50%, var(--alpha-03));
	--misty-op5: hsla(0, 0%, 50%, var(--alpha-05));
	--misty-op7: hsla(0, 0%, 50%, var(--alpha-07));

	--deep-op3: hsla(0, 0%, 0%, var(--alpha-03));
	--deep-op5: hsla(0, 0%, 0%, var(--alpha-05));
	--deep-op7: hsla(0, 0%, 0%, var(--alpha-07));

	--warning: hsl(0, 100%, 50%);
	--attention: hsl(30, 100%, 50%);
	--success: hsl(120, 100%, 50%);

	--padding-xs: 5px;
	--padding-s: 10px;
	--padding-m: 15px;
	--padding-l: 20px;
	--padding-xl: 30px;
	--padding-xxl: 40px;
	--padding-xxxl: 50px;
	--padding-xxxxl: 60px;

	--margin-xs: 5px;
	--margin-s: 10px;
	--margin-m: 15px;
	--margin-l: 20px;
	--margin-xl: 30px;
	--margin-xxl: 40px;
	--margin-xxxl: 50px;
	--margin-xxxxl: 60px;

	--border-radius-xs: 10px;
	--border-radius-s: 20px;
	--border-radius-m: 30px;
	--border-radius-l: 40px;
	--border-radius-xl: 50px;

	--font-size-xs: 0.75rem;
	--font-size-s: 1rem;
	--font-size-m: 1.3rem;
	--font-size-l: 1.7rem;
	--font-size-xl: 2rem;
	--font-size-xxl: 2.5rem;
	--font-size-xxxl: 3rem;

	--font-weight-xlight: 100;
	--font-weight-light: 300;
	--font-weight-regular: 400;
	--font-weight-m: 500;
	--font-weight-semibold: 600;
	--font-weight-bold: 700;
	--font-weight-extra-bold: 800;
	--font-weight-black: 900;

	--transition-short: 0.3s;
	--transition-medium: 0.5s;
	--transition-long: 1s;

	--animation-short: 0.3s;
	--animation-medium: 0.5s;
	--animation-long: 1s;
	--animation-extra-long: 2s;

	--gap-xs: 5px;
	--gap-s: 10px;
	--gap-m: 20px;
	--gap-l: 30px;
	--gap-xl: 40px;
	--gap-xxl: 50px;

	--default-box-shadow: inset 0 5px 10px var(--bg-light), 0 5px 10px var(--deep-op3);
	--calendar-box-shadow-dark: inset 0 0px 10px var(--deep-op5);
	--calendar-box-shadow-light: inset 0 0px 10px var(--bg-light);
}

* {
	font-family: "Montserrat", serif;
	scrollbar-width: none;
}

h1,
h2 {
	font-family: "Montserrat", serif;
}

::selection {
	color: var(--deep);
	background: var(--highlight-bright);
}

a {
	text-decoration: none;
}

body,
h1,
h2,
h3,
h4,
h5,
p {
	margin: 0;
}

body {
	background: var(--shallow);
}

.numType {
	font-family: "Montserrat", serif;
}

.current {
	display: grid !important;
}

.reserve {
	display: none !important;
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		transform: translateX(-150px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(-150px);
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		transform: translateX(150px);
	}

	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
		transform: translateX(0);
	}

	to {
		opacity: 0;
		transform: translateX(150px);
	}
}

@keyframes fadeInTop {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInSimple {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes moveUnder {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		transform: translateY(400px);
	}
}

@keyframes moveOver {
	from {
		opacity: 0;
		transform: translateY(400px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes loadingRotation {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: rotate(5deg) translate(-200px, 0px);
	}

	to {
		opacity: 1;
		transform: rotate(0deg) translate(0, 0);
	}
}

.inViewAnimation {
	animation: fadeInLeft 1.5s;
}

.mainButton {
	z-index: 99;
	width: 250px;
	height: 50px;
	display: flex;
	cursor: pointer;
	border-radius: 30px;
	align-items: center;
	transition: all 0.3s;
	justify-content: center;
	background: var(--highlight-bright);
	border: 2px solid var(--highlight-bright);
}

.mainButton span {
	display: flex;
	font-size: 20px;
	user-select: none;
	text-align: center;
	align-items: center;
	transition: all 0.3s;
	font-weight: 600 !important;
	color: var(--shallow) !important;
}

.mainButton:hover {
	transform: scale(1.05);
	background-color: var(--shallow);
	border: 2px solid var(--shallow);
}

.mainButton:hover>span,
.mainButton:hover>span span {
	color: var(--highlight) !important;
}

.secondaryButton {
	z-index: 99;
	width: 250px;
	height: 50px;
	display: flex;
	cursor: pointer;
	align-items: center;
	border-radius: 30px;
	transition: all 0.3s;
	justify-content: center;
	background: var(--highlight);
	border: 2px solid var(--highlight);
}

.secondaryButton span {
	display: flex;
	font-size: 20px;
	user-select: none;
	text-align: center;
	align-items: center;
	transition: all 0.3s;
	font-weight: 600 !important;
	color: var(--shallow) !important;
}

.secondaryButton:hover {
	transform: scale(1.05);
	background-color: var(--shallow);
	border: 2px solid var(--highlight);
}

.secondaryButton:hover>span,
.secondaryButton:hover>span span {
	color: var(--highlight) !important;
}

.tertiaryButton {
	z-index: 99;
	width: 250px;
	height: 50px;
	display: flex;
	cursor: pointer;
	border-radius: 30px;
	align-items: center;
	transition: all 0.3s;
	justify-content: center;
	background: var(--shallow);
	border: 2px solid var(--shallow);
}

.tertiaryButton span {
	display: flex;
	font-size: 20px;
	user-select: none;
	text-align: center;
	align-items: center;
	transition: all 0.3s;
	font-weight: 600 !important;
	color: var(--highlight-bright) !important;
}

.tertiaryButton:hover {
	transform: scale(1.05);
	border: 2px solid var(--shallow);
	background-color: var(--highlight-bright);
}

.tertiaryButton:hover>span,
.tertiaryButton:hover>span span {
	color: var(--shallow) !important;
}

.quaternaryButton {
	z-index: 99;
	width: 250px;
	height: 50px;
	display: flex;
	cursor: pointer;
	border-radius: 30px;
	align-items: center;
	transition: all 0.3s;
	justify-content: center;
	border: 2px solid var(--shallow);
	background: var(--highlight-bright);
}

.quaternaryButton span {
	display: flex;
	font-size: 20px;
	user-select: none;
	text-align: center;
	align-items: center;
	transition: all 0.3s;
	font-weight: 600 !important;
	color: var(--shallow) !important;
}

.quaternaryButton:hover {
	transform: scale(1.05);
	background-color: var(--shallow);
	border: 2px solid var(--shallow);
}

.quaternaryButton:hover>span,
.quaternaryButton:hover>span span {
	color: var(--highlight-bright) !important;
}

.smallButton {
	width: 150px;
	height: 50px;
}

.navButton {
	width: 110px;
	height: 50px;
}

.smallExample {
	width: 550px;
	margin-bottom: 100px;
}

.mainNavMenu .quaternaryButton {
	width: 120px;
}

.dashButton {
	display: flex;
	align-items: center;
}

.dashButton a {
	color: var(--main);
}

.mainNavMenu {
	width: 70%;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.mainNavMenuWrap {
	gap: 120px;
	display: flex;
	justify-content: space-around;
}

.mainNavMenu a {
	cursor: pointer;
}

.wideButton {
	width: 400px;
}

#backToTop {
	right: 50;
	bottom: 50;
	width: 30px;
	height: 30px;
	display: flex;
	z-index: 999999;
	cursor: pointer;
	position: fixed;
	align-items: center;
	border-radius: 30px;
	transition: all 0.3s;
	justify-content: center;
	border: 1px solid var(--deep);
	background-color: var(--main);
}

#backToTop span {
	color: var(--deep);
	font-weight: 500;
	font-size: 20px;
	transition: all 0.3s;
}

#backToTop:hover {
	width: 32px;
	height: 32px;
	box-shadow: 1px 1px var(--highlight);
}

#backToTop:hover>span {
	font-weight: 700;
	font-size: 22px;
}

/* nav */

nav {
	width: 100%;
	z-index: 999;
	height: 100px;
	display: flex;
	position: fixed;
	align-items: center;
	animation: fadeInTop 1.5s;
	justify-content: space-evenly;
}

.navbar {
	gap: 35px;
	height: 54px;
	display: flex;
	padding: 0px 25px;
	align-items: center;
	border-radius: 30px;
	background: var(--deep);
	box-shadow:
		0 -4px 8px 0 var(--misty-op5),
		0 8px 16px 0 var(--deep-op5),
		inset 0 4px 8px 0 var(--misty-op5);
}

.navbar a {
	color: var(--shallow);
	transition: color 0.3s;
	font-size: 20px;
	font-weight: 300;
	cursor: pointer;
	display: flex;
	align-items: center;
	width: max-content;
	position: relative;
	text-decoration: none;
}

.navbar a::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0px;
	width: 100%;
	height: 2px;
	background-color: var(--highlight);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar a:hover {
	color: var(--highlight);
	text-shadow: none;
}

.navbar a:hover::after {
	transform: scaleX(1);
}

.navItems {
	display: flex;
	gap: 20px;
	height: 100%;
}

.navbar>.navItems>details {
	width: max-content;
	height: max-content;
	transition: all 0.3s;
}

.navbar>.navItems>details>summary {
	box-sizing: border-box;
	width: 40px;
	height: 100%;
	text-align: center;
	padding: 15px 0px;
	margin-left: 5px;
	transition: all 0.3s;
}

.navbar>.navItems>details>summary::marker {
	content: "";
	display: none;
}

.navbar>.navItems>details>summary>span {
	text-align: center;
	color: var(--shallow) !important;
	cursor: pointer;
	position: relative;
}

.navbar>.navItems>details>summary>span:hover {
	color: var(--highlight) !important;
}

.navbar>.navItems>details>summary>span:hover::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: -15px;
	width: 27px;
	height: 2px;
	background-color: var(--highlight);
	transform-origin: left;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar>.navItems>details>a {
	width: 100%;
	height: 100%;
	text-align: center;
	padding: 10px 5px;
	margin-bottom: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--deep);
}

.navbar .mainButton,
.navbar #languageMenu a {
	text-shadow: none;
}

.navIcons {
	gap: 10px;
	display: flex;
}

.navIcons a,
.languageMenuButton {
	display: flex;
	cursor: pointer;
	align-items: center;
	transition: all 0.3s;
	color: var(--shallow);
}

.navIcons a:hover,
.languageMenuButton:hover {
	color: var(--highlight-bright);
}

.languageMenuButton span {
	pointer-events: none;
}

.languageMenuWrap {
	position: absolute;
	top: 80px;
}

#languageMenu {
	gap: 10px;
	display: flex;
	padding: 10px;
	border-radius: 4px;
	flex-direction: column;
	animation: fadeInTop 0.5s;
	background: var(--highlight);
	justify-content: space-between;
}

#languageMenu span {
	font-weight: 600;
	cursor: pointer;
}

#languageMenu a {
	color: var(--shallow);
}

#languageMenu a:hover {
	color: var(--highlight-bright);
}

.logo {
	height: 70%;
	transition: all 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;

}

.logo:hover {
	transform: scale(1.1);
}

.logo img {
	height: 100%;
	transition: all 0.3s;
	width: 100%;
	object-fit: contain;
	background: filter;
}


/* home / fooldal / otthon PAGE*/

.welcomeSection {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background-position: center !important;
	background-size: cover !important;
}

.welcomeSection img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -100;
	position: fixed;
	object-fit: cover;
	filter: brightness(0.5);
}

.welcomeText {
	width: 97%;
	height: 95%;
	z-index: 99;
	display: flex;
	align-items: center;
	color: var(--shallow);
	flex-direction: column;
	justify-content: center;
}

.welcomeText h1 {
	font-size: 70px;
	font-weight: 700;
	animation: fadeInLeft 1.5s;
	z-index: 100;
}

.welcomeText h3 {
	font-size: 33px;
	font-weight: 500;
	animation: fadeInRight 1.5s;
}

.welcomeText h4 {
	font-size: 25px;
	font-weight: 200;
	font-style: italic;
	animation: moveOver 1.5s;
}

.ctaSection {
	gap: 20px;
	display: grid;
	margin-top: 50px;
	animation: fadeInSimple 1.5s;
	grid-template-columns: repeat(2, 0.1fr);
}

.ctaSectionFlex {
	gap: 30px;
	display: flex;
	justify-content: space-evenly;
	margin-top: 75px;
}

.ctaSectionFlexH {
	gap: 10px;
	display: flex;
	margin-top: 5px;
	margin-bottom: 5px;
}

.shortAboutWrap {
	display: flex;
	padding: 60px 0px;
	color: var(--deep);
	align-items: center;
	flex-direction: column;
	animation: moveOver 1.5s;
	background: var(--shallow);
}

.partnersShowcase {
	width: 100%;
	display: flex;
	align-items: center;
	margin-bottom: 70px;
	flex-direction: column;
	background-size: cover;
	background-position: 60% 40%;
}

.shortAbout {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 100%;
}

.shortAboutSocials {
	width: 100%;
	background: var(--deep-op3);
	backdrop-filter: blur(10px);
}

.homeDescription {
	width: 40%;
	animation: fadeInLeft 1s;
}

.homeDescriptionContact svg path {
	color: var(--highlight-brightest) !important;
	fill: var(--highlight-brightest) !important;
}

.homeDescription h2 {
	font-size: 50px;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 50px 0px;
	text-align: center;
}

.homeDescriptionLogo {
	width: 40%;
	display: flex;
	justify-content: center;
	transition: all 1s;
	animation: fadeInRight 1s;
}

.homeDescriptionLogo img {
	width: 100%;
}

.homeDescriptionLogo h2 {
	font-size: 70px;
	font-weight: 700;
	animation: fadeInLeft 1.5s;
	color: var(--deep);
}

.homeDescriptionLogo:hover {
	transform: scale(1.2);
}

.homeDescription h3 {
	font-size: 35px;
	width: fit-content;
}

.homeDescription h4 {
	margin: 5px 0px 50px 0px;
	color: var(--deep);
	font-weight: 400;
	font-size: 20px;
}

.homeDescription .mainButton span {
	font-weight: 600;
	font-size: 15px;
}

.homeDescription .mainButton:hover>span {
	font-size: 17px;
}

/* service tab */
.services-container {
	width: 80%;
	/* padding: 50px 0px; */
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	justify-content: space-around;
	text-align: center;
	align-items: center;
}

.services-container-wrapper h2 {
	font-size: 40px;
	font-weight: 700;
	color: var(--deep-op7);
}

.services-container-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: var(--shallow);
	padding-bottom: 100px;
}

.services-container h4 {
	color: var(--shallow);
}

/* details tab */

.detailsContent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 75px 0px;
	background: var(--deep-op5);
	backdrop-filter: blur(10px);
}

.detailsWrap {
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.detailsWrap h2 {
	font-size: 40px;
	color: var(--shallow);
	font-weight: 800;
}

.detailsWrap span {
	font-size: 20px;
	color: var(--shallow);
	font-weight: 300;
}

.detailsWrapRes {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 75px 0px;
}

.detailsWrapRes h2 {
	font-size: 40px;
	color: var(--shallow);
	font-weight: 800;
}

.detailsWrapRes span {
	font-size: 20px;
	color: var(--shallow);
	font-weight: 300;
}

.details {
	display: flex;
	justify-content: space-around;
	align-items: center;
	width: 80%;
	margin: 50px 0px 0px 0px;
}

.details div {
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.details h3 {
	color: var(--shallow);
	font-size: 25px;
}

.details span {
	font-size: 22px;
	font-weight: 400;
	color: var(--shallow);
	/* width: 200px; */
}

.details .material-symbols-outlined {
	font-size: 60px;
	font-weight: 400;
	color: var(--shallow);
}

.details a img {
	width: 62px;
	filter: invert(1);
}

.details div img {
	width: 100px;
	height: 65px;
	object-fit: contain;
}

.countUpDetailsItem {
	width: 100%;
}

/* about / rolunk PAGE */

.about-page-hero {
	height: 100vh;
	background:
		linear-gradient(var(--deep-op5), var(--deep-op5)),
		url('./../dash/src/house_ext_img/GiRo-0891.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
}

.about-page-hero-content {
	background: var(--deep-op3);
	backdrop-filter: blur(10px);
	padding: 3rem 2rem;
	border-radius: 8px;
	max-width: 800px;
	margin: 0 1rem;
}

.about-page-hero h1 {
	font-size: 3rem;
	color: var(--shallow);
	margin-bottom: 1rem;
	font-weight: 300;
	letter-spacing: 2px;
}

.about-page-hero p {
	font-size: 1.2rem;
	color: var(--shallow-op5);
	font-weight: 300;
}

.about-page-accent-line {
	width: 80px;
	height: 3px;
	background: var(--highlight);
	margin: 1.5rem auto;
}

.about-page-content-section {
	padding: 5rem 2rem;
	max-width: 1200px;
	margin: 0 auto;
}

.about-page-intro-text {
	background: var(--shallow);
	padding: 3rem;
	border-left: 4px solid var(--highlight);
	margin-bottom: 4rem;
	font-size: 1.1rem;
	color: var(--deep);
	line-height: 1.8;
}

.about-page-cabins-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.about-page-cabin-card {
	background: var(--shallow);
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 4px 20px var(--deep-op3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	text-align: center;
	padding: 2rem;
}

.about-page-cabin-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 30px var(--deep-op5);
}

.about-page-cabin-icon {
	font-size: 4rem;
	margin-bottom: 1rem;
}

.about-page-cabin-name {
	font-size: 1.8rem;
	color: var(--deep);
	margin-bottom: 0.5rem;
	font-weight: 300;
}

.about-page-cabin-subtitle {
	color: var(--misty);
	margin-bottom: 1rem;
}

.about-page-cabin-link {
	display: inline-block;
	padding: 0.8rem 2rem;
	background: var(--highlight);
	color: var(--shallow);
	text-decoration: none;
	border-radius: 4px;
	transition: background 0.3s ease;
	margin-top: 1rem;
}

.about-page-cabin-link:hover {
	background: var(--highlight-bright);
}

.about-page-features {
	background: var(--main);
	padding: 5rem 2rem;
}

.about-page-features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	/* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	gap: 2rem;
}

.about-page-feature-item {
	text-align: center;
	padding: 2rem;
	background: var(--shallow);
	border-radius: 8px;
	transition: transform 0.3s ease;
}

.about-page-feature-item:hover {
	transform: scale(1.05);
}

.about-page-feature-icon {
	font-size: 3rem;
	margin-bottom: 1rem;
}

.about-page-feature-title {
	font-size: 1.3rem;
	color: var(--deep);
	margin-bottom: 0.5rem;
}

.about-page-feature-text {
	color: var(--misty);
	font-size: 0.95rem;
}

.about-page-image-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
	gap: 1.5rem;
	margin: 4rem 0;
}

.about-page-image-box {
	height: 300px;
	border-radius: 8px;
	box-shadow: 0 4px 15px var(--deep-op3);
	transition: transform 0.3s ease;
}

.about-page-image-box:hover {
	transform: scale(1.02);
}

.about-page-image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 8px;
}

.secondaryWelcome {
	width: 100%;
	display: flex;
	padding-top: 150px;
	align-items: center;
	justify-content: center;
}

.secondaryWelcome img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	z-index: -100;
	object-position: top;
}

.secondaryWelcome .welcomeSectionBg {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: fixed;
	z-index: -100;
	border-radius: 0px;
}

.secWelcomeText {
	z-index: 99;
	color: var(--shallow);
	display: flex;
	flex-direction: column;
	align-items: center;
}

.secWelcomeText h1 {
	font-size: 60px;
	font-weight: 700;
	color: var(--deep);
}

.secWelcomeText h3 {
	font-size: 40px;
	font-weight: 300;
	animation: fadeInRight 1.5s;
}

.secWelcomeText h4 {
	font-size: 25px;
	font-weight: 400;
	animation: fadeInRight 1.5s;
	color: var(--highlight);
}

#itemDescription {
	overflow: hidden;
	margin-bottom: 20px;
}

#itemDescriptionMore,
#itemDescriptionLess {
	cursor: pointer;
	border: 2px solid var(--deep);
	border-radius: 12px;
	padding: 3px 8px;
	align-items: center;
	display: flex;
	font-size: 12px;
	color: var(--deep);
}

#itemDescriptionButtons {
	width: 100%;
	display: flex;
	justify-content: start;
}

.value {
	width: 33%;
	height: 475px;
	display: flex;
	transition: all 1s;
	align-items: center;
	flex-direction: column;
	background: var(--main);
}

.value:hover {
	transform: scale(1.02);
}

.value img {
	width: 100%;
}

.value h3 {
	font-size: 30px;
	margin: 20px 0px;
	color: var(--main1);
}

.value p {
	width: 80%;
	font-weight: 300;
	font-style: italic;
	color: var(--main1);
	text-align: justify;
}

/* home description wrap */

.homeDescription {
	width: 100%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	animation: fadeInLeft 1s;
}

.homeDescription h2 {
	font-size: 50px;
	text-align: center;
	color: var(--shallow);
	padding: 0px 0px 10px 0px;
	font-family: "Montserrat", serif;
}

.homeDescription p {
	width: 60%;
	font-size: 25px;
	margin-top: 20px;
	font-weight: 400;
	text-align: center;
	color: var(--shallow);
}

.homeDescription p:nth-child(1) {
	animation: fadeInLeft 0.5s;
}

.homeDescription p:nth-child(2) {
	animation: fadeInLeft 1s;
}

.homeDescription p:nth-child(3) {
	animation: fadeInLeft 1.5s;
}

.homeDescription p:nth-child(4) {
	animation: fadeInLeft 2s;
}

.homeDescription p:nth-child(5) {
	animation: fadeInLeft 2.5s;
}

.homeDescriptionLogo {
	width: 40%;
	display: flex;
	cursor: pointer;
	transition: all 1s;
	justify-content: end;
	animation: fadeInRight 1s;
}

.homeDescriptionLogo:hover {
	transform: scale(1.02);
}

.homeDescriptionLogo img {
	width: 500px;
	height: 450px;
	object-fit: cover;
	border-radius: 15px;
}

.homeDescription h3 {
	font-size: 35px;
	color: var(--deep);
	width: fit-content;
}

.homeDescription h4 {
	font-size: 20px;
	font-weight: 400;
	color: var(--deep);
	margin: 5px 0px 50px 0px;
}

.homeDescriptionContact {
	gap: 50px;
	display: flex;
	margin-top: 50px;
	justify-content: center;
}

.homeDescriptionContact a {
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	border-radius: 10px;
	transition: all 0.3s;
	justify-content: center;
	background: var(--highlight);
}

.homeDescriptionContact a:hover {
	filter: brightness(1.1);
	transform: scale(1.1);
	box-shadow:
		0 -4px 8px 0 var(--shallow-op5),
		0 8px 16px 0 var(--deep-op5),
		inset 0 4px 8px 0 var(--shallow-op5);
}

.homeDescriptionContact a img {
	width: 75%;
}

.homeDescriptionContact a span {
	font-size: 65px;
	color: var(--highlight-brightest);
}

.homeDescriptionContact svg {
	color: var(--highlight-brightest);
	fill: var(--highlight-brightest);
}

.homeDescriptionWrap {
	width: 100%;
	display: flex;
	padding: 50px 0px;
	flex-direction: column;
	backdrop-filter: brightness(0.75);
}

.homeDescriptionWrapContact {
	backdrop-filter: brightness(1);
}

.mapShowcase {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* padding: 100px 0px; */
	gap: 50px;
	width: 80vw;
}

.mapShowcaseTitle {
	color: var(--highlight) !important;
	font-size: 48px;
	text-align: center;
	margin-bottom: 50px;
}

.mapShowcase h2 {
	font-size: 48px;
	color: var(--shallow);
}

.mapShowcase iframe {
	width: 100%;
	height: 600px;
	border-radius: 20px;
}

.messageBanner {
	width: 100%;
	height: 300px;
	background: var(--highlight);
	display: flex;
	justify-content: space-evenly;
	align-items: center;
}

.newsletterEmailBox {
	width: 100%;
	height: 50px;
	padding-left: 30px;
	border-radius: 30px;
	margin-bottom: 10px;
	transition: all 0.3s;
	border: 2px solid var(--shallow);
}

.newsletterEmailBox:hover {
	border: 2px solid var(--highlight);
}

.secondaryBackground .messageBanner {
	background: var(--main);
}

.messageWrap {
	width: 60%;
	display: flex;
	flex-direction: column;
}

.messageWrap h2 {
	font-size: 30px;
	font-weight: 750;
	color: var(--shallow);
	padding-bottom: 10px;
}

.messageWrap p {
	font-size: 20px;
	color: var(--shallow);
	font-weight: 300;
}

.secondaryBackground .messageWrap h2,
.secondaryBackground .messageWrap p {
	color: var(--shallow);
}

#itemDetails {
	margin-top: 40px;
}

.projectsWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.projectsWrapper .material-symbols-outlined {
	color: var(--deep);
	font-size: 50px;
}

#content6 {
	margin: 100px 0px;
}

/* gallery css */
.modal {
	position: fixed;
	z-index: 999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	flex-direction: column;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.modal .exit {
	width: 90%;
	display: flex;
	justify-content: end;
}

.modal-content {
	max-width: 80%;
	max-height: 80%;
}

#close {
	color: var(--shallow);
	background-color: rgba(255, 255, 255, 0.3);
	font-size: 28px;
	font-weight: bold;
	padding: 5px 13px 5px 13px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s;
	right: 0;
}

#close:hover {
	color: var(--deep);
}

#largeGallery {
	display: grid;
	grid-template-columns: repeat(4, 300px);
	gap: 20px;
}

#largeGallery img {
	width: 100%;
	cursor: pointer;
	transition: all 0.3s;
}

#largeGallery img:hover {
	transform: scale(1.05);
}

.largeGalleryNoJs {
	padding: 50px 0px;
	display: grid;
	grid-template-columns: repeat(4, 300px);
	gap: 20px;
	justify-content: center;
}

.largeGalleryNoJs img {
	width: 100%;
	cursor: pointer;
	transition: all 0.3s;
	max-height: 150px;
	object-fit: cover;
	max-width: 350px;
	object-position: center;
	border-radius: 10px;
}

.largeGalleryNoJs img:hover {
	transform: scale(1.05);
}

/* Carousel */
.slideshow {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.slideshow .slide {
	transition: all 0.3s;
	display: flex;
	justify-content: center;
}

.slideshow .slide img {
	max-width: 50vw;
	max-height: 85vh;
}

.carouselWrap {
	display: flex;
	justify-content: center;
	width: 90%;
}

#prev,
#next {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	color: var(--shallow);
	font-weight: bold;
	font-size: 60px;
	transition: all 0.6s;
	border-radius: 0 3px 3px 0;
	user-select: none;
}

#prev:hover,
#next:hover {
	color: #777;
}

.slideshow-dots {
	margin-top: 30px;
	display: flex;
}

.dot {
	cursor: pointer;
	height: 15px;
	width: 15px;
	margin: 0 5px;
	background-color: #bbb;
	border-radius: 50%;
	transition: all 0.1s;
}

.currentDot {
	background-color: #444;
}

.dot:hover {
	background-color: #444;
}

/* contact */

.noBg {
	background: none;
	animation: none;
	;
}

.logoBackground {
	background: linear-gradient(var(--deep-op5), var(--deep-op5)), url(./img/contact_logo.png) no-repeat center center;
	background-size: cover;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
}

.contactTitle {
	color: var(--shallow) !important;
	font-size: 48px;
	text-align: center;
	text-shadow: 2px 2px 4px var(--deep);
	/* margin-bottom: 100px; */
}

.contactWrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* animation: moveOver 1s; */
	width: 90%;
}

.contactWrap .homeDescriptionContact {
	margin: 0px;
}

.contactWrap .homeDescriptionContact a {
	background: var(--highlight);
}

.contactDesk {
	display: flex;
	position: relative;
	justify-content: space-between;
	padding: 50px;
	background: var(--deep-op5);
	border-radius: 10px;
	width: 60%;
	box-shadow:
		0 -4px 8px 0 var(--misty-op5),
		0 8px 16px 0 var(--deep-op5),
		inset 0 4px 8px 0 var(--misty-op5);
	/* Use backdrop filter for background blur without blurring children */
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);

	/* Make sure it's visually transparent */
}

.contactDeskHalf {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 60px;
	width: 45%;
	z-index: 1;
}

.contactDeskHalf h2 {
	color: var(--shallow);
	font-weight: 800;
	font-size: 40px;
}

.contactDeskHalf a {
	color: var(--bg);
	font-weight: 600;
	font-size: 20px;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 5px;
}

.contactDeskHalf a:hover {
	color: var(--highlight);
}

.contactDeskHalf iframe {
	width: 100%;
	height: 100%;
	transition: 1s;
}

.contact {
	display: flex;
	justify-content: space-around;
	width: 65%;
}

.contact a {
	width: 5%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: var(--shallow);
	text-align: center;
	filter: drop-shadow(2px 4px 6px var(--deep));
}

.contact a img,
.contact a span {
	transition: all 0.3s;
	width: 100%;
}

.contact a span {
	font-size: 50px;
}

.contact a:hover {
	font-weight: 800;
}

.contact a:hover>img,
.contact a:hover>span {
	transform: scale(1.2);
	filter: drop-shadow(1px 1px 5px var(--shallow));
}

.contact a p {
	position: absolute;
	font-size: 25px;
	margin-top: 100px;
	font-weight: 600;
}

.contact img {
	position: relative;
	filter: none;
	z-index: 1;
}

.pageViews {
	display: flex;
	justify-content: center;
	align-items: center;
}

.pageViews img {
	width: 10%;
}

.pageViews span {
	font-size: 30px;
	font-weight: 500;
}

/* single */
.smallContact {
	/* background: url(./img/placeholder.jpg); */
	background-size: cover;
	background-position: center;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	/* padding: 50px; */
}

.smallContactBackdrop {
	backdrop-filter: brightness(0.75);
	background: none;
	width: 100%;
	padding: 0px;
	display: flex;
	align-items: center;
	flex-direction: row;
	justify-content: space-evenly;
}

.smallContactIcons,
.smallContactIcons a {
	gap: 10px;
	display: flex;
	align-items: center;
	flex-direction: row;
	text-decoration: none;
	justify-content: center;
	transition: all 0.3s;
}

.smallContactIcons a:hover {
	transform: scale(1.1);
}

.smallContactIcons a:hover span {
	color: var(--deep);
}

.smallContactIcons a span {
	text-decoration: none;
	color: var(--deep);
	font-size: 25px;
}

.smallContactIcons {
	gap: 50px;
}

.smallContactText {
	display: flex;
	font-size: 30px;
	margin-bottom: 10px;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

.smallContactText span {
	color: var(--deep);
}

.smallContact .detailsWrap {
	background: var(--deep);
}

.smallContact .details span {
	font-size: 65px;
	transition: all 0.3s;
}

.smallContact .details span:hover {
	color: var(--deep);
}

.detailsWrapRes h2 {
	color: var(--shallow);
	border-bottom: none;
}

.centerDiv {
	justify-content: center;
	flex-direction: column !important;
	align-items: center;
	background: var(--shallow);
	animation: moveOver 1.5s;
	padding: 30px 0px;
}

.centerDiv .serviceDescription {
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px 0px;
}

/* calendar */
.calendarBg {
	background-color: var(--shallow);
	padding: 50px 0px;
	animation: moveOver 1.5s;
}

.calendar {
	width: 40%;
	display: flex;
	flex-direction: column;
}

.week {
	display: flex;
}

.day,
.calendar .dayname {
	width: 25%;
	height: 75px;
	background-color: var(--misty-op5);
	color: var(--shallow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	transition: all 0.15s;
}

.day {
	color: var(--deep);
}

.day span,
.day div,
.day input {
	pointer-events: none;
}

.calendar .dayname {
	background-color: var(--highlight);
	cursor: default;
}

.calendar .monthControl {
	font-size: 22px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}

.calendar .monthControl:hover {
	box-shadow: inset 1px 1px 15px var(--main);
}

.calendar #increaseMonth span,
.calendar #decreaseMonth span {
	font-size: 40px;
}

.day:hover {
	box-shadow: inset 1px 1px 10px var(--deep);
}

.dateControlMenu {
	flex-direction: column;
	position: absolute;
	background: var(--main);
	padding: 20px;
	animation: fadeInTop 1s;
	z-index: 99;
}

.dateControlMenu span {
	font-size: 20px;
	color: var(--deep);
	transition: all 0.3s;
	cursor: pointer;
}

.dateControlMenu span:hover {
	text-decoration: underline;
}

.dateControlMenu1 {
	margin: 80px 0px;
}

.dateControlMenu2 {
	margin: 80px 90px;
}

.calendar .otherMonth {
	background-color: var(--misty-op7);
}

.calendar .previousMonth {
	background-color: var(--misty-op7);
	filter: brightness(0.7);
	cursor: default;
	pointer-events: none;
}

.calendarInfo {
	width: 40%;
	background: var(--shallow);
	min-height: 300px;
	transition: all 0.3s;
}

.calendarInfo div {
	padding: 50px;
	transition: all 0.3s;
}

.calendarInfo div .statusExplain {
	display: flex;
	align-items: center;
	padding: 0;
	gap: 20px;
}

.calendarInfo div .statusExplain div {
	padding: 0;
}

.calendarInfo div h1 {
	color: var(--deep);
	font-size: 25px;
	transition: all 0.3s;
	padding: 20px 0px;
}

.calendarInfo div h4 {
	color: var(--deep);
	font-size: 18px;
	transition: all 0.3s;
}

.calendarInfo div h2 {
	color: var(--deep);
}

.calendarInfo div .mainButton,
.calendarInfo div .secondaryButton,
.calendarInfo div .tertiaryButton,
.calendarInfo div .quaternaryButton {
	height: 50px;
	width: 300px;
	padding: 0;
	margin: 20px 0px 0px 0px;
}

.calendarInfo div p {
	color: var(--deep);
	padding: 10px;
	display: flex;
	align-items: center;
	font-weight: 200;
}

.calendarInfo div p span {
	margin-left: 20px;
	font-weight: 600;
}

.calendarInfo div p div {
	padding: 0;
	margin-left: 20px;
}

.status-green,
.status-yellow,
.status-red {
	height: 7px;
	width: 7px;
	border-radius: 50%;
	background: darkgreen;
}

.status-yellow {
	background: orange;
}

.status-red {
	background: red;
}

.day-unavailable {
	filter: contrast(0.8) brightness(0.9);
	cursor: default;
	pointer-events: none;
}

.day-unavailable:hover {
	box-shadow: none;
}

.day-unavailable-selection {
	filter: contrast(1) brightness(0.1);
	pointer-events: none;
	cursor: default;
}

.day-unavailable-selection:hover {
	box-shadow: none;
}

.day-start-selection {
	cursor: default;
	box-sizing: border-box;
	width: calc(25% - 5px);
	border-left: 5px solid var(--highlight);
	background-color: var(--highlight-brightest) !important;
}

.day-mid-selection {
	cursor: default;
	pointer-events: none;
	filter: unset !important;
	background-color: var(--highlight-brightest) !important;
}

.day-end-selection {
	cursor: default;
	pointer-events: none;
	box-sizing: border-box;
	width: calc(25% - 5px);
	border-right: 5px solid var(--highlight);
	background-color: var(--highlight-brightest) !important;
}

#form_start_date {
	pointer-events: none;
	display: none;
}

#form_end_date {
	pointer-events: none;
	display: none;
}

/* reservations */
.resHeader {
	width: 80%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: left;
	margin: 50px auto;
}

.resDate {
	display: flex;
	align-items: center;
}

.resDate span {
	color: var(--deep-op7);
	font-size: 30px;
	font-weight: 600;
	margin-bottom: 10px;
}

.resDate span.resDateSpan {
	color: var(--deep-op5);
	font-size: 30px;
	font-weight: 600;
}

#reserveAllButton {
	margin-top: 20px;
	width: 500px;
}

.secondaryButton,
.tertiaryButton,
.quaternaryButton {
	color: var(--shallow);
	font-weight: 600;
	font-size: 20px;
	transition: all 0.3s;
}

.resHeader .mainButton {
	color: var(--deep);
}

.secondaryButton:hover,
.tertiaryButton:hover,
.quaternaryButton:hover {
	color: var(--deep);
}

.resHeader .mainButton:hover {
	color: var(--highlight);
}

.resData {
	width: 80%;
	display: flex;
	flex-direction: column;
}

.resRoom label {
	color: var(--deep);
}

/* crud */
.crudWrap {
	width: 100%;
	display: flex;
	justify-content: center;
}

.crudTable {
	width: 100%;
}

.crudHeader {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid wheat;
	padding: 10px 0px;
}

.crudHeader h1 {
	color: wheat;
}

.crudButtons {
	width: 25%;
	display: flex;
	justify-content: space-between;
}

.crudBody {
	display: flex;
	justify-content: space-around;
	margin-bottom: 50px;
}

.crudBodyTable {
	display: flex;
	flex-direction: column;
	margin-top: 50px;
}

.crudBody h3 {
	color: var(--shallow);
	padding: 50px;
	font-size: 25px;
}

/* reservation form  */

#reservationFormWrapper {
	z-index: 9999999;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgb(0, 0, 0, 0.7);
}

#reservationFormWrapper #reservationForm {
	width: 50vw;
	height: max-content;
	margin: auto;
	padding: 50px;
	background: var(--bg-dark);
	gap: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border-radius: 40px;
}

#reservationFormWrapper .reservationFormTitle {
	width: 100%;
	text-align: center;
	font-size: 30px;
}

#reservationFormWrapper .reservationData {
	width: 100%;
	gap: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

#reservationFormWrapper .reservationDataItem {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: left;
	align-items: center;
}

#reservationFormWrapper .reservationDataItem label {
	box-sizing: border-box;
	gap: 10px;
	width: 100%;
	color: var(--deep);
	display: flex;
	align-items: center;
	margin-left: 50px;
}

#reservationFormWrapper .reservationDataItem input {
	width: 100%;
	margin: 10px 0px;
	padding: 15px 30px;
	border: none;
	border-radius: 25px;
	font-size: 15px;
	font-weight: 600;
	color: var(--deep);
	background: var(--bg);
	box-shadow: inset 0 5px 10px var(--bg-light), 0 5px 10px var(--deep-op3);
}

#reservation_dates,
#reservation_cabin_names {
	pointer-events: none;

}


#reservationFormWrapper .ctaSectionFlex {
	margin-top: 20px;
	gap: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

#reservationFormWrapper .mainButton:hover {
	background-color: var(--bg);
	box-shadow: inset 0 5px 10px var(--bg-light), 0 5px 10px var(--deep-op3);
}

/* RESERVATION FORM END */

.radioButtons {
	display: flex;
	width: 100%;
	padding: 5px 0px;
}

.radioButtons input {
	width: auto !important;
	transform: scale(1.5);
	margin: 0px 20px !important;
}

.ctaSectionMobile {
	padding: 0px !important;
}

.ctaSectionFlex span {
	border: none;
}

/* uploader */

.messageUploaderBackground {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: conic-gradient(from 180deg, var(--highlight), var(--highlight-brightest), var(--highlight));
	background-size: cover;
	width: 100%;
	height: 100%;
}

.uploaderMessage {
	width: 100%;
	height: 100vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.uploaderMessage .material-symbols-outlined {
	font-size: 70px;
	animation: loadingRotation infinite;
}

/* footer */
footer {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: space-around;
	align-items: center;
	padding: 10px 0px;
	color: var(--shallow);
	background: var(--deep-op5);
	backdrop-filter: blur(10px);
}

.footerCenterWrap {
	display: flex;
	width: 100%;
	justify-content: center;
	gap: 25px
}

footer img {
	width: 75px;
	transition: all 1s;
	margin: 0px 30px;
}

footer img:hover {
	transform: scale(1.1);
}

.footerLogo {
	display: flex;
	justify-content: center;
	align-items: center;
}

.footerLogo img {
	filter: invert(1);
}

.footerLogo span {
	color: var(--shallow);
	font-weight: 300;
	font-size: 14px;
}

.footerLogo a {
	color: var(--shallow);
	font-weight: 600;
	transition: all 0.3s;
}

.footerLogo a:hover {
	color: var(--highlight);
}

.footerNav {
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
}

footer .navbar a {
	font-size: 18px;
	font-weight: 400;
	margin: 3px 0px;
	color: var(--shallow);
}

footer .navbar a:hover {
	font-size: 19px;
}

.footerListWrap {
	display: flex;
	width: 100%;
	justify-content: space-around;
	margin: 100px 0px 50px 0px;
}

.footerList {
	display: flex;
	flex-direction: column;
}

.footerList a {
	color: var(--shallow);
	transition: all 0.3s;
}

.footerList a:hover {
	color: var(--highlight);
}

.footerList ul {
	padding-left: 25px;
	margin: 5px 0px;
}

.footerList li::marker {
	color: var(--shallow);
}

.footerIcons {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 10px;
}

.footerIcons a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	color: var(--shallow);
	transition: all 0.3s;
}

.footerIcons a:hover {
	color: var(--highlight);
}

/* mobile */
.navbar-mobile {
	display: none;
}

#mobileMenuIcon {
	display: none;
}

.bigButton {
	height: 50px;
	width: 330px;
}

.noMargin {
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}

.services-container {
	gap: 20px;
	width: 80vw;
	display: grid;
	margin: 0 auto;
	margin-top: 50px;
	grid-template-columns: repeat(2, 1fr) !important;
}

.cabin-card {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	width: 100% !important;
	height: 700px;
	padding: 20px;
	background-color: var(--highlight);
	border-radius: 40px;
	box-shadow: 0 0 10px var(--deep-op5);
	transition: all 0.3s;
}

.cabin-card:hover {
	transform: scale(1.01);
	box-shadow: 0 0 20px var(--deep-op5);
}

.cabin-card>* {
	width: 100% !important;
	text-align: justify;
}

.cabin-img {
	width: 100% !important;
	height: 400px !important;
	object-fit: cover;
	border-radius: 20px;
	margin-bottom: 20px;
}

.cabin-name {
	font-size: 2rem;
	font-weight: 600;
	color: var(--shallow);
	margin-bottom: 10px;
}

.cabin-desc {
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--shallow-op5);
	margin-bottom: 20px;
	height: 150px;
}

.cabin-buttons {
	display: flex;
	justify-content: space-around;
	align-items: center;
	margin-top: 20px;
	gap: 20px;
}

.cabin-buttons .mainButton {
	width: 100%;
}

.noAvailable {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100px;
	width: max-content;
	padding: 0px 50px;
	margin: 0 auto;
	margin-top: 50px;
	background-color: var(--highlight);
	border-radius: 40px;
	box-shadow:
		0 4px 10px var(--deep-op5),
		inset 0 2px 10px var(--shallow-op5);
	transition: all 0.3s;
}

.noAvailable h4 {
	font-size: 2rem;
	font-weight: 600;
	color: var(--shallow);
	margin-bottom: 10px;
}


.modernCardWrapper {
	display: flex;
	margin: 100px 0px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.modernCardWrapper h2 {
	font-size: 40px;
	margin-bottom: 20px;
	color: var(--shallow);
}

.modernCards {
	width: 80%;
	margin: 0 auto;
	display: grid;
	padding: 20px;
	grid-gap: 20px;
	grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
}

.modernCard {
	height: 450px;
	border-radius: 20px;
	transition: all 0.3s;
	background-color: var(--highlight);
	box-shadow: 0 0 30px var(--deep-op5);
}

.modernCard:hover {
	transform: scale(1.05);
	background-color: var(--highlight-bright);
}

.containerModernCards {
	position: relative;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.containerModernCards img {
	width: 100%;
	display: block;
	max-height: 200px;
	object-fit: cover;
	object-position: center;
	border-radius: 20px 20px 0 0;
}

.containerModernCards:after {
	top: 0;
	left: 0;
	opacity: 0;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	border-radius: 20px 20px 0 0;
}

.detailsModernCards {
	height: 250px;
	overflow: hidden;
	padding: 20px 10px;
}

.detailsModernCards>h3 {
	font-size: 25px;
	font-weight: 600;
	text-align: right;
	color: var(--shallow);
	margin: 0px 20px 10px 0px;
}

.detailsModernCards>p {
	font-size: 0.8rem;
	font-weight: 400;
	line-height: 30px;
	text-align: left;
	color: var(--shallow);
	margin: 0px 20px 10px 20px;
}

.aboutWrapper {
	gap: 100px;
	width: 100%;
	display: flex;
	padding: 50px 0px;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.aboutLeft {
	gap: 50px;
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
}

.aboutRight {
	gap: 50px;
	width: 80%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row-reverse;
}

.aboutDescription {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.aboutDescription h3 {
	width: 100%;
	font-size: 25px;
	font-weight: 600;
	margin-bottom: 20px;
	color: var(--highlight);
	border-bottom: 3px solid var(--highlight);
}

.aboutDescription p {
	width: 100%;
	font-size: 20px;
	font-weight: 400;
	color: var(--deep);
	margin-bottom: 20px;
	text-align: justify;
}

.aboutImageGrid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.aboutImageGrid img {
	width: 300px;
}

.shortContactMobile {
	height: 20vh !important;
}



.galleryContainer {
	width: min(1500px, 100%);
	margin: 0 auto;
	columns: 4 300px;
	column-gap: 1em;
	margin-bottom: 100px;
}

.galleryContainer img {
	display: block;
	margin-bottom: 1em;
	width: 100%;
}

.aboutUsSection {
	box-sizing: border-box;
	margin: 100px 0px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.aboutUsWrapper {
	box-sizing: border-box;
	width: 80%;
	margin: 0 auto;
}

.aboutUsWrapper h2 {
	width: 100%;
	text-align: center;
	font-size: 33px;
	margin-bottom: 20px;
	color: var(--shallow);
}

.aboutUsWrapper p {
	font-size: 16px;
	font-weight: 400;
	color: var(--deep);
	margin-bottom: 20px;
	text-align: justify;
}

.houseCards {
	display: grid;
	gap: 40px;
	margin-top: 60px;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.houseCard {
	background: var(--highlight);
	color: var(--shallow);
	border-radius: 28px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	box-shadow: 0 30px 60px var(--deep-op5);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.houseCard:hover {
	transform: translateY(-6px);
	box-shadow: 0 35px 70px var(--deep-op5);
}

.houseCardMedia {
	height: 250px;
	position: relative;
	overflow: hidden;
}

.houseCardMedia img {
	width: 100%;
	height: 250px;
	display: block;
	object-fit: cover;
	transition: transform 0.45s ease;
}


.houseCardBadge {
	position: absolute;
	top: 20px;
	left: 20px;
	padding: 8px 18px;
	border-radius: 999px;
	background: var(--deep-op5);
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.houseCardBody {
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 24px;
	padding: 32px 28px 28px;
	height:calc(100% - 250px);
}

.houseCardHeader {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.houseCardTitle {
	margin: 0;
	font-size: 32px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.houseCardSubtitle {
	margin: 0;
	font-size: 18px;
	color: var(--misty-op5);
	font-weight: 500;
}

.houseCardStats {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.houseCardStat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border-radius: 999px;
	background: var(--shallow-op3);
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.houseCardStat .material-symbols-outlined {
	font-size: 22px;
}

.houseCardList {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px;
	list-style: none;
}

.houseCardList li {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	/* line-height: 1.6; */
	font-size: 16px;
	color: var(--shallow-op7);
}

.houseCardList li::before {
	content: "";
	width: 10px;
	height: 10px;
	margin-top: 8px;
	border-radius: 50%;
	background: var(--highlight-bright);
	flex-shrink: 0;
	box-shadow: 0 0 0 3px var(--shallow-op3);
}

.houseCardReservationBtn {
	width: 100% !important;
	height: 50px;
	max-width: none;
	margin-top: auto;
	background-color: var(--highlight-bright);
}

.houseCardReservationBtn span {
	font-size: 18px;
}

.houseIntro {
	display: grid;
	gap: 40px;
	margin-top: 40px;
	margin-bottom: 40px;
	grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
	align-items: start;
}

.houseIntroText {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: var(--shallow-op3);
	padding: 32px;
	border-radius: 24px;
	box-shadow: inset 0 0 0 1px var(--shallow-op3);
	backdrop-filter: blur(6px);
	height: 30vh;
}

.houseIntroText p {
	margin: 0;
	font-size: 18px;
	line-height: 1.75;
	color: var(--shallow);
}

.houseIntroHighlights {
	background: var(--highlight);
	color: var(--shallow);
	border-radius: 24px;
	padding: 32px;
	display: flex;
	flex-direction: column;
	gap: 18px;
	box-shadow: 0 25px 50px var(--deep-op5);
	height: 30vh;
}

.houseIntroHighlights h3 {
	margin: 0;
	font-size: 24px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.houseIntroHighlights ul {
	margin: 0;
	padding: 0;
	display: grid;
	gap: 14px;
	list-style: none;
}

.houseIntroHighlights li {
	display: grid;
	grid-template-columns: 32px 1fr;
	align-items: center;
	gap: 14px;
	font-size: 16px;
	line-height: 1.6;
}

.houseIntroHighlights .material-symbols-outlined {
	font-size: 28px;
	color: var(--highlight-bright);
	background: var(--deep-op5);
	border-radius: 50%;
	width: 34px;
	height: 34px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

#heroSection {
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.greyWolfHero {
	background: url("./../dash/src/house_ext_img/greywolf.png");
}

.brownBearHero {
	background: url("./../dash/src/house_ext_img/brownbear.png");
}

.gazeboHero {
	background: url("./../dash/src/service_img/image00004.jpeg");
}

#heroSection::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
}

#heroSection>* {
	position: relative;
	z-index: 1;
}

#heroSection h1 {
	font-size: 48px;
	font-weight: 700;
	color: var(--shallow);
	text-shadow: 2px 2px 4px var(--deep-op5);
}

#heroSection p {
	font-size: 24px;
	font-weight: 400;
	color: var(--shallow);
	text-shadow: 2px 2px 4px var(--deep-op5);
}

@keyframes arrowDown {
	0% {
		transform: translate(-50%, 0) scale(1);
	}

	50% {
		transform: translate(-50%, 10px) scale(1.1);
	}

	100% {
		transform: translate(-50%, 0) scale(1);
	}
}

#arrowDown {
	position: absolute;
	bottom: 32px;
	left: 50%;
	font-size: 48px;
	color: var(--shallow);
	animation: arrowDown 2s infinite;
	filter: drop-shadow(0 8px 16px var(--deep-op5));
}

#arrowDown:hover {
	cursor: pointer;
	color: var(--highlight-brightest);
	filter: drop-shadow(0 8px 16px var(--highlight-brightest));
}

.transparentCard {
	background: transparent;
	box-shadow: none;
	text-align: center;
}

.transparentCard:hover {
	transform: none;
	box-shadow: none;
	cursor: default;
}

.transparentCard h2 {
	color: var(--highlight);
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

#whyCardContainer {
	width: 100%;
	height: 100%;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 10px;
}

.whyCard {
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	display: grid;
	padding: 50px;
	border-radius: 28px;
	grid-template-columns: repeat(1, 1fr);
	align-content: center;
	justify-items: center;
	background: linear-gradient(135deg, var(--highlight), var(--highlight-brightest));
	transition: background 1s;
}

.whyCard:hover {
	background: linear-gradient(135deg, var(--highlight-brightest), var(--highlight));
}

.whyCard:hover p {
	text-shadow: 0 6px 16px var(--deep-op7);
}

.whyCard span.material-symbols-outlined {
	font-size: 42px;
	color: var(--shallow);
	margin-bottom: 8px;
	text-shadow: 0 6px 16px var(--deep-op7);
}

.whyCard p {
	font-size: 18px;
	line-height: 1.5;
	margin: 0;
	text-align: center;
	color: var(--shallow);
}

#houseGallery {
	height: max-content;
	width: 80%;
	margin: 10vh auto;
}

#houseGallery h2 {
	width: 100%;
	text-align: center;
	margin-bottom: 50px;
	font-size: 48px;
	letter-spacing: 0.04em;
	color: var(--highlight);
}

#gelleryContainer img {
	width: 300px;
}

.programGrid {
	box-sizing: border-box;
	width: 80%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
	gap: 20px;
	padding: 20px;
}

.programCard {
	box-sizing: border-box;
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	min-height: 340px;
	padding: 24px;
	border-radius: 20px;
	overflow: hidden;
	color: var(--shallow);
	text-shadow: 0 4px 18px var(--deep);
}

.programCard img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.5);
	transition: transform 0.4s ease;
}

.programCard:hover img {
	transform: scale(1.1);
}

.programCardContent {
	position: relative;
	width: 100%;
	border-radius: 16px;
	padding: 20px;
}

.programCard h3 {
	margin: 0 0 12px;
	font-size: 1.3rem;
}

.programCard p {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.6;
}

.programContact {
	display: flex;
	gap: 12px;
	align-items: center;
}

.programContact a {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: var(--shallow-op3);
	color: inherit;
	transition: background-color 0.2s ease-in-out;
}

.programContact a:hover {
	background-color: var(--shallow-op5);
	box-shadow:
		0 0 10px var(--shallow-op5),
		inset 0 0 10px var(--deep-op5);
}

.programCardContent>details {
	line-height: 1.6;
	margin-bottom: 20px;
	color: var(--shallow-op7);
	font-size: 14px !important;
}

.programCardContent>details summary {
	font-size: 20px !important;
	font-weight: 600 !important;
	/* width: max-content; */
	color: var(--shallow);
}

.programCardContent>details summary:hover {
	color: var(--highlight);
	cursor: pointer;
}

.uploaderMessage {
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 30vw;
	height: 30vh;

	background: var(--bg-dark);

	box-shadow: var(--default-box-shadow);
	border-radius: var(--border-radius-m);

	padding: var(--padding-xxxl);

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.uploaderMessage h1,
.uploaderMessage>span {
	color: var(--deep);
	font-size: var(--font-size-l);
	font-weight: 600;
}

.uploaderMessage>a {
	margin: var(--margin-xl) 0px !important;
	font-size: var(--font-size-m) !important;
	text-decoration: none !important;
	color: var(--shallow) !important;
}

.uploaderMessage>a:hover {
	color: var(--highlight) !important;
}


.uploaderMessage>span {
	font-size: var(--font-size-xxl) !important;
	animation: loadingRotation var(--animation-extra-long) infinite !important;
}