:root {
	--primary: #d4af37;
	--primary-dark: #b89628;
	--dark: #121212;
	--darker: #0a0a0a;
	--light: #f5f5f5;
	--gray: #2a2a2a;
	--transition: all 0.3s ease;
}
 
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
 
body {
	font-family: 'Raleway', sans-serif;
	background-color: var(--darker);
	color: var(--light);
	line-height: 1.6;
	overflow-x: hidden;
}
 
h1, h2, h3, h4 {
	font-family: 'Playfair Display', serif;
	font-weight: 600;
}
 
.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}
 
/* Header & Navigation */
header {
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(10, 10, 10, 0.95);
	backdrop-filter: blur(10px);
	z-index: 1000;
	padding: 15px 0;
	border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}
 
.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
 
.logo {
	font-family: 'Playfair Display', serif;
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--light);
	text-decoration: none;
}
 
.logo span {
	color: var(--primary);
}
 
nav ul {
	display: flex;
	list-style: none;
}
 
nav ul li {
	margin-left: 30px;
}
 
nav ul li a {
	color: var(--light);
	text-decoration: none;
	font-weight: 500;
	font-size: 1.1rem;
	transition: var(--transition);
	position: relative;
}
 
nav ul li a:hover {
	color: var(--primary);
}
 
nav ul li a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background: var(--primary);
	transition: var(--transition);
}
 
nav ul li a:hover::after {
	width: 100%;
}
 
.language-selector {
	background: transparent;
	border: 1px solid var(--primary);
	color: var(--light);
	padding: 8px 15px;
	border-radius: 30px;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	cursor: pointer;
	transition: var(--transition);
}
 
.language-selector:hover {
	background: var(--primary);
	color: var(--darker);
}
 
/* Hero Section */
.hero {
	height: 100vh;
	background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('photo-1517248135467-4c7edcad34c4') center/cover no-repeat;
/*https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80*/
	display: flex;
	align-items: center;
	text-align: center;
	padding-top: 80px;
}
 
.hero-content {
	max-width: 800px;
	margin: 0 auto;
}
 
.hero h1 {
	font-size: 4.5rem;
	margin-bottom: 20px;
	text-transform: uppercase;
	letter-spacing: 3px;
}
 
.hero p {
	font-size: 1.4rem;
	margin-bottom: 40px;
	opacity: 0.9;
}
 
.btn {
	display: inline-block;
	background: var(--primary);
	color: var(--darker);
	padding: 12px 35px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: var(--transition);
	border: 2px solid var(--primary);
}
 
.btn:hover {
	background: transparent;
	color: var(--primary);
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
 
.hero-logo {
	display: block;
	margin: 0 auto 20px;
	max-width: 80vw;
	max-height: 20vh;
	height: auto;
}
 
/* Events Section */
.events {
	background: var(--dark);
	padding: 100px 0;
}
 
.event-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}
 
.event-card {
	background: var(--gray);
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(212, 175, 55, 0.1);
}
 
.event-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}
 
.event-img {
	height: 200px;
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
}
 
.event-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
 
.event-content {
	padding: 25px;
}
 
.event-content h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
	color: var(--primary);
}
 
.event-content p {
	margin-bottom: 15px;
	opacity: 0.8;
}
 
.event-link {
	display: inline-block;
	background: var(--primary);
	color: var(--darker);
	padding: 8px 20px;
	border-radius: 20px;
	text-decoration: none;
	font-weight: 600;
	transition: var(--transition);
}
 
.event-link:hover {
	background: transparent;
	color: var(--primary);
	border: 1px solid var(--primary);
}
 
.event-times {
	background: var(--gray);
	padding: 20px;
	border-radius: 10px;
	margin-top: 40px;
}
 
.event-times h4 {
	color: var(--primary);
	margin-bottom: 15px;
}
 
.event-times ul {
	list-style: none;
}
 
.event-times li {
	margin-bottom: 10px;
	opacity: 0.9;
}
 
/* Opening Hours */
.opening-hours {
	background: var(--gray);
	padding: 25px 0;
	text-align: center;
	margin-top: 100px;
}
 
.hours-container {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 30px;
}
 
.hour-item {
	text-align: center;
	min-width: 150px;
}
 
