/********** Template CSS **********/
:root {
	--primary: #FEA116;
	--light: #F1F8FF;
	--dark: #0F172B;
}

.fw-medium {
	font-weight: 500 !important;
}

.fw-semi-bold {
	font-weight: 600 !important;
}

.back-to-top {
	position: fixed;
	display: none;
	right: 45px;
	bottom: 45px;
	z-index: 99;
}


/*** Spinner ***/
#spinner {
	opacity: 0;
	visibility: hidden;
	transition: opacity .5s ease-out, visibility 0s linear .5s;
	z-index: 99999;
}

#spinner.show {
	transition: opacity .5s ease-out, visibility 0s linear 0s;
	visibility: visible;
	opacity: 1;
}


/*** Date Picker ***/
.bootstrap-datetimepicker-widget.bottom {
	top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
	border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
	font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
	padding: 10px;
	border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
	background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
	border-bottom-color: var(--primary);
}


/*** Button ***/
.btn {
	font-weight: 500;
	text-transform: uppercase;
	transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
	color: #FFFFFF;
}

.btn-square {
	width: 38px;
	height: 38px;
}

.btn-sm-square {
	width: 32px;
	height: 32px;
}

.btn-lg-square {
	width: 48px;
	height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: normal;
	border-radius: 2px;
}

.btn.btn-tag {
	font-weight: normal;
	text-transform: capitalize;
}

.btn.btn-tag:hover {
	color: #FFFFFF;
	background: var(--primary);
	border-color: var(--primary) !important;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
	border: none;
	content: "\f107";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	vertical-align: middle;
	margin-left: 5px;
	transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
	transform: rotate(-180deg);
}

.navbar-dark .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link {
	margin-right: 30px;
	padding: 25px 0;
	color: #FFFFFF;
	font-size: 15px;
	text-transform: uppercase;
	outline: none;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
	color: var(--primary);
}

@media (max-width: 991.98px) {

	.navbar-dark .navbar-nav .nav-link,
	.navbar-light .navbar-nav .nav-link {
		margin-right: 0;
		padding: 10px 0;
	}

	.navbar-light .navbar-nav {
		border-top: 1px solid #EEEEEE;
	}
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
	height: 75px;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--dark);
	font-weight: 500;
}

.navbar-light.sticky-top {
	top: -100px;
	transition: .5s;
}

@media (min-width: 992px) {
	.navbar .nav-item .dropdown-menu {
		display: block;
		margin-top: 0;
		opacity: 0;
		visibility: hidden;
		transition: .5s;

	}

	.navbar .dropdown-menu.fade-down {
		top: 100%;
		transform: rotateX(-75deg);
		transform-origin: 0% 0%;
	}

	.navbar .dropdown-menu.fade-up {
		top: 200%;
	}

	.navbar .nav-item:hover .dropdown-menu {
		top: 100%;
		transform: rotateX(0deg);
		visibility: visible;
		transition: .5s;
		opacity: 1;
	}
}


/*** Header ***/
.carousel-caption {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(15, 23, 43, .7);
	z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
	width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
	width: 3rem;
	height: 3rem;
}

@media (max-width: 768px) {

	#header-carousel .carousel-item,
	.header-carousel .owl-carousel-item {
		position: relative;
		min-height: 450px;
	}

	#header-carousel .carousel-item img,
	.header-carousel .owl-carousel-item img {
		position: absolute;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

.header-carousel .owl-nav {
	position: absolute;
	top: 50%;
	right: 8%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
	margin: 7px 0;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: transparent;
	border: 1px solid #FFFFFF;
	border-radius: 2px;
	font-size: 22px;
	transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
	background: var(--primary);
	border-color: var(--primary);
}

.header-carousel .owl-dots {
	position: absolute;
	left: 50%;
	bottom: 45px;
	transform: translateX(-50%);
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.header-carousel .owl-dot {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	width: 15px;
	height: 15px;
	border: 1px solid #FFFFFF;
	border-radius: 2px;
	transition: .5s;
}

.header-carousel .owl-dot.active {
	height: 30px;
	background: var(--primary);
	border-color: var(--primary);
}

.page-header {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.page-header-inner {
	background: rgba(15, 23, 43, .7);
}

.breadcrumb-item+.breadcrumb-item::before {
	color: var(--light);
}

.booking {
	position: relative;
	margin-top: -100px !important;
	z-index: 1;
}


/*** Section Title ***/
.section-title {
	position: relative;
	display: inline-block;
}

/* .section-title::before {
	position: absolute;
	content: "";
	width: 45px;
	height: 2px;
	top: 50%;
	left: -55px;
	margin-top: -1px;
	background: var(--primary);
}

.section-title::after {
	position: absolute;
	content: "";
	width: 45px;
	height: 2px;
	top: 50%;
	right: -55px;
	margin-top: -1px;
	background: var(--primary);
} */

.section-title.text-start::before,
.section-title.text-end::after {
	display: none;
}


/*** Feature ***/
.feature-title {
	position: absolute;
	content: "";
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 43, .3);
	transition: .5s;
}

.feature-item:hover .feature-title {
	top: 100%;
}

.feature-item .feature-text {
	position: absolute;
	content: "";
	top: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
	background: rgba(15, 23, 43, .7);
	display: flex;
	align-items: center;
	transition: .5s;
}

.feature-item:hover .feature-text {
	top: 0;
}

.feature-item .feature-text p {
	opacity: 0;
	transition: .5s;
}

.feature-item:hover .feature-text p {
	opacity: 1;
	transition-delay: .5s;
}


/*** Rooms ***/
.room-item {
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.nav-pills .nav-item .active {
	border-bottom: 2px solid var(--primary);
}


/*** Service ***/
.service-item {
	height: 320px;
	padding: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: #FFFFFF;
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transition: .5s;
}

.service-item:hover {
	background: var(--primary);
}

.service-item .service-icon {
	width: 65px;
	height: 65px;
	transition: .5s;
}

.service-item i,
.service-item h5,
.service-item p {
	transition: .5s;
}

.service-item:hover i,
.service-item:hover h5,
.service-item:hover p {
	color: #FFFFFF !important;
}


/*** Youtube Video ***/
.video {
	position: relative;
	height: 100%;
	min-height: 500px;
	background: linear-gradient(rgba(15, 23, 43, .1), rgba(15, 23, 43, .1)), url(../img/video.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.video .btn-play {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	box-sizing: content-box;
	display: block;
	width: 32px;
	height: 44px;
	border-radius: 50%;
	border: none;
	outline: none;
	padding: 18px 20px 18px 28px;
}

.video .btn-play:before {
	content: "";
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 100px;
	height: 100px;
	background: var(--primary);
	border-radius: 50%;
	animation: pulse-border 1500ms ease-out infinite;
}

.video .btn-play:after {
	content: "";
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
	display: block;
	width: 100px;
	height: 100px;
	background: var(--primary);
	border-radius: 50%;
	transition: all 200ms;
}

.video .btn-play img {
	position: relative;
	z-index: 3;
	max-width: 100%;
	width: auto;
	height: auto;
}

.video .btn-play span {
	display: block;
	position: relative;
	z-index: 3;
	width: 0;
	height: 0;
	border-left: 32px solid var(--dark);
	border-top: 22px solid transparent;
	border-bottom: 22px solid transparent;
}

@keyframes pulse-border {
	0% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
		opacity: 0;
	}
}

#videoModal {
	z-index: 99999;
}

#videoModal .modal-dialog {
	position: relative;
	max-width: 800px;
	margin: 60px auto 0 auto;
}

#videoModal .modal-body {
	position: relative;
	padding: 0px;
}

#videoModal .close {
	position: absolute;
	width: 30px;
	height: 30px;
	right: 0px;
	top: -30px;
	z-index: 999;
	font-size: 30px;
	font-weight: normal;
	color: #FFFFFF;
	background: #000000;
	opacity: 1;
}


/*** Team ***/
.team-item {
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}


/*** Testimonial ***/
.testimonial {
	background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.testimonial-carousel {
	padding-left: 65px;
	padding-right: 65px;
}

.testimonial-carousel .testimonial-item {
	padding: 30px;
}

.testimonial-carousel .owl-nav,
.testimonial-carousel-center .owl-nav {
	position: absolute;
	width: 100%;
	height: 40px;
	top: calc(50% - 20px);
	left: 0;
	display: flex;
	justify-content: space-between;
	z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next,
.testimonial-carousel-center .owl-nav .owl-prev,
.testimonial-carousel-center .owl-nav .owl-next {
	position: relative;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFFFFF;
	background: var(--primary);
	border-radius: 2px;
	font-size: 18px;
	transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover,
.testimonial-carousel-center .owl-nav .owl-prev:hover,
.testimonial-carousel-center .owl-nav .owl-next:hover {
	color: var(--primary);
	background: #FFFFFF;
}

.testimonial-carousel-center .owl-nav {
	width: 350px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0;
	transition: .5s;
}

.testimonial-carousel-center:hover .owl-nav {
	width: 300px;
	opacity: 1;
}

.testimonial-carousel-center .owl-nav .owl-prev:hover,
.testimonial-carousel-center .owl-nav .owl-next:hover {
	color: var(--primary);
	background: var(--dark);
}

.testimonial-carousel-center .owl-item .testimonial-text {
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transform: scale(.8);
	transition: .5s;
}

.testimonial-carousel-center .owl-item.center .testimonial-text {
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
	transform: scale(1);
}


/*** Blog ***/
.blog-item {
	box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.blog-item img {
	transition: .5s;
}

.blog-item:hover img {
	transform: scale(1.1);
}

.related-carousel .owl-nav {
	position: absolute;
	width: 76px;
	top: -52px;
	right: 0;
	display: flex;
}

.related-carousel .owl-nav .owl-prev,
.related-carousel .owl-nav .owl-next {
	margin-left: 10px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--dark);
	background: var(--primary);
	font-size: 14px;
	transition: .3s;
}

.related-carousel .owl-nav .owl-prev:hover,
.related-carousel .owl-nav .owl-next:hover {
	color: var(--primary);
	background: var(--dark);
}

.category-list a {
	position: relative;
	padding-left: 10px;
	overflow: hidden;
	transition: .5s;
}

.category-list a::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: var(--primary);
	margin-right: 10px;
	transition: .5s;
}

.category-list a::after {
	position: absolute;
	content: "";
	width: 25px;
	height: 2px;
	top: 50%;
	left: -11px;
	margin-top: -1px;
	background: var(--primary);
	transition: .5s;
}

.category-list a:hover {
	padding-left: 21px;
	color: var(--primary) !important;
}

.category-list a:hover::after {
	left: 0;
}


/*** Rooms ***/
.fact {
	background: linear-gradient(rgba(15, 23, 43, .7), rgba(15, 23, 43, .7)), url(../img/carousel-2.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.fact .border {
	border-color: rgba(256, 256, 256, .2) !important;
}

.fact .border .border {
	border-color: rgba(256, 256, 256, .3) !important;
}


/*** Gallery ***/
#portfolio-flters .btn {
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	font-weight: 400;
	margin: 3px;
	transition: .5s;
}

#portfolio-flters .btn:hover,
#portfolio-flters .btn.active {
	color: #FFFFFF !important;
}

.portfolio-item img {
	transition: .5s;
}

.portfolio-item:hover img {
	transform: scale(1.1);
}

.portfolio-btn {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(15, 23, 43, .7);
	transition: .5s;
	opacity: 0;
}

.portfolio-item:hover .portfolio-btn {
	opacity: 1;
}

.portfolio-btn a {
	margin-top: 50px;
	font-size: 22px;
}

.portfolio-item:hover .portfolio-btn a {
	margin-top: 0;
}


/*** Contact ***/
.contact-form .help-block ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}


/*** Custom Accordion ***/
.accordion-custom .accordion-item {
	margin-bottom: 15px;
	border-color: rgba(0, 0, 0, .02);
}

.accordion-custom .accordion-item:not(:first-of-type) {
	border-top: 1px solid rgba(0, 0, 0, .02);
}

.accordion-custom .accordion-button {
	font-weight: 500 !important;
	background: #FFFFFF;
	transition: .5s;
}

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

.accordion-custom .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='%23fff'%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");
}

.accordion-custom .accordion-body {
	padding: 20px;
	background: #FFFFFF;
}


/*** Footer ***/
.newsletter {
	position: relative;
	z-index: 1;
}

.footer {
	position: relative;
	margin-top: -110px;
	padding-top: 180px;
}

.footer .btn.btn-social {
	margin-right: 5px;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--light);
	border: 1px solid #FFFFFF;
	border-radius: 35px;
	transition: .3s;
}

