/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
	font-family: "Open Sans", sans-serif;
	background: #0c0b09;
	color: #fff;
}

a {
	color: #1b9cb6;
	text-decoration: none;
}

a:hover {
	color: #1b9cb6;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #1a1814;
}

#preloader:before {
	content: "";
	position: fixed;
	top: calc(50% - 30px);
	left: calc(50% - 30px);
	border: 6px solid #1a1814;
	border-top-color: #1b9cb6;
	border-bottom-color: #1b9cb6;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	-webkit-animation: animate-preloader 1s linear infinite;
	animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	width: 44px;
	height: 44px;
	border-radius: 50px;
	transition: all 0.4s;
	border: 2px solid #1b9cb6;
}

.back-to-top i {
	font-size: 28px;
	color: #1b9cb6;
	line-height: 0;
}

.back-to-top:hover {
	background: #1b9cb6;
	color: #1a1814;
}

.back-to-top:hover i {
	color: #444444;
}

.back-to-top.active {
	visibility: visible;
	opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	[data-aos-delay] {
		transition-delay: 0 !important;
	}

	/* Additional mobile topbar hiding */
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
	height: 40px;
	font-size: 14px;
	transition: all 0.5s;
	z-index: 996;
}

#topbar.topbar-scrolled {
	top: -40px;
}

#topbar .contact-info i {
	font-style: normal;
	color: #1b9cb6;
}

#topbar .contact-info i span {
	padding-left: 5px;
	color: #fff;
}

#topbar .location i {
	font-style: normal;
	color: #1b9cb6;
}

#topbar .location i span {
	padding-left: 5px;
	color: #fff;
}

/* Hide topbar on mobile */
@media (max-width: 991px) {
	#topbar {
		display: none !important;
		visibility: hidden !important;
		height: 0 !important;
		overflow: hidden !important;
	}

	#header {
		top: 0 !important;
	}

	#header.header-scrolled {
		top: 0 !important;
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	background: rgba(0, 0, 0, 0.5); /* make it more transparent */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
	backdrop-filter: blur(10px); /* glass blur */
	-webkit-backdrop-filter: blur(10px); /* Safari support */
	transition: all 0.5s;
	z-index: 997;
	padding: 15px 0;
}

#header.header-scrolled {
	top: 0;
	background: rgba(0, 0, 0, 0.5); /* make it more transparent */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle border */
	backdrop-filter: blur(10px); /* glass blur */
	-webkit-backdrop-filter: blur(10px); /* Safari support */
}

#header .logo {
	font-size: 28px;
	margin: 0;
	padding: 0;
	line-height: 1;
	font-weight: 300;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

#header .logo a {
	color: #fff;
}

#header .logo img {
	max-height: 40px;
}

/*--------------------------------------------------------------
# Book a table button Menu
--------------------------------------------------------------*/
.book-a-table-btn {
	margin: 0 0 0 15px;
	border: 2px solid #1b9cb6;
	color: #fff;
	border-radius: 50px;
	padding: 8px 25px;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 1px;
	transition: 0.3s;
}

.book-a-table-btn:hover {
	background: #1b9cb6;
	color: #fff;
}

@media (max-width: 992px) {
	.book-a-table-btn {
		margin: 0 15px 0 0;
		padding: 8px 20px;
	}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

.navbar ul {
	margin: 0;
	padding: 0;
	display: flex;
	list-style: none;
	align-items: center;
}

.navbar li {
	position: relative;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 0 10px 30px;
	color: #fff;
	white-space: nowrap;
	transition: 0.3s;
	font-size: 14px;
}

.navbar a i,
.navbar a:focus i {
	font-size: 12px;
	line-height: 0;
	margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
	color: #1b9cb6;
}

.navbar .dropdown ul {
	display: block;
	position: absolute;
	left: 14px;
	top: calc(100% + 30px);
	margin: 0;
	padding: 10px 0;
	z-index: 99;
	opacity: 0;
	visibility: hidden;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	transition: 0.3s;
	border-radius: 4px;
}

.navbar .dropdown ul li {
	min-width: 200px;
}

.navbar .dropdown ul a {
	padding: 10px 20px;
	color: #444444;
}

.navbar .dropdown ul a i {
	font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
	color: #1b9cb6;
}

.navbar .dropdown:hover > ul {
	opacity: 1;
	top: 100%;
	visibility: visible;
}

.navbar .dropdown .dropdown ul {
	top: 0;
	left: calc(100% - 30px);
	visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
	opacity: 1;
	top: 0;
	left: 100%;
	visibility: visible;
}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

@media (max-width: 991px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #000;
	transition: 0.3s;
	z-index: 999;
	height: 100vh;
}

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	border-radius: 6px;
	background-color: #000;
	overflow-y: auto;
	transition: 0.3s;
	text-align: center;
}

