/*
==============================
Page: All
Section: Section titles
==============================
*/

.section-title {
	color: var(--black);
	margin-bottom: 0.75rem;
}

.section-line {
	width: 80px;
	height: 3px;
	background-color: var(--color-primary);
	border-radius: 2px;
	margin-bottom: 2rem;
}


/*
==============================
Page: All
Section: Cards
==============================
*/

.card {
	background-color: var(--white);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border: 0;
}

.card-label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-primary);
	margin-bottom: 0.5rem;
	display: block;
}

.card-label-muted {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--black-faint);
	margin-bottom: 0.5rem;
	display: block;
}

.card-title {
	font-size: 1rem;
	line-height: 1.35;
	letter-spacing: -0.01em;
	color: var(--black);
	margin-bottom: 0.5rem;
}

.card-title-lg {
	font-size: 1.2rem;
	line-height: 1.25;
	letter-spacing: -0.02em;
	color: var(--black);
	margin-bottom: 0.5rem;
}

.card-excerpt {
	font-size: 0.9rem;
	line-height: 1.65;
	color: var(--black-muted);
	margin-bottom: 0;
}

.card-meta {
	border-top: 1px solid var(--grey-border);
	padding-top: 12px;
	margin-top: 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (min-width: 992px) {
	.card-title {
		font-size: 1.1rem;
	}
	.card-title-lg {
		font-size: 1.1rem;
	}
}


/*
==============================
Page: Home
Section: Hero
==============================
*/

.home-hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
    margin-top: -70px;
}

.home-hero-subtitle p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--white);
	opacity: 0.85;
}

.home-booking-form {
	border-radius: 10px;
	box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
}

.home-booking-form h5 {
	color: var(--black);
	font-weight: 700;
}

@media (min-width: 992px) {
	.home-hero {
		min-height: 65vh;
        background-position: 90% center;
        margin-top: -82px;
	}
	.home-hero-subtitle p {
		font-size: 1.25rem;
		max-width: 480px;
	}
}

@media (min-width: 1200px) and (max-height: 900px) {
    .home-hero {
        min-height: 107vh;
    }
}

@media (min-width: 1800px) {
    .home-hero {
        min-height: 85vh;
    }
}


/*
==============================
Page: Home
Section: Key Features
==============================
*/

.home-features {
	padding-bottom: 0;
    margin-top: 55px;
}

.home-feature-img {
	width: 100%;
	height: 220px;
}

.home-feature-title {
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--black);
	margin: 0;
	padding: 1rem;
	text-align: center;
    font-family: ''
}

@media (min-width: 992px) {
	.home-features {
		margin-top: -80px;
	}
	.home-feature-img {
		height: 260px;
	}
	.home-feature-title {
		font-size: 1.5rem;
	}
}


/*
==============================
Page: Home
Section: Split sections
==============================
*/

.home-split-img {
	width: 100%;
	height: 360px;
	border-radius: 10px;
	overflow: hidden;
}

.home-split-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--black-muted);
}

@media (min-width: 992px) {
	.home-split-img {
		height: 45vh;
	}
	.home-split-text p {
		font-size: 1.05rem;
	}
}

@media (min-width: 1200px) and (max-height: 900px) {
    .home-split-img {
		height: 75vh;
	}
}


/*
==============================
Page: Home
Section: Image boxes
==============================
*/

.home-box-card {
	height: 15vh;
	border-radius: 8px;
	overflow: hidden;
	text-decoration: none;
	display: block;
}
.home-box-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.1) 100%);
	z-index: 10;
}
.home-box-content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 11;
}
.home-box-title {
	font-size: 1.2rem;
	line-height: 1.3;
	margin-bottom: 0.15rem;
}
.home-box-text {
	font-size: 0.85rem;
}

@media (min-width: 992px) {
	.home-box-card {
		height: 10vh;
	}
	.home-box-title {
		font-size: 1.5rem;
	}
    .home-box-text {
	    font-size: 1.1rem;
    }
}
@media (min-width: 1200px) and (max-height: 900px) {
    .home-box-card {
        height: 22vh;
    }
    .home-box-title {
        font-size: 1.6rem;
    }
    .home-box-text {
        font-size: 1.2rem;
    }
}

@media (min-width: 1800px) {
	.home-box-card {
		height: 12vh;
	}
}

/*
==============================
Page: Home
Section: Banner
==============================
*/

.home-banner {
	width: 100%;
	height: 15vh;
}

@media (min-width: 992px) {
	.home-banner {
		height: 15vh;
	}
}

@media (min-width: 1200px) and (max-height: 900px) {
	.home-banner {
		height: 25vh;
	}
}

@media (min-width: 1800px) {
	.home-banner {
		height: 20vh;
	}
}

/*
==============================
Page: All
Section: Hero
==============================
*/


.all-hero {
	min-height: 55vh;
	display: flex;
	align-items: center;
    margin-top: -70px;
}

.all-hero-subtitle p {
	font-size: 1rem;
	line-height: 1.8;
	color: var(--white);
	opacity: 0.85;
}

.page-hero {
	margin-top: -72px;
}

@media (min-width: 992px) {
	.all-hero {
		min-height: 44vh;
        margin-top: -82px;
	}
	.all-hero-subtitle p {
		font-size: 1.1rem;
		max-width: 480px;
	}
    .page-hero h1 {
        margin-top: 40px;
        font-size: 3rem;
    }
    .page-hero {
        margin-top: -82px;
    }
}

/*
==============================
Page: About Us
Section: Split sections
==============================
*/

.about-split-img {
	width: 100%;
	height: 360px;
	border-radius: 10px;
	overflow: hidden;
}

@media (min-width: 992px) {
	.about-split-img {
		height: 45vh;
	}
	.about-split-text p {
		font-size: 1.05rem;
	}
}

/*
==============================
Page: About + Any page with FAQs
Section: FAQs
==============================
*/

.about-faq-item {
	border: 0;
	border-bottom: 1px solid var(--grey-border);
	background-color: transparent;
}

.about-faq-item:first-child {
	border-top: 1px solid var(--grey-border);
}

.accordion-button {
	background-color: transparent;
	color: var(--black);
	font-weight: 600;
	font-size: 1rem;
	padding: 1.25rem 0;
	box-shadow: none;
}

.accordion-button:not(.collapsed) {
	background-color: transparent;
	color: var(--color-primary);
	box-shadow: none;
}

.accordion-button::after {
	filter: none;
}

.accordion-button:not(.collapsed)::after {
	filter: none;
}

.accordion-button:focus {
	box-shadow: none;
	border-color: transparent;
}

.accordion-body {
	padding: 0 0 1.25rem 0;
	color: var(--black-muted);
	font-size: 0.95rem;
	line-height: 1.8;
}

.palette-blueberry .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23004E89'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.palette-class .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E2BA36'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.palette-mint .accordion-button:not(.collapsed)::after {
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2377BFA3'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}