.footer .btn.btn-social:hover {
	color: var(--primary);
}

.footer .btn.btn-link {
	display: block;
	margin-bottom: 5px;
	padding: 0;
	text-align: left;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: normal;
	text-transform: capitalize;
	transition: .3s;
}

.footer .btn.btn-link::before {
	position: relative;
	content: "\f105";
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	margin-right: 10px;
}

.footer .btn.btn-link:hover {
	letter-spacing: 1px;
	box-shadow: none;
}

.footer .copyright {
	padding: 25px 0;
	font-size: 15px;
	border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
	color: var(--light);
}

.footer .footer-menu a {
	margin-right: 15px;
	padding-right: 15px;
	border-right: 1px solid rgba(255, 255, 255, .3);
}

.footer .footer-menu a:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}


/* theyork-food page  css ---------------------- */

.york-hero-banner {
	position: relative;
	width: 100%;
	min-height: 520px;
	overflow: hidden;
	display: flex;
	align-items: center;
	background-color: #000000;
}

/* Image handling */
.york-hero-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 1;
	filter: brightness(0.45);
}

.york-hero-overlay {
	position: relative;
	z-index: 2;
	width: 100%;
	color: #ffffff;
	padding: 0 5%;
}

.york-hero-subtitle {
	letter-spacing: 4px;
	font-size: 0.85rem;
	margin-bottom: 25px;
	font-weight: 600;
	display: flex;
	align-items: center;
}

.york-hero-subtitle::before,
.york-hero-subtitle::after {
	content: "";
	width: 30px;
	height: 1px;
	background: #ddcb77;
	margin: 0 15px;
}

.york-hero-title {
	font-size: clamp(2.2rem, 5vw, 4.2rem);
	line-height: 1.1;
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	margin-bottom: 20px;
	color: #fff;
}

.york-text-accent {
	color: #ddcb77;
}

.york-hero-description {
	font-size: 1.1rem;
	max-width: 650px;
	line-height: 1.7;
	margin-bottom: 40px;
	color: #ffffff;
	opacity: 0.9;
}

/* Buttons */
.york-hero-buttons {
	display: flex;
	gap: 20px;
}

.york-btn {
	padding: 16px 32px;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 1.5px;
	transition: 0.3s ease-in-out;
	display: inline-block;
}

.york-btn-primary {
	background-color: #ddcb77;
	color: #000000;
	border: 2px solid #ddcb77;
}

.york-btn-primary:hover {
	background-color: transparent;
	color: #ffffff;
}

.york-btn-outline {
	border: 2px solid #ffffff;
	color: #ffffff;
}

