/** @format */

: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: 10px;
	--padding-s: 20px;
	--padding-m: 30px;
	--padding-l: 40px;
	--padding-xl: 50px;
	--padding-xxl: 60px;
	--padding-xxxl: 70px;
	--padding-xxxxl: 80px;

	--margin-xs: 10px;
	--margin-s: 20px;
	--margin-m: 30px;
	--margin-l: 40px;
	--margin-xl: 50px;
	--margin-xxl: 60px;
	--margin-xxxl: 70px;
	--margin-xxxxl: 80px;

	--border-radius-xs: 10px;
	--border-radius-s: 20px;
	--border-radius-m: 30px;
	--border-radius-l: 40px;
	--border-radius-xl: 50px;

	--font-size-xs: 1rem;
	--font-size-s: 1.5rem;
	--font-size-m: 2rem;
	--font-size-l: 2.5rem;
	--font-size-xl: 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: 20px;
	--gap-s: 40px;
	--gap-m: 60px;
	--gap-l: 80px;
	--gap-xl: 100px;
	--gap-xxl: 120px;

	--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);
}

* {
	box-sizing: border-box;
	font-size: 30px;
}

#gallery {
	grid-template-columns: repeat(1, 1fr);
}

.slideshow .slide img {
	max-width: 80vw;
	max-height: 80vh;
}

#prev,
#next {
	font-size: 30px;
}

.gallery-info h2 {
	transform: translate(-60px, -25px);
}

.gallery-info span {
	opacity: 1;
	animation: none;
	font-size: 20px;
}

/* nav */
nav {
	height: 200px;
	position: fixed;
	background: rgb(0, 0, 0, 0.2);
	justify-content: space-between;
}

.navbar {
	display: none;
}

#languageMenu {
	display: none;
}

.logo img {
	padding-left: 70px;
	height: 80%;
}

.logo {
	height: 200px;
	transition: all 0.3s;
	cursor: pointer;
	display: flex;
	align-items: center;
}

.navbar-mobile {
	display: none;
	flex-direction: column;
	height: 100%;
	width: 100%;
	background: var(--shallow);
	right: 0;
	top: 0;
	animation: fadeInRight 1s;
	overflow: scroll;
}

.navbar-mobile .material-symbols-outlined {
	font-size: 50px;
}

.navbar-mobile a {
	color: var(--deep);
	font-size: 70px;
	margin: 15px 0px 15px 40px;
	font-weight: 600;
	padding: 20px 50px;
	border-left: 5px solid var(--highlight-bright);
}

.mobileLanguage {
	display: flex;
	justify-content: left;
	align-items: center;
	gap: 0px;
}

.mobileLanguage a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 150px;
	padding: 0px;
	border: 5px solid var(--highlight-bright);
}

.mobileLanguage a span {
	font-size: 75px !important;
}

#reservationButtonMobile {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 450px !important;
	height: 150px !important;
	padding: 0px !important;
	border: 5px solid var(--highlight-bright);
}

.secondaryWelcome .serviceBg {
	object-position: center;
}

#mobileMenuIcon {
	display: flex;
	font-size: 100px;
	color: white;
	margin-right: 70px;
}

.navbar-mobile {
	position: fixed;
	flex-direction: column;
}

.serviceImageRow {
	grid-template-columns: repeat(2, 1fr);
	width: 95%;
}

.serviceBoxWrapperWrap .serviceBox {
	justify-content: center !important;
	align-items: center !important;
}

.serviceShowcase h2 {
	width: 100%;
	text-align: center;
	margin-bottom: 30px;
}

.serviceText {
	width: 100%;
}

.serviceText p {
	font-size: 34px;
	margin-bottom: 50px;
	text-align: center;
}

.serviceText h2 {
	font-size: 50px;
}

.services-container-wrapper h2 {
	font-size: 80px;
}

.services-container {
	width: 90%;
}

.serviceImageRow img {
	max-height: 300px;
}

.footerList a,
.footerIcons a {
	font-size: 35px;
}

.secondaryBackground .projectsGrid {
	display: flex;
	flex-direction: column;
}

/* home */
.welcomeSection {
	height: 100%;
}

.welcomeSection img {
	height: 100%;
	filter: brightness(0.3);
}

.welcomeText {
	justify-content: center;
	gap: 30px;
}