.navbar-mobile a,
.navbar-mobile a:focus {
	padding: 10px 20px;
	font-size: 15px;
	color: #fff;
	text-align: center;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a {
	color: #1b9cb6;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
	color: #1b9cb6;
}

.navbar-mobile .dropdown > .dropdown-active {
	display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
	width: 100%;
	height: 100vh;
	background: url("../img/hero.jpg") top center;
	background-size: cover;
	position: relative;
	padding: 0;
}

#hero:before {
	content: "";
	background: rgba(0, 0, 0, 0.5);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#hero .container {
	padding-top: 110px;
}

@media (max-width: 992px) {
	#hero .container {
		padding-top: 98px;
	}
}

#hero h1 {
	margin: 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #fff;
	font-family: "Poppins", sans-serif;
}

#hero h1 span {
	color: #1b9cb6;
}

#hero h2 {
	color: #eee;
	margin-bottom: 10px 0 0 0;
	font-size: 22px;
}

#hero .btns {
	margin-top: 30px;
}

#hero .btn-menu,
#hero .btn-book {
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	display: inline-block;
	padding: 12px 30px;
	border-radius: 50px;
	transition: 0.3s;
	line-height: 1;
	color: white;
	border: 2px solid #1b9cb6;
}

#hero .btn-menu:hover,
#hero .btn-book:hover {
	background: #1b9cb6;
	color: #fff;
}

#hero .btn-book {
	margin-left: 15px;
}

#hero .play-btn {
	width: 94px;
	height: 94px;
	background: radial-gradient(#1b9cb6 50%, rgba(205, 164, 94, 0.4) 52%);
	border-radius: 50%;
	display: block;
	position: relative;
	overflow: hidden;
}

#hero .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 2s;
	animation: pulsate-btn 2s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(205, 164, 94, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
	border-left: 15px solid #1b9cb6;
	transform: scale(20);
}

#hero .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

@media (min-width: 1024px) {
	#hero {
		background-attachment: fixed;
	}
}

@media (max-width: 992px) {
	#hero .play-btn {
		margin-top: 30px;
	}
}

@media (max-height: 500px) {
	#hero {
		height: auto;
	}

	#hero .container {
		padding-top: 130px;
		padding-bottom: 60px;
	}
}

@media (max-width: 768px) {
	#hero h1 {
		font-size: 28px;
		line-height: 36px;
	}

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
	padding: 60px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #1a1814;
}

.section-title {
	padding-bottom: 50px;
	text-align: center;
}

.section-title h2 {
	font-size: 14px;
	font-weight: 500;
	padding: 0;
	line-height: 1px;
	margin: 0 0 10px 0;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #aaaaaa;
	font-family: "Poppins", sans-serif;
	position: relative;
	display: inline-block;
}

.section-title h2::before,
.section-title h2::after {
	content: "";
	width: 60px;
	height: 1px;
	background: rgba(205, 164, 94, 0.3);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.section-title h2::before {
	left: -80px;
}

.section-title h2::after {
	right: -80px;
}

.section-title p {
	margin: 0;
	font-size: 42px;
	font-weight: 700;
	font-family: "Playfair Display", serif;
	color: #1b9cb6;
	line-height: 1.2;
	margin-top: 15px;
}

/* Additional spacing improvements for sections */
section {
	padding: 80px 0;
}

section.section-bg {
	padding: 80px 0;
}

/* Improve hero section typography */
#hero h1 {
	text-align: center;
	margin-bottom: 20px;
}