.york-btn-outline:hover {
	background-color: #ffffff;
	color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {

	.york-hero-banner {
		height: auto;
		padding: 120px 0;
	}

	.york-hero-buttons {
		flex-direction: column;
	}

	.york-btn {
		width: 100%;
		text-align: center;
	}

	.york-hero-subtitle::before {
		margin-left: 0;
	}
}

/* About section css ------------ */

.york-about-section {
	background-color: #F9F7F2;
}


.york-image-wrapper {
	position: relative;
	padding: 20px;
}

.york-main-image {
	position: relative;
	z-index: 2;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.york-image-frame {
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	border: 1px solid #ddcb77;
	z-index: 1;
}

.york-est-badge {
	position: absolute;
	bottom: -30px;
	right: 20px;
	background-color: #0b4f43;
	color: #ddcb77;
	padding: 25px 20px;
	text-align: center;
	z-index: 3;
	min-width: 110px;
}

.york-est-badge .york-star {
	font-size: 1.2rem;
	display: block;
	margin-bottom: 5px;
}

.york-est-badge .york-est-text {
	font-size: 0.7rem;
	margin: 0;
	font-weight: 700;
	letter-spacing: 2px;
	color: #ffffff;
}

.york-est-badge .york-year {
	font-size: 1.5rem;
	margin: 0;
	font-weight: 700;
}

/* Content Styling */
.york-section-tag {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 15px;
}

.york-section-tag .york-line {
	width: 40px;
	height: 1px;
	background-color: #0b4f43;
}

.york-section-tag p {
	margin: 0;
	font-size: 0.85rem;
	font-weight: 700;
	color: #0b4f43;
	letter-spacing: 2px;
}

.york-section-title {
	font-weight: 700;
	font-size: 2.2rem;
	color: #0b4f43;
	line-height: 1.2;
}

.york-title-divider {
	width: 60px;
	height: 3px;
	background-color: #ddcb77;
	margin: 20px 0;
}

.york-description-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 20px;
}

/* Buttons */
.york-action-buttons {
	display: flex;
	gap: 15px;
}

.york-btn-primary-custom {
	background-color: #0b4f43;
	color: #ffffff;
	border: 1px solid #0b4f43;
	padding: 12px 30px;
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 0;
	transition: 0.3s ease;
}

.york-btn-primary-custom:hover {
	background-color: transparent;
	color: #0b4f43;
}

.york-btn-outline-custom {
	border: 1px solid #0b4f43;
	color: #0b4f43;
	padding: 12px 30px;
	font-weight: 700;
	font-size: 0.85rem;
	border-radius: 0;
	transition: 0.3s ease;
}

.york-btn-outline-custom:hover {
	background-color: #0b4f43;
	color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 991px) {

	.york-image-wrapper {
		margin-bottom: 50px;
	}

	.york-section-title {
		font-size: 1.8rem;
	}

	.york-est-badge {
		right: 50%;
		transform: translateX(50%);
		bottom: -40px;
	}
}

@media (max-width: 576px) {

	.york-action-buttons {
		flex-direction: column;
	}

	.york-btn-primary-custom,
	.york-btn-outline-custom {
		width: 100%;
		text-align: center;
	}
}


/* feature section css ------------ */

.features-section {
	font-family: 'Montserrat', sans-serif;
}

.icon-box {
	background-color: #e9f1f0;
	/* Soft tint of your brand green */
	padding: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 45px;
}

.feature-list p {
	font-size: 0.95rem;
	color: #444;
	line-height: 1.6;
}

.icon-box-pro {
	width: 45px;
	height: 45px;
	background-color: #0b4f43;
	/* Brand Green */
	color: #ddcb77;
	/* Brand Gold */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
	flex-shrink: 0;
	/* Prevents icon from shrinking on mobile */
	transition: 0.3s ease;
}

.icon-box-pro:hover {
	background-color: #ddcb77;
	color: #0b4f43;
	transform: translateY(-3px);
}

.feature-list p {
	font-family: 'Montserrat', sans-serif;
	font-size: 0.95rem;
	color: #333;
	line-height: 1.6;
	padding-top: 5px;
	/* Aligns text with icon top */
}

.main-image-container img {
	width: 100%;
	height: 650px;
	object-fit: cover;
	border-left: 8px solid #ddcb77;
}

.fa-pot-food:before {
	content: "\f2e7";
}

/* Generic Utensils */
.fa-plate-wheat:before {
	content: "\f817";
}

/* Hot tub/bowl style */

.btn-book {
	background-color: #0b4f43;
	color: #ffffff;
	padding: 15px 35px;
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1px;
	transition: 0.3s ease;
}

.btn-book:hover {
	background-color: #ddcb77;
	color: #0b4f43;
}

.main-image-container img {
	width: 100%;
	height: 600px;
	/* Adjust height to match content length */
	object-fit: cover;
	border-left: 10px solid #ddcb77;
	/* Decorative accent line */
}

/* Responsive */
@media (max-width: 991px) {
	.main-image-container img {
		height: 400px;
		margin-top: 30px;
		border-left: 0;
		border-top: 10px solid #ddcb77;
	}
}


/* Authentic Cuisine section css ------------- */

.luxury-food-section {
	padding: 70px 20px;
	background: #f7f5f0;
}

.luxury-food-box {
	max-width: 1150px;
	margin: auto;
	background: #ffffff;
	border-radius: 32px;
	padding: 55px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 10px 40px rgba(0, 0, 0, 0.04),
		0 2px 10px rgba(0, 0, 0, 0.03);
}

/* Decorative Gradient Glow */
.luxury-food-box::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 260px;
	height: 260px;
	background: radial-gradient(circle, rgba(221, 203, 119, 0.18) 0%, rgba(221, 203, 119, 0) 70%);
}

/* Heading */
.luxury-food-top {
	text-align: center;
	max-width: 850px;
	margin: auto;
	margin-bottom: 45px;
	position: relative;
	z-index: 2;
}

.luxury-food-label {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 18px;
	background: rgba(11, 79, 67, 0.08);
	color: #0b4f43;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 50px;
	margin-bottom: 20px;
}

.luxury-food-heading {
	font-size: 50px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	margin-bottom: 22px;
}

.luxury-food-intro {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 0;
}

/* Grid */
.luxury-food-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	position: relative;
	z-index: 2;
}

.luxury-food-card {
	display: flex;
	gap: 18px;
	padding: 28px;
	border-radius: 22px;
	background: linear-gradient(180deg, #ffffff 0%, #fcfbf7 100%);
	border: 1px solid rgba(11, 79, 67, 0.08);
	transition: 0.35s ease;
	position: relative;
	overflow: hidden;
}

.luxury-food-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
	border-color: rgba(221, 203, 119, 0.35);
}

.luxury-food-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: #ddcb77;
}

.luxury-icon-wrap {
	width: 58px;
	height: 58px;
	min-width: 58px;
	border-radius: 16px;
	background: #0b4f43;
	color: #ddcb77;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	box-shadow: 0 10px 20px rgba(11, 79, 67, 0.15);
}

.luxury-food-content h5 {
	font-size: 18px;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 10px;
}

.luxury-food-content p {
	font-size: 15px;
	line-height: 1.8;
	color: #555;
	margin-bottom: 0;
}

/* Bottom */
.luxury-food-bottom {
	text-align: center;
	max-width: 850px;
	margin: 45px auto 0;
	position: relative;
	z-index: 2;
}

.luxury-food-bottom p {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 32px;
}

.luxury-food-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 38px;
	background: #0b4f43;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1px;
	border-radius: 60px;
	transition: 0.35s ease;
	border: 2px solid #0b4f43;
}

.luxury-food-btn:hover {
	background: #ddcb77;
	border-color: #ddcb77;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {

	.luxury-food-box {
		padding: 45px 30px;
	}

	.luxury-food-heading {
		font-size: 40px;
	}

	.luxury-food-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {

	.luxury-food-section {
		padding: 55px 15px;
	}

	.luxury-food-box {
		padding: 35px 20px;
		border-radius: 22px;
	}

	.luxury-food-heading {
		font-size: 30px;
	}

	.luxury-food-intro,
	.luxury-food-bottom p {
		font-size: 15px;
		line-height: 1.8;
	}

	.luxury-food-card {
		padding: 22px 18px;
	}

	.luxury-food-content h5 {
		font-size: 16px;
	}

	.luxury-food-content p {
		font-size: 14px;
	}

	.luxury-icon-wrap {
		width: 50px;
		height: 50px;
		min-width: 50px;
		font-size: 18px;
	}

	.luxury-food-btn {
		width: 100%;
	}
}

/* The York section css ----- */

.veg-feature-section {
	font-family: 'Montserrat', sans-serif;
	background-color: #0b4f43;
}

.veg-card {
	/* Your Brand Green */
	color: #ffffff;
	overflow: hidden;
	position: relative;
}

.veg-icon {
	width: 45px;
	height: 45px;
	background-color: rgba(221, 203, 119, 0.2);
	color: #ddcb77;
	/* Your Brand Gold */
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}

.veg-title {
	font-weight: 700;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	max-width: 500px;
	color: #fff;
}

.veg-divider {
	width: 50px;
	height: 3px;
	background-color: #ddcb77;
}

.veg-content p {
	font-size: 0.95rem;
	line-height: 1.8;
	margin-bottom: 20px;
	opacity: 0.9;
}

/* Button with Hover Animation */
.btn-veg {
	background-color: #ddcb77;
	color: #0b4f43;
	padding: 15px 35px;
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1px;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 2px solid #ddcb77;
}

.btn-veg:hover {
	background-color: transparent;
	color: #ffffff;
	transform: translateY(-5px);
}

/* Image with Hover Effect */
.image-box {
	position: relative;
	padding: 10px;
	z-index: 1;
}

.image-outline {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid rgba(221, 203, 119, 0.5);
	z-index: -1;
	transform: translate(15px, 15px);
	transition: 0.5s ease;
}

.veg-img {
	box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.3);
	transition: transform 0.5s ease, filter 0.5s ease;
}