.welcomeText h1 {
	font-size: 90px;
	text-align: center;
}

.welcomeText h3 {
	font-size: 45px;
	text-align: center;
}

.mapShowcase h2 {
	font-size: 55px;
}

.mainButton,
.secondaryButton,
.tertiaryButton,
.quaternaryButton {
	width: 400px;
	height: 120px;
}

.mainButton span,
.secondaryButton span,
.tertiaryButton span,
.quaternaryButton span {
	font-size: 45px;
}

.mainButton:hover,
.secondaryButton:hover,
.tertiaryButton:hover,
.quaternaryButton:hover {
	width: 350px;
	height: 100px;
}

.mainButton:hover>span,
.secondaryButton:hover>span,
.tertiaryButton:hover>span,
.quaternaryButton:hover>span {
	font-size: 40px;
}

.homeDescriptionContact a {
	width: 140px;
	height: 140px;
}

.homeDescriptionContact a span {
	font-size: 110px;
}

.messageBanner {
	flex-direction: column;
	text-align: center;
	height: 450px;
}

.messageBanner {
	justify-content: center !important;
	flex-direction: column !important;
	text-align: center !important;
	height: 50vh !important;
	gap: 3vh !important;
}

.messageWrap {
	gap: 20px;
}

.messageWrap h2 {
	font-size: 50px;
}

.messageWrap p {
	text-align: center !important;
	font-size: 40px;
}

.serviceWrapper h2 {
	font-size: 80px;
	text-align: center;
}

.service {
	width: 100%;
	margin-bottom: 5px;
}

.service .mainButton,
.service .secondaryButton {
	width: 300px;
}

.services-container-wrapper {
	width: 100%;
	padding-top: 50px;
}

.services-container {
	grid-template-columns: repeat(2, 1fr);
}

.services-container div {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.services-container a {
	display: flex;
	justify-content: center;
}

.service img {
	height: 700px;
	filter: brightness(0.7);
}

.service h3 {
	font-size: 40px;
	animation: none;
	display: flex;
}

.service span {
	font-size: 27px;
	height: 150px;
}

.service p {
	color: var(--deep);
	border-bottom: 4px solid var(--main1-dark);
	font-size: 28px;
}

.secondaryWelcome .projectsBg {
	object-fit: contain;
}

.secondaryWelcomeService .secWelcomeText {
	align-items: center;
	background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0) 70%);
}

.secondaryWelcomeService .secWelcomeText h1 {
	padding-right: 0px;
}

#uploadForm form h2,
#editForm form h2,
#uploadFormSingle h2,
#editFormSingle h2 {
	font-size: 46px;
}

#uploadForm label,
#editForm label,
#uploadFormSingle label,
#editFormSingle label {
	font-size: 40px;
}

#uploadForm form input,
#editForm form input,
#uploadFormSingle form input,
#editFormSingle form input {
	font-size: 40px;
}

.greyWolfHero {
	background: url("../dash/src/house_int_img/room_05.jpg");
}

.brownBearHero {
	background: url("../dash/src/house_ext_img/brownbear.png");
}


#heroSection{
	height: 55vh;
}

/* region */

.regionWrap {
	flex-direction: column;
}

.regionDropdownHeader {
	margin-top: 60px;
	width: 800px;
}

.regionDropdownHeader h1 {
	font-size: 50px;
}

.regionDropdownHeader h1:hover {
	font-size: 53px;
}

.regionDropdown a {
	font-size: 35px;
}

.detailsWrap h2 {
	font-size: 80px;
	text-align: center;
	width: 100%;
}

.detailsWrap span {
	font-size: 35px;
	text-align: center;
}

.detailsWrap .ctaSection {
	display: flex;
	justify-content: center;
}

.details {
	align-items: start;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 70px;
}

.details h3 {
	font-size: 80px;
}

.details span {
	width: auto;
}

.detailsWrap div span {
	font-size: 50px;
}

.homeDescriptionLogo h2 {
	font-size: 140px;
}