#hero h2 {
	text-align: center;
	margin-bottom: 40px;
	font-size: 24px;
	color: rgba(255, 255, 255, 0.8);
}

/* Better spacing for about section h3 */
.about .content h3 {
	margin-bottom: 25px;
	color: #1b9cb6;
	font-size: 28px;
	font-weight: 600;
}

/* Responsive improvements for section titles */
@media (max-width: 768px) {
	.section-title h2::before,
	.section-title h2::after {
		display: none;
	}

	.section-title p {
		font-size: 32px;
	}

	.section-title {
		padding-bottom: 40px;
	}

	section {
		padding: 60px 0;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.breadcrumbs {
	padding: 15px 0;
	background: #1d1b16;
	margin-top: 110px;
}

@media (max-width: 992px) {
	.breadcrumbs {
		margin-top: 98px;
	}
}

.breadcrumbs h2 {
	font-size: 26px;
	font-weight: 300;
}

.breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
}

.breadcrumbs ol li + li {
	padding-left: 10px;
}

.breadcrumbs ol li + li::before {
	display: inline-block;
	padding-right: 10px;
	color: #37332a;
	content: "/";
}

@media (max-width: 768px) {
	.breadcrumbs .d-flex {
		display: block !important;
	}

	.breadcrumbs ol {
		display: block;
	}

	.breadcrumbs ol li {
		display: inline-block;
	}
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
	background: url("../img/V2_KOPI.jpg") center center;
	background-size: cover;
	position: relative;
	padding: 80px 0;
}

.about:before {
	content: "";
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.about .about-img {
	position: relative;
	transition: 0.5s;
}

.about .about-img img {
	max-width: 100%;
	border: 4px solid rgba(255, 255, 255, 0.2);
	position: relative;
}

.about .about-img::before {
	position: absolute;
	left: 20px;
	top: 20px;
	width: 60px;
	height: 60px;
	z-index: 1;
	content: "";
	border-left: 5px solid #1b9cb6;
	border-top: 5px solid #1b9cb6;
	transition: 0.5s;
}

.about .about-img::after {
	position: absolute;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	z-index: 2;
	content: "";
	border-right: 5px solid #1b9cb6;
	border-bottom: 5px solid #1b9cb6;
	transition: 0.5s;
}

.about .about-img:hover {
	transform: scale(1.03);
}

.about .about-img:hover::before {
	left: 10px;
	top: 10px;
}

.about .about-img:hover::after {
	right: 10px;
	bottom: 10px;
}

.about .content h3 {
	font-weight: 600;
	font-size: 26px;
}

.about .content ul {
	list-style: none;
	padding: 0;
}

.about .content ul li {
	padding-bottom: 10px;
}

.about .content ul i {
	font-size: 20px;
	padding-right: 4px;
}

.about .content p:last-child {
	margin-bottom: 0;
}

@media (min-width: 1024px) {
	.about {
		background-attachment: fixed;
	}
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/

.why-us .box {
	padding: 50px 30px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	transition: all ease-in-out 0.3s;
	background: #1a1814;
}

.why-us .box span {
	display: block;
	font-size: 28px;
	font-weight: 700;
	color: #1b9cb6;
}

.why-us .box h4 {
	font-size: 24px;
	font-weight: 600;
	padding: 0;
	margin: 20px 0;
	color: rgba(255, 255, 255, 0.8);
}

.why-us .box p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

.why-us .box:hover {
	background: #1b9cb6;
	padding: 30px 30px 70px 30px;
	box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

.why-us .box:hover span,
.why-us .box:hover h4,
.why-us .box:hover p {
	color: #fff;
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu #menu-flters {
	padding: 0;
	margin: 0 auto 0 auto;
	list-style: none;
	text-align: center;
	border-radius: 50px;
}

.menu #menu-flters li {
	cursor: pointer;
	display: inline-block;
	padding: 8px 12px 10px 12px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1;
	color: #fff;
	margin-bottom: 10px;
	transition: all ease-in-out 0.3s;
	border-radius: 50px;
	font-family: "Playfair Display", serif;
}

.menu #menu-flters li:hover,
.menu #menu-flters li.filter-active {
	color: #1b9cb6;
}

.menu #menu-flters li:last-child {
	margin-right: 0;
}

.menu .menu-item {
	margin-top: 50px;
}

.menu .menu-img {
	width: 70px;
	border-radius: 50%;
	float: left;
	border: 5px solid rgba(255, 255, 255, 0.2);
}

.menu .menu-content {
	overflow: hidden;
	display: flex;
	justify-content: space-between;
	position: relative;
}

.menu .menu-content::after {
	content: "......................................................................"
		"...................................................................."
		"....................................................................";
	position: absolute;
	left: 20px;
	right: 0;
	top: -4px;
	z-index: 1;
	color: #bab3a6;
	font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.menu .menu-content a {
	padding-right: 10px;
	background: #1a1814;
	position: relative;
	z-index: 3;
	font-weight: 700;
	color: white;
	transition: 0.3s;
}

.menu .menu-content a:hover {
	color: #1b9cb6;
}

.menu .menu-content span {
	background: #1a1814;
	position: relative;
	z-index: 3;
	padding: 0 10px;
	font-weight: 600;
	color: #1b9cb6;
}

.menu .menu-ingredients {
	margin-left: 85px;
	font-style: italic;
	font-size: 14px;
	font-family: "Poppins", sans-serif;
	color: rgba(255, 255, 255, 0.5);
}

/*--------------------------------------------------------------
# Specials
--------------------------------------------------------------*/
.specials {
	overflow: hidden;
}

.specials .nav-tabs {
	border: 0;
}

.specials .nav-link {
	border: 0;
	padding: 12px 15px;
	transition: 0.3s;
	color: #fff;
	border-radius: 0;
	border-right: 2px solid #1b9cb6;
	font-weight: 600;
	font-size: 15px;
}

.specials .nav-link:hover {
	color: #1b9cb6;
}

.specials .nav-link.active {
	color: #1a1814;
	background: #1b9cb6;
	border-color: #1b9cb6;
}

.specials .nav-link:hover {
	border-color: #1b9cb6;
}

.specials .tab-pane.active {
	-webkit-animation: fadeIn 0.5s ease-out;
	animation: fadeIn 0.5s ease-out;
}

.specials .details h3 {
	font-size: 26px;
	font-weight: 600;
	margin-bottom: 20px;
	color: #fff;
}

.specials .details p {
	color: #aaaaaa;
}

.specials .details p:last-child {
	margin-bottom: 0;
}

@media (max-width: 992px) {
	.specials .nav-link {
		border: 0;
		padding: 15px;
	}
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events {
	background: url(../img/events-bg.jpg) center center no-repeat;
	background-size: cover;
	position: relative;
}

.events::before {
	content: "";
	background-color: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.events .section-title h2 {
	color: #fff;
}

.events .container {
	position: relative;
}

@media (min-width: 1024px) {
	.events {
		background-attachment: fixed;
	}
}

.events .events-carousel {
	background: rgba(255, 255, 255, 0.08);
	padding: 30px;
}

.events .event-item {
	color: #fff;
}

.events .event-item h3 {
	font-weight: 600;
	font-size: 26px;
	color: #1b9cb6;
}

.events .event-item .price {
	font-size: 26px;
	font-family: "Open Sans", sans-serif;
	font-weight: 700;
	margin-bottom: 15px;
}

.events .event-item .price span {
	border-bottom: 2px solid #1b9cb6;
}

.events .event-item ul {
	list-style: none;
	padding: 0;
}

.events .event-item ul li {
	padding-bottom: 10px;
}

.events .event-item ul i {
	font-size: 20px;
	padding-right: 4px;
	color: #1b9cb6;
}

.events .event-item p:last-child {
	margin-bottom: 0;
}

.events .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #1b9cb6;
}

/*--------------------------------------------------------------
# Book A Table
--------------------------------------------------------------*/
.book-a-table .php-email-form {
	width: 100%;
}

.book-a-table .php-email-form .form-group {
	padding-bottom: 8px;
}

.book-a-table .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.book-a-table .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: left;
	padding: 15px;
	font-weight: 600;
}

.book-a-table .php-email-form .error-message br + br {
	margin-top: 25px;
}

.book-a-table .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.book-a-table .php-email-form .loading {
	display: none;
	text-align: center;
	padding: 15px;
}

.book-a-table .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #1b9cb6;
	border-top-color: #1a1814;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form select,
.book-a-table .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	background: #0c0b09;
	border-color: #625b4b;
	color: white;
}

.book-a-table .php-email-form input::-moz-placeholder,
.book-a-table .php-email-form select::-moz-placeholder,
.book-a-table .php-email-form textarea::-moz-placeholder {
	color: #a49b89;
}

.book-a-table .php-email-form input::placeholder,
.book-a-table .php-email-form select::placeholder,
.book-a-table .php-email-form textarea::placeholder {
	color: #a49b89;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form select:focus,
.book-a-table .php-email-form textarea:focus {
	border-color: #1b9cb6;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form select {
	height: 44px;
}

.book-a-table .php-email-form textarea {
	padding: 10px 12px;
}

.book-a-table .php-email-form button[type="submit"] {
	background: #1b9cb6;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.book-a-table .php-email-form button[type="submit"]:hover {
	background: #1b9cb6;
}

select.form-control {
	height: 50px;
	padding: 10px 20px;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
	overflow: hidden;
}

.testimonials .testimonial-item {
	box-sizing: content-box;
	min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
	width: 90px;
	border-radius: 50%;
	margin: -40px 0 0 40px;
	position: relative;
	z-index: 2;
	border: 6px solid rgba(255, 255, 255, 0.2);
}

.testimonials .testimonial-item h3 {
	font-size: 18px;
	font-weight: bold;
	margin: 10px 0 5px 45px;
	color: white;
}

.testimonials .testimonial-item h4 {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.6);
	margin: 0 0 0 45px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
	color: #1b9cb6;
	font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
}

.testimonials .testimonial-item p {
	font-style: italic;
	margin: 0 15px 0 15px;
	padding: 20px 20px 60px 20px;
	background: #26231d;
	position: relative;
	border-radius: 6px;
	position: relative;
	z-index: 1;
}

.testimonials .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(255, 255, 255, 0.4);
	opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #1b9cb6;
}