.image-box:hover .veg-img {
	transform: scale(1.03);
	filter: brightness(1.1);
}

.image-box:hover .image-outline {
	transform: translate(0, 0);
	border-color: #ddcb77;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.veg-card {
		text-align: center;
	}

	.veg-icon {
		margin: 0 auto;
	}

	.veg-divider {
		margin: 20px auto;
	}

	.image-box {
		margin-top: 20px;
	}

	.image-outline {
		display: none;
	}
}


/* TRADITION MEETS TODAY css --------- */

.tradition-section {
	font-family: 'Montserrat', sans-serif;
	background-color: #ffffff;
}

/* Image Wrapper with Gold Frame */
.image-accent-wrapper {
	position: relative;
	padding-left: 20px;
	padding-top: 20px;
}

.accent-border {
	position: absolute;
	top: 0;
	left: 0;
	width: 150px;
	height: 150px;
	border-top: 1px solid #ddcb77;
	border-left: 1px solid #ddcb77;
	z-index: 1;
}

.main-img-split {
	position: relative;
	z-index: 2;
	box-shadow: 20px 20px 0px #f4f1e6;
	/* Subtle background shadow */
}

/* Content Area */
.small-tag {
	display: flex;
	align-items: center;
	gap: 12px;
}

.tag-line {
	width: 30px;
	height: 1px;
	background-color: #0b4f43;
}

.tag-text {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #0b4f43;
}

.title-main {
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 700;
	color: #0b4f43;
	line-height: 1.2;
}

.gold-bar {
	width: 60px;
	height: 3px;
	background-color: #ddcb77;
}

.description-area p {
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 20px;
}

/* Brand Button */
.btn-brand {
	background-color: #0b4f43;
	color: #ffffff;
	padding: 16px 40px;
	display: inline-block;
	text-decoration: none;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	transition: 0.3s ease-in-out;
	border: 1px solid #0b4f43;
}

.btn-brand:hover {
	background-color: #ddcb77;
	color: #0b4f43;
	border-color: #ddcb77;
}

/* Responsive Overrides */
@media (max-width: 991px) {
	.image-accent-wrapper {
		margin-bottom: 40px;
		padding-left: 0;
		padding-top: 0;
	}

	.accent-border {
		display: none;
	}

	.title-main {
		font-size: 1.8rem;
	}
}


/* FOOD & DRINK section css ------------- */
.drinks-section {
	font-family: "Montserrat", sans-serif;
	background-color: #fcfbf7;
	overflow: hidden;
}

/* Header & Tag Styling */
.section-tag {
	display: flex;
	align-items: center;
	gap: 12px;
}

.section-tag .line {
	width: 30px;
	height: 1px;
	background-color: #0b4f43;
}

.tag-text {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 2px;
	color: #0b4f43;
}

.section-title {
	font-weight: 700;
	color: #0b4f43;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	line-height: 1.2;
}

.title-divider {
	width: 60px;
	height: 3px;
	background-color: #ddcb77;
}

.description-text p {
	font-size: 1rem;
	line-height: 1.8;
	color: #444;
	margin-bottom: 20px;
}

/* Button Styling */
.btn-brand-primary {
	background-color: #0b4f43;
	color: #ffffff;
	border: 1px solid #0b4f43;
	padding: 14px 30px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	border-radius: 0;
	transition: 0.3s ease;
	margin-right: 15px;
}

.btn-brand-primary:hover {
	background-color: #ddcb77;
	color: #0b4f43;
	border-color: #ddcb77;
}

.btn-brand-outline {
	background-color: transparent;
	color: #0b4f43;
	border: 1px solid #0b4f43;
	padding: 14px 30px;
	font-weight: 700;
	font-size: 0.85rem;
	letter-spacing: 1.5px;
	border-radius: 0;
	transition: 0.3s ease;
}

.btn-brand-outline:hover {
	background-color: #0b4f43;
	color: #ffffff;
}

/* Image & Badge Styling */
.image-container {
	position: relative;
	padding: 20px;
}

.image-frame-bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 90%;
	height: 90%;
	border: 1px solid rgba(221, 203, 119, 0.5);
	z-index: 1;
}

.drinks-img {
	position: relative;
	z-index: 2;
	box-shadow: 15px 15px 40px rgba(0, 0, 0, 0.1);
}

.craft-badge {
	position: absolute;
	bottom: -15px;
	left: -15px;
	background-color: #0b4f43;
	color: #ddcb77;
	padding: 20px;
	z-index: 3;
	text-align: center;
	min-width: 140px;
	box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
}

.badge-icon {
	font-size: 1.5rem;
	margin-bottom: 5px;
}

.badge-title {
	font-weight: 700;
	font-size: 0.75rem;
	letter-spacing: 1px;
	margin-bottom: 2px;
	color: #ffffff;
}

.badge-subtitle {
	font-size: 0.65rem;
	margin: 0;
	font-weight: 400;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.image-container {
		margin-top: 50px;
	}

	.craft-badge {
		left: 20px;
	}

	.action-btns {
		display: flex;
		flex-direction: column;
		gap: 15px;
	}

	.btn-brand-primary {
		margin-right: 0;
	}
}


/* Top Reviewed Section css- --------------- */
.top-reviewed-section {
	background: #0b4f43;
	padding: 90px 20px;
	overflow: hidden;
}

.review-subtitle {
	display: inline-block;
	color: #ddcb77;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 16px;
	position: relative;
	padding-left: 45px;
}

.review-subtitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #ddcb77;
	transform: translateY(-50%);
}

.review-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 20px;
}

.review-line {
	width: 70px;
	height: 3px;
	background: #ddcb77;
	margin-bottom: 28px;
}

.review-text {
	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 22px;
}

/* Stats */
.review-stats {
	display: flex;
	gap: 18px;
	margin-top: 35px;
	margin-bottom: 35px;
	flex-wrap: wrap;
}

.stat-box {
	flex: 1;
	min-width: 160px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	background: rgba(255, 255, 255, 0.05);
	padding: 25px 18px;
	text-align: center;
	border-radius: 14px;
	transition: 0.3s ease;
}

.stat-box:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.08);
}

.stat-box h3 {
	color: #ddcb77;
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 8px;
}