.homeDescription {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.homeDescription h2 {
	font-size: 80px;
}

.homeDescription p {
	width: 80%;
	margin: 20px 0px;
	font-size: 35px;
}

.homeDescriptionLogo {
	position: absolute;
	opacity: 0.2;
	width: 100%;
}

.homeDescriptionLogo img {
	height: 100%;
	width: 80%;
	object-fit: cover;
}

.homeDescription .mainButton span {
	font-size: 30px;
}

.homeDescription h3 {
	font-size: 55px;
	width: 100%;
}

.homeDescription h4 {
	width: 100%;
}

.contact {
	width: 80%;
	gap: 170px;
}

.contact a {
	width: 40%;
}

.contact a p {
	font-size: 45px;
}

.contact a span {
	font-size: 70px;
}

.welcomeText h4 {
	font-size: 45px;
}

.aboutCta div span {
	font-size: 75px;
}

.aboutCta .material-symbols-outlined {
	font-size: 120px;
}

.aboutCta {
	justify-content: center;
}

.ctaSection {
	width: 100%;
	display: flex;
	justify-content: center;
}

/* secondary */
.secondaryWelcome img {
	height: 100%;
}

.secWelcomeText {
	padding: 200px 0px 0px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.secWelcomeText h1 {
	font-size: 100px;
	margin-bottom: 80px;
}

.valueRow {
	flex-direction: column;
	align-items: center;
}

.value {
	margin-bottom: 50px;
	padding-bottom: 450px;
	width: 100%;
}

.value h3 {
	font-size: 70px;
}

.value p {
	font-size: 40px;
}

.secondaryWelcome .contactBg {
	height: 2400px;
}

.serviceWrapper p {
	font-size: 35px;
}

.serviceLeft h2,
.serviceRight h2 {
	font-size: 70px;
	border: none;
}

.serviceLeft .serviceDescWrap {
	flex-direction: column;
	align-items: center;
}

.serviceRight .serviceDescWrap {
	flex-direction: column;
	align-items: center;
}

.serviceDescImg {
	width: 100%;
}

.serviceDescription {
	width: 90%;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.serviceDescription a {
	display: flex;
	justify-content: center;
}

#largeGallery {
	grid-template-columns: repeat(3, 1fr);
	padding: 30px;
}

.largeGalleryNoJs {
	grid-template-columns: repeat(2, 450px);
	justify-items: center;
}

.largeGalleryNoJs img {
	max-height: 250px;
	max-width: 400px;
}

.serviceLeft h3 {
	font-size: 45px;
	width: 80vw;
	text-align: left;
	margin: 0px;
}

.serviceRight h3 {
	font-size: 45px !important;
	width: 100%;
	text-align: center;
	margin: 0px;
}

.service-list span {
	text-align: justify;
	font-size: 25px;
}

.serviceDescription p {
	font-size: 50px;
	width: 100%;
}

.smallContact {
	height: 70vh;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.smallContact .details {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.smallContact span {
	font-size: 40px;
}

.serviceIconWrapper {
	display: grid;
	grid-template-columns: repeat(3, 0.8fr);
	margin-top: 50px;
	gap: 100px;
}

.serviceIcon span {
	font-size: 40px;
	text-align: center;
}

.secWelcomeText h4 {
	font-size: 30px;
}

.serviceIcon .material-symbols-outlined {
	font-size: 100px;
}

.miniNav {
	gap: 8px;
	text-align: center;
}

.miniNav h3 {
	font-size: 38px;
}

/* crud calendar */
.crudBody {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.calendarInfo {
	width: 100%;
	min-height: 0px;
}

.calendarBg h2 {
	font-size: 80px;
}

.calendar {
	width: 95%;
}

.calendar .monthControl {
	font-size: 30px;
}

.day span {
	font-size: 36px;
}

.dayname span {
	font-size: 29px;
}

.day,
.calendar .dayname {
	height: 110px;
}

.calendarInfo div .mainButton,
.calendarInfo div .secondaryButton,
.calendarInfo div .tertiaryButton,
.calendarInfo div .quaternaryButton {
	height: 100px;
	width: 300px;
	padding: 0px;
	margin: 20px 0px 0px 0px;
}

.calendarInfo div {
	padding: 20px 60px;
}

.calendarInfo div h1 {
	margin-top: 20px;
	font-size: 35px;
}

.calendarInfo div h4 {
	font-size: 30px;
}

.status-green,
.status-yellow,
.status-red {
	height: 15px;
	width: 15px;
}

.dateControlMenu {
	margin-top: 70px;
}

.dateControlMenu span {
	font-size: 30px;
	gap: 5px;
}

.ctaSectionMobile {
	width: 100% !important;
	padding-bottom: 50px;
	display: flex;
	justify-content: space-around;
	/* align-items: center; */
}

.serviceDescImg {
	justify-content: center;
}

.serviceLeft .serviceDescImg {
	justify-content: center;
}

.centerDiv {
	padding: 0px;
}

.centerDiv .serviceDescription {
	flex-direction: column;
}

#nextForm {
	width: 100% !important;
	height: 100% !important;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 20px;
	padding: 20px;
	border-radius: 10px;
}

#det_button21,
#det_button11 {
	width: 100% !important;
}

#shortContactMobile {
	height: max-content !important;
}

.resDate {
	font-size: 30px !important;
}

.resDate span {
	font-size: var(--font-size-s) !important;
}

.resDate em {
	font-size: var(--font-size-s) !important;
}

#service1Projects {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	justify-content: center !important;
	gap: var(--gap-m) !important;
}

.cabin-desc {
	height: max-content !important;
	text-align: left;
}

.cabin-card {
	height: max-content !important;
}

/* .shortAboutWrap{
  height: 1500px;
} */

.contactDesk {
	flex-direction: column;
	gap: 100px;
	align-items: center;
	width: 90%;
}

.contactDeskHalf {
	width: 100%;
}

.contactDeskHalf iframe {
	width: 100%;
	height: 30vh;
}

.contactDeskHalf h2 {
	font-size: 70px;
}

.contactDeskHalf a {
	font-size: 35px;
}

.contactDeskHalf a .material-symbols-outlined {
	font-size: 50px;
}

.contactDeskHalfPhone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 35px;
}