.hour-item h3 {
	color: var(--primary);
	margin-bottom: 10px;
	font-size: 1.3rem;
}
 
/* Section Styling */
section {
	padding: 100px 0;
}
 
.section-title {
	text-align: center;
	margin-bottom: 60px;
	position: relative;
}
 
.section-title h2 {
	font-size: 2.8rem;
	display: inline-block;
	position: relative;
	z-index: 2;
}
 
.section-title h2::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background: var(--primary);
	z-index: -1;
}
 
/* Specials */
.specials {
	background: var(--dark);
}
 
.specials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 20px;
}
 
.special-card {
	background: var(--gray);
	border-radius: 10px;
	overflow: hidden;
	transition: var(--transition);
	border: 1px solid rgba(212, 175, 55, 0.1);
}
 
.special-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
	border-color: var(--primary);
}
 
.special-img {
	height: 150px;
	background: #222;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary);
	font-size: 2.5rem;
}
 
.special-content {
	padding: 15px;
}
 
.special-content h3 {
	font-size: 1.2rem;
	margin-bottom: 8px;
	color: var(--primary);
}
 
.special-content p {
	font-size: 0.9rem;
	margin-bottom: 8px;
	opacity: 0.8;
}
 
.price {
	color: var(--primary);
	font-weight: 600;
	font-size: 1rem;
	margin-top: 8px;
	display: block;
}
 
/* Footer */
footer {
	background: var(--darker);
	padding: 50px 0 20px;
	text-align: center;
}
 
.footer-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 30px;
}
 
.social-links {
	display: flex;
	gap: 20px;
	margin: 20px 0;
}
 
.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: var(--gray);
	color: var(--light);
	font-size: 1.2rem;
	transition: var(--transition);
}
 
.social-links a:hover {
	background: var(--primary);
	color: var(--darker);
	transform: translateY(-3px);
}
 
.copyright {
	opacity: 0.7;
	font-size: 0.9rem;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	width: 100%;
}
 
/* Responsive Design */
@media (max-width: 992px) {
	.hero h1 {
		font-size: 3.5rem;
	}
 
	nav ul li {
		margin-left: 20px;
	}
	.event-grid {
		grid-template-columns: 1fr;
	}
}
 
@media (max-width: 768px) {
	.header-container {
		flex-direction: column;
		gap: 15px;
	}
 
	nav ul {
		margin-top: 10px;
	}
 
	nav ul li {
		margin: 0 10px;
	}
 
	.hero h1 {
		font-size: 2.8rem;
	}
 
	.hero p {
		font-size: 1.2rem;
	}
 
	.hours-container {
		flex-direction: column;
		align-items: center;
	}
 
	.hour-item {
		width: 100%;
		max-width: 300px;
	}
	.event-grid {
		grid-template-columns: 1fr;
	}
}
 
@media (max-width: 576px) {
	.hero h1 {
		font-size: 2.2rem;
	}
 
	nav ul {
		flex-wrap: wrap;
		justify-content: center;
	}
 
	nav ul li {
		margin: 5px 8px;
	}
 
	.section-title h2 {
		font-size: 2.2rem;
	}
}
 
.special-notice {
	color: #ff0000; /* Rot für Aufmerksamkeit */
	font-weight: bold;
	text-align: center;
	margin-top: 20px;
	font-size: 1.2rem;
	padding: 10px;
	border: 1px solid #ff0000;
	border-radius: 5px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
 
/* New styles for specials halves */
.specials-columns {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
 
.specials-half {
	width: 48%;
}
 
.gourmet-info {
	margin-top: 20px;
	opacity: 0.9;
	text-align: left;
}
 
.gourmet-info p {
	margin-bottom: 5px;
	font-size: 0.9rem;
}
 
.title-card {
	background: var(--gray);
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	margin-bottom: 20px;
	border: 1px solid rgba(212, 175, 55, 0.1);
}
 
.title-card h2 {
	font-size: 1.8rem;
	color: var(--primary);
}
 
.vertical-divider {
	width: 1px;
	background: var(--primary);
	opacity: 0.5;
}
 
@media (max-width: 768px) {
	.specials-columns {
		flex-direction: column;
		gap: 30px;
	}
 
	.specials-half {
		width: 100%;
	}
 
	.vertical-divider {
		display: none;
	}
 
	.specials-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	}
}
