/* Front Page Hero Sections */
.front-hero-sections {
	display: grid;
	grid-template-columns: 1fr;
	width: 100vw;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.hero-section {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 40px;
	overflow: hidden;
	min-height: 80vh;
}

.hero-section.hero-booking .hero-content {
	margin-left: 0;
	margin-right: auto;
	max-width: 67%;
}

.hero-section.hero-cafe .hero-content {
	margin-left: auto;
	margin-right: 0;
	max-width: 67%;
}

.hero-content-wrapper {
	position: relative;
	z-index: 2;
	display: flex;
	width: 100%;
	max-width: 1200px;
}

.hero-section.hero-booking .hero-content-wrapper {
	justify-content: flex-start;
	margin-left: auto;
	margin-right: auto;
}

.hero-section.hero-cafe .hero-content-wrapper {
	justify-content: flex-end;
	margin-left: auto;
	margin-right: auto;
}

.hero-bg-slider {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
}

.hero-bg-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	transform: scale(1);
}

.hero-bg-image.active {
	opacity: 1;
}

.hero-booking {
	background-color: #2c3e50;
}

.hero-cafe {
	background-color: #34495e;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
}

.hero-section.hero-booking .hero-overlay {
	background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.90) 60%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.hero-section.hero-cafe .hero-overlay {
	background: linear-gradient(to left, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.90) 60%, rgba(0, 0, 0, 0.6) 80%, transparent 100%);
}

.hero-content {
	position: relative;
	text-align: left;
	color: #ffffff;
	padding: 40px;
}
.hero-content h1,
.hero-content h2 {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 20px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
	color: #ffffff;
}

.hero-content p {
	font-size: 1.2rem;
	line-height: 1.6;
	margin-bottom: 30px;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
	color: #ffffff;
}

.hero-content .hero-description {
	margin-bottom: 15px;
}

.hero-content .hero-hours {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 8px;
	font-size: 1.1rem;
	margin-bottom: 25px;
	font-weight: 600;
}

.hero-content .hero-hours svg {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.hero-links {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 15px;
	flex-wrap: wrap;
}

.hero-icons-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.hero-button {
	display: inline-block;
	padding: 15px 40px;
	background: #d4874f;
	color: #ffffff;
	text-decoration: none;
	font-size: 1.1rem;
	font-weight: 600;
	border-radius: 5px;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-button:hover {
	background: #b86f3f;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.hero-link-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: rgba(255, 255, 255, 0.2);
	border-radius: 50%;
	color: #ffffff;
	transition: all 0.3s ease;
	text-decoration: none;
}

.hero-link-icon:hover {
	background: rgba(255, 255, 255, 0.4);
	transform: translateY(-2px);
}

.hero-link-icon svg {
	width: 24px;
	height: 24px;
}

/* Responsive */
@media (max-width: 968px) {
	.hero-section {
		min-height: 400px;
		padding: 40px 30px;
	}

	.hero-section.hero-booking .hero-content,
	.hero-section.hero-cafe .hero-content {
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
		padding: 20px;
	}

	.hero-section.hero-booking .hero-content-wrapper,
	.hero-section.hero-cafe .hero-content-wrapper {
		justify-content: center;
		margin-left: auto;
		margin-right: auto;
		max-width: 100%;
	}

	.hero-button {
		width: 100%;
		text-align: center;
	}

	.hero-links {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}

	.hero-icons-wrapper {
		display: flex;
		justify-content: center;
		width: auto;
	}

	.hero-button {
		width: 100%;
		flex-basis: auto;
	}

	.hero-link-icon {
		width: 50px;
		height: 50px;
		flex-shrink: 0;
	}

	.hero-content h2 {
		font-size: 2rem;
	}

	.hero-content p {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.hero-section {
		min-height: 350px;
		padding: 30px 20px;
	}

	.hero-content h2 {
		font-size: 1.75rem;
	}

	.hero-content p {
		font-size: 1rem;
		margin-bottom: 25px;
	}

	.hero-button {
		padding: 12px 30px;
		font-size: 1rem;
	}
}
