:root {
	--gold: #d4af37;
	--gold-dark: #b8972a00;
	--green: #1a5f3a;
	--dark: #1a1a1a;
	--light: #f8f9fa;
}

body {
	font-family: "Poppins", sans-serif;
	background: var(--light);
	color: #2c3e50;
	line-height: 1.7;
}

h1 {
	color: #fff; /*var(--dark);*/
}

h2,
h3 {
	font-weight: 700;
	color: var(--dark);
}

.navbar {
	background: rgba(255, 255, 255, 0.98) !important;
	backdrop-filter: blur(12px);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	padding: 12px 0;
}

.navbar-brand img {
	height: 48px;
	transition: all 0.3s;
}

.btn-gold {
	background: linear-gradient(135deg, var(--gold), #f4d03f);
	color: white !important;
	border: none;
	border-radius: 50px;
	padding: 10px 28px;
	font-weight: 600;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
	background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.hero {
	height: 90vh;
	min-height: 600px;
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
		url("../images/hero.webp") center/cover no-repeat;
	display: flex;
	align-items: center;
	color: white;
	position: relative;
}

.hero h1 {
	font-size: 4.5rem;
	font-weight: 800;
	text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7);
}

.service-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
	border: none;
}

.service-card:hover {
	transform: translateY(-12px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card .card-body {
	padding: 2rem;
}

.service-card i {
	font-size: 3rem;
	color: var(--gold);
	margin-bottom: 1.5rem;
}

.menu-item {
	background: #f1f8f5;
	border-left: 5px solid var(--gold);
	border-radius: 12px;
	padding: 1.5rem;
	transition: all 0.3s;
}

.menu-item:hover {
	background: #e8f5e8;
	transform: translateX(8px);
}

.booking-section {
	background: linear-gradient(135deg, var(--green), #0f3a24);
	position: relative;
	overflow: hidden;
}

.booking-form {
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(15px);
	border-radius: 20px;
	padding: 3rem;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-control,
.form-select {
	border-radius: 12px;
	padding: 14px;
	background: rgba(255, 255, 255, 0.95);
	border: 1px solid rgba(255, 255, 255, 0.3);
}

.form-control:focus {
	border-color: var(--gold);
	box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
	background: white;
}

footer {
	background: var(--dark);
	color: #bdc3c7;
}

footer a {
	color: var(--gold);
	text-decoration: none;
}

footer a:hover {
	color: #fff;
}

.section-title {
	position: relative;
	display: inline-block;
}

.section-title::after {
	content: "";
	width: 70px;
	height: 4px;
	background: var(--gold);
	position: absolute;
	bottom: -12px;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 2px;
}

@media (max-width: 768px) {
	.hero h1 {
		font-size: 3rem;
	}
	.hero p {
		font-size: 1.2rem;
	}
	.navbar-brand img {
		height: 40px;
	}
}