.stat-box span {
	color: rgba(255, 255, 255, 0.85);
	font-size: 13px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

/* Button */
.review-btn {
	display: inline-block;
	background: #ddcb77;
	color: #0b4f43;
	text-decoration: none;
	padding: 16px 34px;
	border-radius: 60px;
	font-size: 15px;
	font-weight: 800;
	transition: 0.3s ease;
	box-shadow: 0 10px 30px rgba(221, 203, 119, 0.2);
}

.review-btn:hover {
	background: #fff;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Image Side */
.review-image-wrap {
	position: relative;
}

.review-main-img {
	width: 100%;
	height: 650px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* Floating Cards */
.floating-card {
	position: absolute;
	background: #fff;
	color: #0b4f43;
	padding: 14px 18px;
	border-radius: 14px;
	font-size: 14px;
	font-weight: 700;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.floating-card i {
	color: #ddcb77;
	font-size: 16px;
}

.card-one {
	top: 25px;
	left: -20px;
}

.card-two {
	bottom: 25px;
	right: -20px;
}

/* Responsive */
@media (max-width: 991px) {

	.top-reviewed-section {
		padding: 70px 20px;
	}

	.review-title {
		font-size: 40px;
	}

	.review-main-img {
		height: 500px;
	}

	.card-one {
		left: 15px;
	}

	.card-two {
		right: 15px;
	}
}

@media (max-width: 767px) {

	.top-reviewed-section {
		padding: 55px 15px;
	}

	.review-title {
		font-size: 32px;
	}

	.review-text {
		font-size: 15px;
		line-height: 1.8;
	}

	.review-stats {
		flex-direction: column;
	}

	.stat-box {
		width: 100%;
	}

	.review-main-img {
		height: 380px;
		border-radius: 18px;
	}

	.floating-card {
		font-size: 13px;
		padding: 12px 14px;
	}
}

/* Occasion Section css -------- */

.occasion-content-section {
	padding: 90px 20px;
	background: #f8f6f1;
}

.occasion-content-box {
	max-width: 1100px;
	margin: auto;
	background: #ffffff;
	padding: 70px;
	border-radius: 28px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

/* Decorative Shape */
.occasion-content-box::before {
	content: "";
	position: absolute;
	top: -120px;
	right: -120px;
	width: 260px;
	height: 260px;
	background: rgba(221, 203, 119, 0.08);
	border-radius: 50%;
}

.occasion-subtitle {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #0b4f43;
	margin-bottom: 14px;
	position: relative;
	padding-left: 45px;
}

.occasion-subtitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #ddcb77;
	transform: translateY(-50%);
}

.occasion-main-title {
	font-size: 54px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	margin-bottom: 18px;
	max-width: 700px;
}

.occasion-divider {
	width: 70px;
	height: 3px;
	background: #ddcb77;
	margin-bottom: 28px;
}

.occasion-main-text,
.occasion-bottom-text {
	font-size: 17px;
	line-height: 1.9;
	color: #555;
	max-width: 950px;
}

.occasion-main-text {
	margin-bottom: 35px;
}

.occasion-small-heading {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #0b4f43;
	margin-bottom: 28px;
}

/* Features Grid */
.occasion-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 22px;
	margin-bottom: 35px;
}

.occasion-feature-card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	padding: 25px;
	border: 1px solid rgba(11, 79, 67, 0.08);
	border-radius: 18px;
	background: #fff;
	transition: 0.3s ease;
}

.occasion-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.occasion-icon-box {
	width: 55px;
	height: 55px;
	min-width: 55px;
	border-radius: 14px;
	background: rgba(11, 79, 67, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #0b4f43;
	font-size: 20px;
}

.occasion-feature-card h6 {
	font-size: 18px;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 6px;
}

.occasion-feature-card p {
	font-size: 15px;
	line-height: 1.7;
	color: #666;
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {

	.occasion-content-box {
		padding: 50px 35px;
	}

	.occasion-main-title {
		font-size: 42px;
	}

	.occasion-features-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {

	.occasion-content-section {
		padding: 60px 15px;
	}

	.occasion-content-box {
		padding: 40px 22px;
		border-radius: 20px;
	}

	.occasion-main-title {
		font-size: 32px;
	}

	.occasion-main-text,
	.occasion-bottom-text {
		font-size: 15px;
		line-height: 1.8;
	}

	.occasion-feature-card {
		padding: 20px;
	}

	.occasion-feature-card h6 {
		font-size: 16px;
	}

	.occasion-feature-card p {
		font-size: 14px;
	}
}


/* Premium CTA Section css ---------- */

.premium-cta-section {
	padding: 70px 20px;
	/* background: #f8f6f1; */
	background: linear-gradient(135deg, #0b4f43 0%, #06352f 100%);
}

.premium-cta-box {
	position: relative;
	border-radius: 24px;
	padding: 50px 50px;
	overflow: hidden;
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.cta-tag {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #ddcb77;
	margin-bottom: 18px;
}

.premium-cta-box h2 {
	font-size: 48px;
	font-weight: 800;
	line-height: 1.1;
	color: #fff;
	margin-bottom: 22px;
	text-transform: uppercase;
}

.premium-cta-box p {
	font-size: 16px;
	line-height: 1.8;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 12px;
	max-width: 720px;
}

.premium-cta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #ddcb77;
	color: #0b4f43;
	text-decoration: none;
	font-weight: 800;
	font-size: 16px;
	padding: 16px 34px;
	border-radius: 60px;
	transition: all 0.35s ease;
	min-width: 220px;
	box-shadow: 0 10px 25px rgba(221, 203, 119, 0.25);
}

.premium-cta-btn:hover {
	background: #fff;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Decorative Shapes */
.cta-shape {
	position: absolute;
	border-radius: 50%;
	background: rgba(221, 203, 119, 0.08);
}

.shape-1 {
	width: 180px;
	height: 180px;
	top: -60px;
	right: -40px;
}

.shape-2 {
	width: 120px;
	height: 120px;
	bottom: -40px;
	left: -30px;
}

/* Responsive */
@media (max-width: 991px) {

	.premium-cta-box {
		padding: 45px 30px;
		text-align: center;
	}

	.premium-cta-box h2 {
		font-size: 38px;
	}

	.premium-cta-box p {
		max-width: 100%;
	}
}

@media (max-width: 767px) {

	.premium-cta-section {
		padding: 50px 15px;
	}

	.premium-cta-box {
		padding: 40px 22px;
		border-radius: 18px;
	}

	.premium-cta-box h2 {
		font-size: 28px;
	}

	.premium-cta-box p {
		font-size: 15px;
		line-height: 1.7;
	}

	.premium-cta-btn {
		width: 100%;
		min-width: auto;
		padding: 14px 20px;
	}
}

/* faq section css ------------ */

.custom-faq-section {
	background: #f8f6f1;
	padding: 50px 20px 140px;
}

/* Heading */
.faq-heading {
	margin-bottom: 50px;
}

.faq-subtitle {
	display: inline-block;
	position: relative;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #0b4f43;
	padding: 0 45px;
	margin-bottom: 18px;
}

.faq-subtitle::before,
.faq-subtitle::after {
	content: "";
	position: absolute;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #0b4f43;
	transform: translateY(-50%);
}

.faq-subtitle::before {
	left: 0;
}

.faq-subtitle::after {
	right: 0;
}

.faq-title {
	font-size: 52px;
	font-weight: 800;
	color: #0b4f43;
	margin-bottom: 0;
}

/* Accordion */
.custom-accordion {
	max-width: 900px;
	margin: auto;
}

.accordion-item {
	border: 1px solid #ddd;
	border-radius: 14px !important;
	overflow: hidden;
	margin-bottom: 18px;
	background: #fff;
}

.accordion-button {
	background: #fff;
	color: #0b4f43;
	font-size: 18px;
	font-weight: 700;
	padding: 24px 26px;
	box-shadow: none !important;
	border: none;
}

.accordion-button:not(.collapsed) {
	background: #0b4f43;
	color: #fff;
}

.accordion-button::after {
	filter: brightness(0.4);
}

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

.accordion-body {
	padding: 24px 26px;
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	background: #fff;
}

/* Hover */
.accordion-item:hover {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 991px) {

	.faq-title {
		font-size: 42px;
	}

	.accordion-button {
		font-size: 17px;
	}
}

@media (max-width: 767px) {

	.custom-faq-section {
		padding: 60px 15px 140px;
	}

	.faq-title {
		font-size: 34px;
	}

	.accordion-button {
		font-size: 16px;
		padding: 18px 18px;
		line-height: 1.5;
	}

	.accordion-body {
		font-size: 15px;
		line-height: 1.8;
		padding: 18px;
	}
}


/*  Brunch Section css --------- */
.brunch-feature-section {
	background-color: #0b4f43;
	/* Brand Deep Green */
	font-family: 'Montserrat', sans-serif;
	color: #ffffff;
	position: relative;
}

/* Tag and Accents */
.tag-text {
	color: #ddcb77;
	/* Brand Gold */
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 2px;
}

.tag-line {
	height: 2px;
	width: 40px;
	background-color: #ddcb77;
}

/* Typography */
.brunch-feature-section h2 {
	line-height: 1.1;
	text-transform: uppercase;
}

.lead-text {
	font-size: 17px;
	line-height: 1.7;
	color: #fff;
}

.body-text {
	font-size: 17px;
	line-height: 1.8;
	color: #fff;
}

/* Buttons */
.btn-gold {
	background-color: #ddcb77;
	color: #0b4f43;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	border-radius: 4px;
	transition: 0.3s ease;
}

.btn-gold:hover {
	background-color: #ffffff;
	color: #0b4f43;
}

.btn-outline-white {
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #ffffff;
	padding: 14px 28px;
	font-weight: 700;
	font-size: 0.85rem;
	text-decoration: none;
	border-radius: 4px;
	transition: 0.3s ease;
}

.btn-outline-white:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
	.brunch-feature-section {
		text-align: left;
	}

	.brunch-header {
		border-bottom: 1px solid rgba(221, 203, 119, 0.2);
		padding-bottom: 2rem;
		margin-bottom: 2rem;
	}
}

/* Weekend Atmosphere css -------- */

.brunch-vibe-section {
	padding: 90px 20px;
	background: #f8f6f1;
}

.brunch-vibe-wrapper {
	max-width: 1200px;
	margin: auto;
}

/* Top */
.brunch-vibe-top {
	margin-bottom: 40px;
}

.brunch-mini-tag {
	display: inline-block;
	padding: 10px 18px;
	background: rgba(11, 79, 67, 0.08);
	color: #0b4f43;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	border-radius: 50px;
	margin-bottom: 20px;
}

.brunch-main-heading {
	font-size: 58px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	max-width: 800px;
	margin: auto;
}

/* Cards */
.brunch-content-card {
	position: relative;
	height: 100%;
	padding: 45px;
	border-radius: 30px;
	overflow: hidden;
	transition: 0.35s ease;
}

.left-card {
	background: #0b4f43;
}

.right-card {
	background: #ffffff;
	border: 1px solid rgba(11, 79, 67, 0.08);
	box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
}

.brunch-content-card:hover {
	transform: translateY(-6px);
}

.quote-icon {
	width: 70px;
	height: 70px;
	border-radius: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 26px;
	margin-bottom: 28px;
}

.left-card .quote-icon {
	background: rgba(221, 203, 119, 0.12);
	color: #ddcb77;
}

.right-card .quote-icon {
	background: rgba(11, 79, 67, 0.08);
	color: #0b4f43;
}

.brunch-content-card p {
	font-size: 17px;
	line-height: 2;
	margin-bottom: 0;
}

.left-card p {
	color: rgba(255, 255, 255, 0.9);
}

.right-card p {
	color: #555;
}

/* Bottom Strip */
.brunch-bottom-strip {
	margin-top: 35px;
	background: linear-gradient(135deg, #ddcb77 0%, #e7d58f 100%);
	padding: 28px 35px;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 25px;
	flex-wrap: wrap;
}

.brunch-strip-content {
	display: flex;
	align-items: center;
	gap: 18px;
}

.strip-icon {
	width: 60px;
	height: 60px;
	background: rgba(11, 79, 67, 0.12);
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #0b4f43;
}

.brunch-strip-content h5 {
	font-size: 22px;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 6px;
}

.brunch-strip-content p {
	margin: 0;
	font-size: 15px;
	color: #0b4f43;
	opacity: 0.8;
}

/* Button */
.brunch-book-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: #0b4f43;
	color: #ffffff;
	padding: 16px 34px;
	border-radius: 60px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 1px;
	transition: 0.35s ease;
	border: 2px solid #0b4f43;
}

.brunch-book-btn:hover {
	background: transparent;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Responsive */
@media (max-width: 991px) {

	.brunch-main-heading {
		font-size: 42px;
	}

	.brunch-content-card {
		padding: 35px;
	}
}

@media (max-width: 767px) {

	.brunch-vibe-section {
		padding: 60px 15px;
	}

	.brunch-main-heading {
		font-size: 32px;
	}

	.brunch-content-card {
		padding: 28px 22px;
		border-radius: 22px;
	}

	.brunch-content-card p {
		font-size: 15px;
		line-height: 1.9;
	}

	.quote-icon {
		width: 58px;
		height: 58px;
		font-size: 20px;
		border-radius: 16px;
	}

	.brunch-bottom-strip {
		padding: 25px 20px;
		border-radius: 20px;
		text-align: center;
		justify-content: center;
	}

	.brunch-strip-content {
		flex-direction: column;
	}

	.brunch-book-btn {
		width: 100%;
	}
}


/* Sub Heading CSS */
.brunch-subheading-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 22px;
}

.brunch-subheading-wrap .tag-line {
	width: 50px;
	height: 2px;
	background: #ddcb77;
	display: inline-block;
	border-radius: 10px;
	flex-shrink: 0;
}

.brunch-subheading-wrap .tag-text {
	color: #ddcb77;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	line-height: 1;
	display: inline-block;
}

@media (max-width: 767px) {

	.brunch-subheading-wrap {
		gap: 10px;
		margin-bottom: 18px;
	}

	.brunch-subheading-wrap .tag-line {
		width: 35px;
	}

	.brunch-subheading-wrap .tag-text {
		font-size: 11px;
		letter-spacing: 2px;
	}
}


/* Social Sunday section css -------------  */

.sunday-vibe-section {
	padding: 70px 20px;
	background: #f8f6f1;
}

.sunday-vibe-box {
	background: #0b4f43;
	border-radius: 28px;
	padding: 50px;
	position: relative;
	overflow: hidden;
}

.sunday-vibe-box::before {
	content: "";
	position: absolute;
	width: 220px;
	height: 220px;
	background: rgba(221, 203, 119, 0.08);
	border-radius: 50%;
	top: -100px;
	right: -100px;
}

/* Left */
.mini-tag-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.mini-line {
	width: 40px;
	height: 2px;
	background: #ddcb77;
	border-radius: 10px;
}

.mini-tag-text {
	color: #ddcb77;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.sunday-left-content h2 {
	font-size: 42px;
	line-height: 1.15;
	font-weight: 800;
	color: #ffffff;
	margin-bottom: 28px;
}

.sunday-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 15px 30px;
	background: #ddcb77;
	color: #0b4f43;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 50px;
	border: 2px solid #ddcb77;
	transition: 0.3s ease;
}

.sunday-btn:hover {
	background: transparent;
	color: #ffffff;
}

/* Right */
.sunday-content-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 24px;
	padding: 35px;
	backdrop-filter: blur(10px);
}

.sunday-content-card p {
	font-size: 16px;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.88);
	margin-bottom: 0;
}

.sunday-divider {
	width: 100%;
	height: 1px;
	background: rgba(255, 255, 255, 0.12);
	margin: 28px 0;
}

/* Responsive */
@media(max-width:991px) {

	.sunday-vibe-box {
		padding: 40px 30px;
	}

	.sunday-left-content h2 {
		font-size: 34px;
	}
}

@media(max-width:767px) {

	.sunday-vibe-section {
		padding: 55px 15px;
	}

	.sunday-vibe-box {
		padding: 30px 20px;
		border-radius: 20px;
	}

	.sunday-left-content h2 {
		font-size: 28px;
		margin-bottom: 20px;
	}

	.sunday-content-card {
		padding: 24px 18px;
		border-radius: 18px;
	}

	.sunday-content-card p {
		font-size: 15px;
		line-height: 1.8;
	}

	.sunday-btn {
		width: 100%;
	}
}


/* Sunday Planning Section css ----------- */

.sunday-planning-section {
	padding: 70px 20px;
	background: #ffff;
}

.sunday-planning-wrapper {
	max-width: 1180px;
	margin: auto;
}

/* Heading */
.planning-header {
	margin-bottom: 45px;
}

.planning-tag-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 18px;
}

.planning-line {
	width: 45px;
	height: 2px;
	background: #ddcb77;
	border-radius: 10px;
}

.planning-tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #0b4f43;
	text-transform: uppercase;
}

.planning-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	margin-bottom: 0;
}