/* partners */
.partners-list .service img {
	height: 220px;
}

.partners-list .service {
	min-width: 300px;
	min-height: 325px;
}

.partners-list .service h3 {
	font-size: 30px;
}

.visitorShowcase h1 {
	font-size: 50px;
	margin-bottom: 20px;
}

.footerLogo span {
	font-size: 20px;
}

footer img {
	width: 90px;
}

.footerLogo a {
	color: var(--shallow);
	font-weight: 600;
	transition: all 0.3s;
	font-size: 20px;
}

/* buttons */
.navbar-mobile .closeButton {
	color: var(--highlight-bright);
	font-size: 120px;
	font-weight: 600;
	border: 0;
	box-shadow: none;
}

#reservationButtonDesktop {
	display: none;
}

.carouselWrap {
	width: 98%;
}

#close {
	font-size: 100px;
	padding: 0px 35px;
}

#prev,
#next {
	font-size: 100px;
}

#prev:hover,
#next:hover {
	color: white;
}

#backToTop {
	width: 90px;
	height: 90px;
	border-radius: 50px;
}

#backToTop:hover {
	width: 90px;
	height: 90px;
	border-radius: 50px;
}

#backToTop span {
	font-size: 60px;
}

#backToTop span:hover {
	font-size: 60px;
}

.ctaSectionFlex {
	flex-wrap: wrap;
	justify-content: center;
}

.ctaSectionFlex100 .secondaryButton {
	width: 80%;
	margin-left: 50px;
}

.serviceBoxWrapperWrap h2 {
	margin-left: 50px;
}

.serviceBoxWrapper .serviceText {
	width: 80vw;
}

.noteWrapper {
	margin-top: 100px;
	gap: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.noteHeader {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 10px;
	font-size: 35px;
}

.noteHeader span {
	font-size: 70px;
}

.noteText {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 5%;
	gap: 20px;
	background-color: var(--highlight);
	border-radius: 30px;
	width: 75%;
	min-height: 200px;
}

.noteWrapper p {
	width: 100%;
	font-size: 30px !important;
}

.modernCards {
	width: 90%;
	display: flex;
	flex-direction: column;
	padding: 0px;
	gap: var(--gap-m) !important;
	/* display: grid;
	grid-template-columns: repeat(2, 1fr); */
}

.modernCard {
	max-width: 90vw !important;
	width: 90vw !important;
	height: max-content;
}

.detailsModernCards {
	height: 350px !important;
}

.containerModernCards img {
	max-height: 500px;
}

.detailsModernCards>h3 {
	font-size: var(--font-size-m) !important;
}

.detailsModernCards>p {
	font-size: var(--font-size-xs) !important;
	line-height: 60px;
	margin: 40px 20px 20px 20px;
}

.messageBanner {
	flex-direction: column;
	text-align: center;
	height: 50vh;
}

.messageWrap {
	width: 80%;
}

#subToNewsletterForm {
	width: 80%;
}