/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery .gallery-item {
	overflow: hidden;
	border-right: 3px solid #454035;
	border-bottom: 3px solid #454035;
	position: relative;
	aspect-ratio: 1;
	width: 100%;
}

.gallery .gallery-item a {
	display: block;
	width: 100%;
	height: 100%;
}

.gallery .gallery-item img {
	transition: all ease-in-out 0.4s;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

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

/*--------------------------------------------------------------
# Staff
--------------------------------------------------------------*/
.staff .member {
	text-align: center;
	margin-bottom: 20px;
	background: #343a40;
	position: relative;
	overflow: hidden;
}

.staff .member .member-info {
	opacity: 0;
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
	transition: 0.2s;
}

.staff .member .member-info-content {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 10px;
	transition: bottom 0.4s;
}

.staff .member .member-info-content h4 {
	font-weight: 700;
	margin-bottom: 2px;
	font-size: 18px;
	color: #fff;
}

.staff .member .member-info-content span {
	font-style: italic;
	display: block;
	font-size: 13px;
	color: #fff;
}

.staff .member .social {
	position: absolute;
	left: 0;
	bottom: -38px;
	right: 0;
	height: 48px;
	transition: bottom ease-in-out 0.4s;
	text-align: center;
}

.staff .member .social a {
	transition: color 0.3s;
	color: #fff;
	margin: 0 10px;
	display: inline-block;
}

.staff .member .social a:hover {
	color: #1b9cb6;
}

.staff .member .social i {
	font-size: 18px;
	margin: 0 2px;
}

.staff .member:hover .member-info {
	background: linear-gradient(
		0deg,
		rgba(0, 0, 0, 0.9) 0%,
		rgba(0, 0, 0, 0.8) 20%,
		rgba(0, 212, 255, 0) 100%
	);
	opacity: 1;
	transition: 0.4s;
}

.staff .member:hover .member-info-content {
	bottom: 60px;
	transition: bottom 0.4s;
}

.staff .member:hover .social {
	bottom: 0;
	transition: bottom ease-in-out 0.4s;
}

/* Mobile Staff Layout - Show 3 images horizontally */
@media (max-width: 768px) {
	.staff .row {
		display: flex;
		flex-direction: column;
		gap: 0;
	}

	.staff .col-lg-4.col-md-6 {
		width: 100%;
		margin-bottom: 30px;
	}

	.staff .member {
		display: flex;
		flex-direction: column;
		align-items: center;
		background: transparent;
		position: relative;
		overflow: visible;
		margin-bottom: 0;
	}

	.staff .member img {
		width: 70px;
		height: 70px;
		object-fit: cover;
		border-radius: 50%;
		margin-bottom: 15px;
	}

	.staff .member .member-info {
		opacity: 1;
		position: static;
		background: transparent;
		text-align: center;
	}

	.staff .member .member-info-content {
		position: static;
		bottom: auto;
	}

	.staff .member .member-info-content h4 {
		color: #1b9cb6;
		font-size: 18px;
		margin-bottom: 5px;
	}

	.staff .member .member-info-content span {
		color: #fff;
		font-size: 14px;
	}

	.staff .member .social {
		display: none;
	}

	/* Show all 3 members in a horizontal layout */
	.staff .row {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 20px;
		margin-top: 20px;
	}

	.staff .col-lg-4.col-md-6 {
		margin-bottom: 0;
	}
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info {
	width: 100%;
	margin-bottom: 30px;
}

.contact .info i {
	font-size: 20px;
	width: 44px;
	height: 44px;
	background: #1b9cb6;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50px;
	transition: all 0.3s ease-in-out;
	margin: 0 auto 15px auto;
}

.contact .info.text-center h4 {
	padding: 0;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
	font-family: "Poppins", sans-serif;
}

.contact .info.text-center p {
	padding: 0;
	margin-bottom: 0;
	font-size: 14px;
	color: #bab3a6;
}

/* Keep original left-aligned styles for backwards compatibility */
.contact .info:not(.text-center) i {
	float: left;
	margin: 0;
}

.contact .info:not(.text-center) h4 {
	padding: 0 0 0 60px;
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 5px;
	font-family: "Poppins", sans-serif;
}

.contact .info:not(.text-center) p {
	padding: 0 0 0 60px;
	margin-bottom: 0;
	font-size: 14px;
	color: #bab3a6;
}

.contact .info .open-hours,
.contact .info .email,
.contact .info .phone {
	margin-top: 40px;
}

.contact .info.text-center .open-hours,
.contact .info.text-center .email,
.contact .info.text-center .phone {
	margin-top: 0;
}

/* Responsive adjustments for contact info */
@media (max-width: 991px) {
	.contact .info {
		margin-bottom: 40px;
	}
}

/* Additional centering for all forms */
.php-email-form {
	max-width: 100%;
	margin: 0 auto;
}

/* Ensure both contact and event forms are properly centered */
#contact .php-email-form,
#events-form .php-email-form {
	background: rgba(26, 24, 20, 0.8);
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.contact .php-email-form {
	width: 100%;
}

.contact .php-email-form .form-group {
	padding-bottom: 8px;
}

.contact .php-email-form .validate {
	display: none;
	color: red;
	margin: 0 0 15px 0;
	font-weight: 400;
	font-size: 13px;
}

.contact .php-email-form .error-message {
	display: none;
	color: #fff;
	background: #ed3c0d;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .sent-message {
	display: none;
	color: #fff;
	background: #18d26e;
	text-align: center;
	padding: 15px;
	font-weight: 600;
}

.contact .php-email-form .loading {
	display: none;
	text-align: center;
	padding: 15px;
}

.contact .php-email-form .loading:before {
	content: "";
	display: inline-block;
	border-radius: 50%;
	width: 24px;
	height: 24px;
	margin: 0 10px -6px 0;
	border: 3px solid #1b9cb6;
	border-top-color: #1a1814;
	-webkit-animation: animate-loading 1s linear infinite;
	animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form select,
.contact .php-email-form textarea {
	border-radius: 0;
	box-shadow: none;
	font-size: 14px;
	background: #0c0b09;
	border-color: #625b4b;
	color: white;
}

.contact .php-email-form input::-moz-placeholder,
.contact .php-email-form select::-moz-placeholder,
.contact .php-email-form textarea::-moz-placeholder {
	color: #a49b89;
}

.contact .php-email-form input::placeholder,
.contact .php-email-form select::placeholder,
.contact .php-email-form textarea::placeholder {
	color: #a49b89;
}

.contact .php-email-form input:focus,
.contact .php-email-form select:focus,
.contact .php-email-form textarea:focus {
	border-color: #1b9cb6;
}

.contact .php-email-form input,
.contact .php-email-form select {
	height: 44px;
}

.contact .php-email-form textarea {
	padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
	background: #1b9cb6;
	border: 0;
	padding: 10px 35px;
	color: #fff;
	transition: 0.4s;
	border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
	background: #1b9cb6;
}

@-webkit-keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/* Bookings */

button {
	font-family: "Poppins", sans-serif;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
}

input[type="time"]::-webkit-calendar-picker-indicator {
	filter: invert(1);
}

label {
	font-family: "Open Sans", sans-serif;
	padding-bottom: 4px;
	color: #aaa;
}

/*--------------------------------------------------------------
# Notification Toast
--------------------------------------------------------------*/
.notification-toast {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 9999;
	background: #18d26e;
	color: white;
	padding: 0;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	transform: translateX(400px);
	opacity: 0;
	transition: all 0.3s ease-in-out;
	max-width: 400px;
	min-width: 300px;
}

.notification-toast.show {
	transform: translateX(0);
	opacity: 1;
}

.notification-content {
	display: flex;
	align-items: center;
	padding: 15px 20px;
}

.notification-icon {
	font-size: 20px;
	margin-right: 12px;
	color: white;
}

.notification-message {
	flex: 1;
	font-size: 14px;
	font-weight: 500;
}

.notification-close {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	padding: 0 5px;
	margin-left: 10px;
	opacity: 0.8;
	transition: opacity 0.2s;
}

.notification-close:hover {
	opacity: 1;
}

@media (max-width: 768px) {
	.notification-toast {
		right: 10px;
		left: 10px;
		max-width: none;
		min-width: auto;
		transform: translateY(-100px);
	}

	.notification-toast.show {
		transform: translateY(0);
	}
}

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 9998;
	background: rgba(0, 0, 0, 0.95);
	color: white;
	padding: 20px;
	transform: translateY(100%);
	transition: transform 0.3s ease-in-out;
	border-top: 3px solid #1b9cb6;
}

.cookie-popup.show {
	transform: translateY(0);
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}

.cookie-text {
	flex: 1;
}

.cookie-text h4 {
	margin: 0 0 10px 0;
	color: #1b9cb6;
	font-size: 18px;
	font-weight: 600;
}

.cookie-text p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #e0e0e0;
}

.cookie-text a {
	color: #1b9cb6;
	text-decoration: underline;
}

.cookie-text a:hover {
	color: #1b9cb6;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
	font-family: "Poppins", sans-serif;
}

.cookie-accept {
	background: #1b9cb6;
	color: white;
}

.cookie-accept:hover {
	background: #1b9cb6;
}

.cookie-decline {
	background: transparent;
	color: #1b9cb6;
	border: 1px solid #1b9cb6;
}

.cookie-decline:hover {
	background: #1b9cb6;
	color: white;
}

.cookie-manage {
	background: #333;
	color: white;
	border: 1px solid #555;
}

.cookie-manage:hover {
	background: #555;
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
		flex-wrap: wrap;
	}

	.cookie-btn {
		flex: 1;
		min-width: 120px;
	}
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
	background: black;
	padding: 0 0 30px 0;
	color: #fff;
	font-size: 14px;
}