/* Grid */
.planning-content-grid {
	display: grid;
	grid-template-columns: 0.9fr 1.3fr;
	gap: 24px;
	align-items: stretch;
}

.planning-box {
	border-radius: 28px;
	padding: 38px;
	position: relative;
	overflow: hidden;
	height: 100%;
}

/* Left */
.planning-dark-box {
	background: #0b4f43;
}

.planning-dark-box p {
	color: rgba(255, 255, 255, 0.92);
	font-size: 20px;
	line-height: 1.8;
	font-weight: 500;
	margin-bottom: 0;
}

/* Right */
.planning-light-box {
	background: #ffffff;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(11, 79, 67, 0.06);
}

.planning-light-box p {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 0;
}

.planning-divider {
	width: 100%;
	height: 1px;
	background: rgba(11, 79, 67, 0.08);
	margin: 28px 0;
}

/* Icons */
.planning-icon {
	width: 65px;
	height: 65px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	margin-bottom: 28px;
}

.planning-dark-box .planning-icon {
	background: rgba(221, 203, 119, 0.12);
	color: #ddcb77;
}

.light-icon {
	background: rgba(11, 79, 67, 0.08);
	color: #0b4f43;
}

/* Button */
.planning-btn-wrap {
	margin-top: 40px;
}

.planning-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 36px;
	background: #0b4f43;
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 50px;
	border: 2px solid #0b4f43;
	transition: 0.3s ease;
}