.newsletterEmailBox {
	height: 100px;
	font-size: 30px;
}

#subToNewsletter {
	width: 100%;
}

.wideButton {
	width: 85% !important;
}

.shortBannerMobile {
	height: 50vh;
	justify-content: center;
	gap: 70px;
}

.homeDescriptionWrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 70vh;
}

.footerList {
	padding-left: 50px;
}

.footerIcons a {
	font-size: 30px;
	width: 70vw;
	/* text-align: right; */
}

.mapShowcase iframe {
	height: 50vh;
	width: 90vw;
}

.pricingWrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 80%;
	border-radius: 30px;
}

.price-list-container h3 {
	font-size: 3.5rem;
}

.price-list-table tbody td {
	min-width: 90px;
	padding: 2rem 0.5rem;
	font-size: 2rem !important;
}

.price-list-table tbody td:not(:first-child) {
	text-align: center;
}

.price-list-container {
	width: 100%;
}

.price-list-note {
	font-size: 1.5rem;
}

.price-list-table tbody td:nth-child(2)::after,
.price-list-table tbody td:nth-child(3)::after {
	font-size: 1.5rem;
}

.detailsModernCards>p {
	font-size: 25px;
	line-height: 45px;
	margin: 40px 20px 20px 20px;
}

.serviceDescription p {
	font-size: 30px;
	width: 80vw;
	text-align: justify;
}

.wideWrapShowcase {
	display: flex;
	flex-direction: column-reverse;
	justify-content: center;
	align-items: center;
	gap: 200px;
	width: 80%;
	min-width: 300px;
}

.wideWrapL .ctaSectionFlex {
	width: 100%;
	flex-wrap: nowrap !important;
}

.wideWrapL h1 {
	font-size: 70px;
}

#itemDescription {
	font-size: 40px;
}

#itemDescriptionMore,
#itemDescriptionLess {
	font-size: 35px;
}

.largeGalleryNoJs {
	display: flex;
	flex-direction: column;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.largeGalleryNoJs img {
	max-height: 60vh;
	max-width: 90vw;
}

.detailsWrapRes {
	gap: 50px;
	height: 30vh;
	width: 80%;
	text-align: center;
}

.detailsWrapRes h2 {
	font-size: 70px;
	font-weight: 600;
}

.resHeader {
	flex-direction: column;
}

.resHeader .mainButton {
	color: var(--shallow);
	font-size: 30px;
}

.modernCardWrapper h2 {
	font-size: var(--font-size-m) !important;
	margin-bottom: 40px;
}

.footerIcons a span {
	font-size: 40px;
}

.houseIntro {
	grid-template-columns: 1fr;
}

.houseIntro {
	width: 90% !important;
	margin: 0 auto !important;
	padding: 0px !important;
	padding-top: var(--padding-l) !important;
}

.houseIntroText {
	height: max-content !important;
	padding: 26px 24px;
	background: none;

}

.houseIntroText p {
	font-size: var(--font-size-xs) !important;
}

.houseIntroHighlights {
	padding: 28px 24px;
	height: max-content !important;
}

.houseIntroHighlights h3 {
	font-size: var(--font-size-s) !important;
}

.houseIntroHighlights li {
	font-size: var(--font-size-xs) !important;
	gap: var(--gap-s) !important;
}

.houseIntroHighlights .material-symbols-outlined {
	font-size: var(--font-size-s) !important;
	width: var(--font-size-m) !important;
	height: var(--font-size-m) !important;
}

#houseDescription {
	margin-bottom: 0px !important;
}

.houseCardsMobile {
	background-color: var(--shallow) !important;
	gap: 0px !important;
}

.houseCardsMobile .houseCard {
	margin-bottom: var(--margin-xxxl);
}

.houseCards {
	display: flex;
	flex-direction: column !important;
	gap: var(--gap-l);
	margin-top: 40px;
	width: 100%;
	border-radius: 0px !important;
}