#footer .footer-top {
	background: #0c0b09;
	border-top: 1px solid #37332a;
	border-bottom: 1px solid #28251f;
	padding: 60px 0 30px 0;
}

#footer .footer-top .footer-info {
	margin-bottom: 30px;
}

#footer .footer-top .footer-info h3 {
	font-size: 24px;
	margin: 0 0 20px 0;
	padding: 2px 0 2px 0;
	line-height: 1;
	font-weight: 300;
	text-transform: uppercase;
	font-family: "Poppins", sans-serif;
}

#footer .footer-top .footer-info p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 0;
	font-family: "Playfair Display", serif;
	color: #fff;
}

#footer .footer-top .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #28251f;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .footer-top .social-links a:hover {
	background: #1b9cb6;
	color: #fff;
	text-decoration: none;
}

#footer .footer-top h4 {
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	position: relative;
	padding-bottom: 12px;
}

#footer .footer-top .footer-links {
	margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#footer .footer-top .footer-links ul i {
	padding-right: 2px;
	color: #1b9cb6;
	font-size: 18px;
	line-height: 1;
}

#footer .footer-top .footer-links ul li {
	padding: 10px 0;
	display: flex;
	align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
	padding-top: 0;
}

#footer .footer-top .footer-links ul a {
	color: #fff;
	transition: 0.3s;
	display: inline-block;
	line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
	color: #1b9cb6;
}