.planning-btn:hover {
	background: #ddcb77;
	border-color: #ddcb77;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Responsive */
@media(max-width:991px) {

	.planning-title {
		font-size: 40px;
	}

	.planning-content-grid {
		grid-template-columns: 1fr;
	}

	.planning-dark-box p {
		font-size: 18px;
	}
}

@media(max-width:767px) {

	.sunday-planning-section {
		padding: 55px 15px;
	}

	.planning-title {
		font-size: 30px;
		line-height: 1.2;
	}

	.planning-box {
		padding: 28px 22px;
		border-radius: 20px;
	}

	.planning-dark-box p,
	.planning-light-box p {
		font-size: 15px;
		line-height: 1.8;
	}

	.planning-icon {
		width: 55px;
		height: 55px;
		font-size: 20px;
		border-radius: 15px;
		margin-bottom: 20px;
	}

	.planning-btn {
		width: 100%;
	}

	.planning-tag {
		font-size: 11px;
		letter-spacing: 2px;
	}

	.planning-line {
		width: 32px;
	}
}

/* Authentic Flavours section css ---------- */
.occasion-section {
	padding: 90px 20px;
	background: #f8f6f1;
	overflow: hidden;
}

.occasion-subtitle {
	display: inline-block;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #0b4f43;
	margin-bottom: 14px;
	position: relative;
	padding-left: 45px;
}

.occasion-subtitle::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	width: 30px;
	height: 2px;
	background: #ddcb77;
	transform: translateY(-50%);
}

.occasion-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	margin-bottom: 20px;
}

.occasion-line {
	width: 70px;
	height: 3px;
	background: #ddcb77;
	margin-bottom: 28px;
}

.occasion-text {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 25px;
}

.occasion-small-title {
	font-size: 15px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #0b4f43;
	margin-bottom: 20px;
}

.occasion-list {
	list-style: none;
	padding: 0;
	margin: 0 0 30px;
}

.occasion-list li {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 18px;
	font-size: 16px;
	color: #333;
	line-height: 1.6;
}

.icon-box {
	width: 44px;
	height: 44px;
	min-width: 44px;
	background: rgba(11, 79, 67, 0.08);
	border: 1px solid rgba(11, 79, 67, 0.12);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	color: #0b4f43;
	font-size: 17px;
	transition: 0.3s ease;
}

.occasion-list li:hover .icon-box {
	background: #0b4f43;
	color: #fff;
	transform: translateY(-3px);
}

/* Image Side */
.occasion-image-wrap {
	position: relative;
}