.houseCard {
	background: none !important;
	box-shadow: none !important;
	border-radius: 0px !important;
}

.houseCardBody {
	width: 90% !important;
	margin: 0 auto !important;
	padding: 0px !important;
	padding-top: var(--padding-l) !important;
	/* padding: var(--padding-xxl) */
}

.houseCardBody * {
	color: var(--deep) !important;
}

.houseCardTitle {
	font-size: 26px;
}


.houseCardMedia {
	height: 20vh;
	border-radius: 0px !important;
}

.houseCardMedia img {
	height: 20vh;
	border-radius: 0px !important;
}

.houseCardBadge {
	font-size: var(--font-size-xs) !important;
}

.houseCardStat {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: var(--padding-xs) var(--padding-s);
	border-radius: 999px;
	background: linear-gradient(45deg, var(--highlight-bright), var(--highlight-brightest));
	color: var(--shallow) !important;
	font-size: var(--font-size-xs);

}

.houseCardTitle {
	font-size: var(--font-size-s) !important;
}

.houseCardSubtitle {
	font-size: var(--font-size-xs) !important;
	color: var(--deep-op5) !important;
}

.houseCardList li {
	font-size: var(--font-size-xs) !important;
}

.houseCardList li::before {
	content: "";
	width: 20px;
	height: 20px;
}


#whyCardContainer {
	width: 90% !important;
	margin: 0 auto !important;
}

.whyCard p {
	font-size: var(--font-size-xs) !important;
	padding: var(--padding-s) !important;
}

.about-page-hero h1 {
	font-size: 2rem;
}

.about-page-hero p {
	font-size: 1rem;
}

.about-page-intro-text {
	padding: 2rem;
}

.about-page-content-section {
	padding: 3rem 1rem;
}

.about-page-image-grid {
	grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
}

.about-page-image-box {
	height: 30vh;
}

.about-page-cabins-preview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
	gap: 2rem;
	margin: 4rem 0;
}

.about-page-features-grid {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
	gap: 2rem;
}

.aboutUsWrapper {
	width: 100% !important;
	/* width: calc(95% - var(--padding-m)); */
	/* padding-left: var(--padding-l); */
	/* border-left: 5px solid var(--highlight); */
}

.aboutUsWrapper h2 {
	font-size: var(--font-size-s) !important;
	color: var(--deep) !important;
}

#aboutUsWrapperTitle {
	font-size: var(--font-size-s) !important;
	color: var(--shallow) !important;
}

/* HOUSES SINGLE PAGE */

#heroSection h1 {
	font-size: var(--font-size-xl) !important;
}

#heroSection p {
	font-size: var(--font-size-xs) !important;
}

#houseGallery {
	height: max-content;
	width: 90%;
	margin: 5vh auto;
}

#programsTitle {
	font-size: 70px !important;
}

.programGrid {
	font-size: unset !important;
	box-sizing: border-box !important;
	width: 90% !important;
	margin: 0 auto !important;
	display: grid !important;
	grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr)) !important;
	gap: 20px !important;
	padding: 0px !important;
	margin-bottom: var(--margin-xxxl) !important;
}

.programCard {
	min-height: 700px !important;
}

.programCardContent>details {
	font-size: 20px !important;
}

.programCardContent>details>summary {
	width: 80vw !important;
	font-size: 30px !important;
}

.programCardContent>details summary:hover {
	color: var(--highlight-bright) !important;
	cursor: pointer !important;
}

.programContact a {
	width: 80px !important;
	height: 80px !important;
}

.programContact a>span {
	font-size: 50px !important;
}

details[open] summary {
	font-size: 30px !important;
}

details[open] {
	font-size: 20px !important;
}

.extraLargeButton {
	width: 80vw !important;
}

#reservationForm {
	height: max-content !important;
	width: 90% !important;
	margin: auto !important;
	font-size: 30px !important;
}

#reservationFormWrapper .reservationData {
	width: 100%;
	gap: 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(min(500px, 100%), 1fr));
}

.reservationDataItem label,
.reservationDataItem input {
	font-size: var(--font-size-s) !important;
}

.uploaderMessage {
	position: absolute;

	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: 90vw;
	height: max-content;

	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-m);
	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;
}