#footer .footer-top .footer-newsletter form {
	margin-top: 30px;
	background: #28251f;
	padding: 6px 10px;
	position: relative;
	border-radius: 50px;
	border: 1px solid #454035;
}

#footer .footer-top .footer-newsletter form input[type="email"] {
	border: 0;
	padding: 4px;
	width: calc(100% - 110px);
	background: #28251f;
	color: white;
}

#footer .footer-top .footer-newsletter form input[type="submit"] {
	position: absolute;
	top: -1px;
	right: -1px;
	bottom: -1px;
	border: 0;
	background: none;
	font-size: 16px;
	padding: 0 20px 2px 20px;
	background: #1b9cb6;
	color: #fff;
	transition: 0.3s;
	border-radius: 50px;
}

#footer .footer-top .footer-newsletter form input[type="submit"]:hover {
	background: #1b9cb6;
}

#footer .copyright {
	text-align: center;
	padding-top: 30px;
}

#footer .credits {
	padding-top: 10px;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

/* Mobile footer styling */
@media (max-width: 991px) {
	#footer .footer-top .footer-info,
	#footer .footer-top .footer-links,
	#footer .footer-top .footer-contact {
		text-align: center;
		margin-bottom: 30px;
	}

	#footer .footer-top .footer-links ul {
		list-style: none;
		padding: 0;
		margin: 0 auto;
		display: block;
		text-align: center;
		width: 100%;
	}

	#footer .footer-top .footer-links ul li {
		display: block;
		margin: 0 auto 15px auto;
		padding: 8px 0;
		text-align: center;
		width: 100%;
	}

	#footer .footer-top .footer-contact p {
		text-align: center;
	}

	#footer .footer-top h4 {
		text-align: center;
		margin-bottom: 20px;
		color: #1b9cb6;
		font-weight: 700;
		font-size: 18px;
		text-transform: uppercase;
		letter-spacing: 1px;
		padding: 10px 0;
		border-bottom: 2px solid #1b9cb6;
		margin-bottom: 25px;
	}

	#footer .footer-top .footer-info p {
		text-align: center;
		margin-bottom: 20px;
	}

	/* Center social links */
	#footer .footer-top .social-links {
		text-align: center;
		margin-top: 20px;
	}

	/* Center newsletter form */
	#footer .footer-top .footer-newsletter {
		text-align: center;
	}

	#footer .footer-top .footer-newsletter form {
		display: inline-block;
		max-width: 300px;
		width: 100%;
	}

	/* Center logo */
	#footer .footer-top .footer-info .text-center {
		text-align: center;
	}

	/* Center all footer content */
	#footer .footer-top .row > div {
		text-align: center;
	}

	/* Individual link centering */
	#footer .footer-top .footer-links ul a {
		display: block;
		text-align: center;
		width: 100%;
		padding: 5px 0;
	}
}
.nav-link {
	text-align: center !important;
}
.navbar {
	text-align: center !important;
}