.occasion-main-img {
	width: 100%;
	height: 620px;
	object-fit: cover;
	border-radius: 24px;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.image-overlay-card {
	position: absolute;
	left: 30px;
	bottom: 30px;
	background: rgba(11, 79, 67, 0.92);
	color: #fff;
	padding: 16px 22px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	gap: 12px;
	backdrop-filter: blur(10px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-overlay-card i {
	color: #ddcb77;
	font-size: 20px;
}

.image-overlay-card span {
	font-size: 15px;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {

	.occasion-section {
		padding: 70px 20px;
	}

	.occasion-title {
		font-size: 40px;
	}

	.occasion-main-img {
		height: 500px;
	}
}

@media (max-width: 767px) {

	.occasion-section {
		padding: 55px 15px;
	}

	.occasion-title {
		font-size: 32px;
	}

	.occasion-text {
		font-size: 15px;
		line-height: 1.8;
	}

	.occasion-list li {
		font-size: 15px;
		align-items: flex-start;
	}

	.occasion-main-img {
		height: 380px;
		border-radius: 18px;
	}

	.image-overlay-card {
		left: 15px;
		right: 15px;
		bottom: 15px;
		padding: 14px 18px;
	}

	.image-overlay-card span {
		font-size: 14px;
	}
}


/* EVERY OCCASION DINING section css ------------ */

.fulwood-dining-section {
	padding: 90px 20px;
	background: #e7e4dc;
}

.fulwood-dining-wrapper {
	background: #ffffff;
	border-radius: 34px;
	padding: 60px;
	box-shadow: 0 20px 70px rgba(0, 0, 0, 0.06);
	position: relative;
	overflow: hidden;
}

.fulwood-dining-wrapper::before {
	content: "";
	position: absolute;
	width: 320px;
	height: 320px;
	background: rgba(221, 203, 119, 0.08);
	border-radius: 50%;
	top: -140px;
	right: -120px;
}

/* Image */
.fulwood-image-box {
	position: relative;
	padding-right: 25px;
}

.fulwood-image-shape {
	position: absolute;
	width: 100%;
	height: 100%;
	border: 2px solid #ddcb77;
	top: 18px;
	left: 18px;
	border-radius: 28px;
	z-index: 1;
}

.fulwood-main-img {
	position: relative;
	z-index: 2;
	border-radius: 28px;
	width: 100%;
	height: 620px;
	object-fit: cover;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.floating-review-card {
	position: absolute;
	bottom: 25px;
	left: 25px;
	background: #0b4f43;
	color: #ffffff;
	padding: 18px 22px;
	border-radius: 18px;
	display: flex;
	align-items: center;
	gap: 15px;
	z-index: 3;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.floating-review-card i {
	width: 52px;
	height: 52px;
	background: rgba(221, 203, 119, 0.12);
	color: #ddcb77;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
}

.floating-review-card h6 {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 4px;
	color: #fff;
}

.floating-review-card p {
	font-size: 13px;
	margin-bottom: 0;
	opacity: 0.85;
}

/* Content */
.fulwood-tag-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.fulwood-line {
	width: 45px;
	height: 2px;
	background: #ddcb77;
}

.fulwood-tag {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 3px;
	color: #0b4f43;
	text-transform: uppercase;
}

.fulwood-title {
	font-size: 52px;
	font-weight: 800;
	line-height: 1.1;
	color: #0b4f43;
	margin-bottom: 20px;
}

.fulwood-divider {
	width: 65px;
	height: 4px;
	background: #ddcb77;
	border-radius: 10px;
	margin-bottom: 28px;
}

.fulwood-text {
	font-size: 16px;
	line-height: 1.9;
	color: #555;
	margin-bottom: 28px;
}

/* Feature Box */
.fulwood-feature-box {
	background: #f8f6f1;
	padding: 28px;
	border-radius: 24px;
	margin-bottom: 28px;
	border: 1px solid rgba(11, 79, 67, 0.06);
}

.fulwood-feature-box h5 {
	font-size: 20px;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 22px;
}

.fulwood-feature-list {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.feature-item {
	display: flex;
	align-items: center;
	gap: 16px;
}

.feature-icon {
	width: 48px;
	height: 48px;
	background: #0b4f43;
	color: #ddcb77;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.feature-item p {
	margin-bottom: 0;
	font-size: 15px;
	font-weight: 500;
	color: #333;
}

/* Button */
.fulwood-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 17px 36px;
	background: #0b4f43;
	color: #ffffff;
	text-decoration: none;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 50px;
	margin-top: 30px;
	border: 2px solid #0b4f43;
	transition: 0.3s ease;
}

.fulwood-btn:hover {
	background: #ddcb77;
	border-color: #ddcb77;
	color: #0b4f43;
	transform: translateY(-4px);
}

/* Responsive */
@media(max-width:991px) {

	.fulwood-dining-wrapper {
		padding: 40px 30px;
	}

	.fulwood-title {
		font-size: 40px;
	}

	.fulwood-main-img {
		height: 500px;
	}
}

@media(max-width:767px) {

	.fulwood-dining-section {
		padding: 60px 15px;
	}

	.fulwood-dining-wrapper {
		padding: 30px 20px;
		border-radius: 24px;
	}

	.fulwood-title {
		font-size: 30px;
		line-height: 1.2;
	}

	.fulwood-main-img {
		height: 380px;
		border-radius: 20px;
	}

	.fulwood-image-shape {
		display: none;
	}

	.floating-review-card {
		left: 15px;
		right: 15px;
		bottom: 15px;
		padding: 14px 16px;
	}

	.fulwood-feature-box {
		padding: 22px 18px;
		border-radius: 18px;
	}

	.fulwood-btn {
		width: 100%;
	}

	.feature-item {
		align-items: flex-start;
	}
}


/* bottomless-brunch-section css --------- */

.bottomless-brunch-section {
	background: #fcfbf7;
	position: relative;
	overflow: hidden;
}

.bottomless-brunch-wrapper {
	background: #fff;
	border-radius: 28px;
	padding: 70px 50px;
	box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
	position: relative;
	border: 1px solid rgba(11, 79, 67, 0.08);
}

.bottomless-heading {
	margin-bottom: 50px;
}

.bottomless-tag-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	margin-bottom: 18px;
}

.bottomless-line {
	width: 55px;
	height: 1px;
	background: #0b4f43;
	display: block;
}

.bottomless-tag {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 2px;
	color: #0b4f43;
	text-transform: uppercase;
}

.bottomless-title {
	font-size: 48px;
	line-height: 1.2;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 0;
}

.bottomless-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
	align-items: stretch;
}

.bottomless-card {
	border-radius: 24px;
	padding: 40px;
	height: 100%;
	position: relative;
}

.dark-card {
	background: #0b4f43;
	color: #fff;
}

.light-card {
	background: #f8f5ed;
	border: 1px solid rgba(221, 203, 119, 0.4);
}

.bottomless-icon {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #ddcb77;
	color: #0b4f43;
	font-size: 28px;
	margin-bottom: 25px;
}

.light-icon {
	background: #0b4f43;
	color: #ddcb77;
}

.bottomless-card p {
	font-size: 16px;
	line-height: 1.9;
	margin-bottom: 0;
}

.light-card h5 {
	font-size: 24px;
	font-weight: 700;
	color: #0b4f43;
	margin-bottom: 25px;
}

.bottomless-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bottomless-list li {
	display: flex;
	align-items: center;
	gap: 14px;
	font-size: 16px;
	color: #333;
	margin-bottom: 18px;
	font-weight: 500;
}

.bottomless-list li i {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #ddcb77;
	color: #0b4f43;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	flex-shrink: 0;
}

.bottomless-divider {
	width: 100%;
	height: 1px;
	background: rgba(11, 79, 67, 0.12);
	margin: 30px 0;
}

.bottomless-btn-wrap {
	margin-top: 50px;
}

.bottomless-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 16px 38px;
	background: #0b4f43;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 60px;
	transition: 0.4s ease;
	border: 2px solid #0b4f43;
}

.bottomless-btn:hover {
	background: #ddcb77;
	border-color: #ddcb77;
	color: #0b4f43;
}

@media(max-width:991px) {

	.bottomless-brunch-wrapper {
		padding: 50px 30px;
	}

	.bottomless-grid {
		grid-template-columns: 1fr;
	}

	.bottomless-title {
		font-size: 36px;
	}

	.bottomless-card {
		padding: 30px;
	}
}

@media(max-width:767px) {

	.bottomless-brunch-wrapper {
		padding: 40px 20px;
		border-radius: 20px;
	}

	.bottomless-title {
		font-size: 30px;
	}

	.bottomless-card {
		padding: 25px;
		border-radius: 18px;
	}

	.bottomless-icon {
		width: 60px;
		height: 60px;
		font-size: 22px;
	}

	.light-card h5 {
		font-size: 21px;
	}

	.bottomless-card p,
	.bottomless-list li {
		font-size: 15px;
		line-height: 1.8;
	}

	.bottomless-btn {
		width: 100%;
		padding: 15px 20px;
	}
}


.content-sub-heading{
	font-size: 20px;
	font-weight: 700;
	color: #ddcb77;
	margin-bottom: 18px;
	font-family: 'Montserrat', sans-serif;
}


/* why choose section crookes page css -  */

.why-crookes-section {
		background: #e9e7e0; 
		overflow: hidden;
	}

	.why-crookes-wrapper {
		position: relative;
	}

	.why-tag-wrap {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-bottom: 20px;
	}

	.why-line {
		width: 55px;
		height: 2px;
		background: #ddcb77;
	}

	.why-tag {
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 2px;
		color: #0b4f43;
		text-transform: uppercase;
	}

	.why-title {
		font-size: clamp(2rem, 4vw, 3.4rem);
		font-weight: 700;
		line-height: 1.2;
		color: #0b4f43;
		margin-bottom: 22px;
	}

	.why-divider {
		width: 70px;
		height: 4px;
		background: #ddcb77;
		margin-bottom: 35px;
	}

	.why-text-box {
		margin-bottom: 35px;
	}

	.why-text-box h5 {
		font-size: 22px;
		font-weight: 700;
		color: #0b4f43;
		margin-bottom: 15px;
	}

	.why-text-box p {
		font-size: 16px;
		line-height: 1.9;
		color: #444;
		margin-bottom: 0;
	}

	.why-image-card {
		position: relative;
		padding-left: 40px;
	}

	.why-main-img {
		width: 100%;
		border-radius: 20px;
		object-fit: cover;
		box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
	}

	.why-floating-box {
		position: absolute;
		bottom: -40px;
		left: 0;
		background: #0b4f43;
		padding: 35px;
		border-radius: 20px;
		max-width: 420px;
		box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
	}

	.why-floating-box h5 {
		color: #ddcb77;
		font-size: 22px;
		font-weight: 700;
		margin-bottom: 20px;
	}

	.why-floating-box ul {
		padding: 0;
		margin: 0 0 20px;
		list-style: none;
	}

	.why-floating-box ul li {
		display: flex;
		align-items: flex-start;
		gap: 12px;
		color: #fff;
		font-size: 15px;
		line-height: 1.7;
		margin-bottom: 14px;
	}

	.why-floating-box ul li i {
		color: #ddcb77;
		margin-top: 5px;
	}

	.why-floating-box p {
		color: rgba(255, 255, 255, 0.85);
		font-size: 15px;
		line-height: 1.8;
	}

	@media (max-width: 991px) {

		.why-image-card {
			padding-left: 0; 
		}

		.why-floating-box {
			position: relative;
			bottom: auto;
			left: auto;
			max-width: 100%;
			margin-top: -30px;
		}

		.why-title {
			font-size: 2.3rem;
		}
	}

	@media (max-width: 767px) {

		.why-crookes-section {
			padding: 70px 0;
		}

		.why-title {
			font-size: 1.9rem;
		}

		.why-text-box h5 {
			font-size: 20px;
		}

		.why-floating-box {
			padding: 25px;
			border-radius: 16px;
		}

		.why-floating-box h5 {
			font-size: 20px;
		}
	}
