* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Georgia', 'Garamond', serif;
	background-color: #000;
	color: #fff;
	line-height: 1.6;
}

/* Header Styles */
header {
	background: transparent;
	position: sticky;
	top: 0;
	z-index: 1000;
}

.header-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 50px;
}
.logo {
	font-size: 28px;
	font-weight: bold;
	letter-spacing: 2px;
	color: #d4af37;
}

/* Desktop navigation: remove list markers and align horizontally */
nav ul {
	list-style: none;
	display: flex;
	gap: 30px;
	align-items: center;
}

/* Active nav link */
nav a.active {
	color: #d4af37;
	position: relative;
}

nav a.active::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: -8px;
	height: 3px;
	background: #d4af37;
	border-radius: 2px;
}

/* Header when page is scrolled */
header.scrolled {
	background-color: rgba(0, 0, 0, 0.95);
	border-bottom: 2px solid #d4af37;
}

/* Awards images styling */
.awards-grid img {
	display: block;
	max-height: 260px;
	width: auto;
	margin: 0 auto;
	object-fit: contain;
	background-color: #0b0b0b;
	padding: 6px;
	border-radius: 6px;
	border: 1px solid #222;
}

nav a {
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	letter-spacing: 1px;
	transition: color 0.3s ease;
	text-transform: uppercase;
}

nav a:hover {
	color: #d4af37;
}

/* Hamburger Menu Styles */
.hamburger-menu {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	flex-direction: column;
	gap: 6px;
}

.hamburger-menu span {
	width: 25px;
	height: 3px;
	background-color: #d4af37;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
	transform: rotate(45deg) translate(10px, 10px);
}

.hamburger-menu.active span:nth-child(2) {
	opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
	transform: rotate(-45deg) translate(7px, -7px);
}

.language-selector {
	display: flex;
	gap: 15px;
}

.language-selector button {
	background-color: transparent;
	border: 1px solid #d4af37;
	color: #d4af37;
	padding: 8px 15px;
	cursor: pointer;
	font-size: 12px;
	font-family: 'Georgia', serif;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.language-selector button.active {
	background-color: #d4af37;
	color: #000;
}

.language-selector button:hover {
	background-color: #d4af37;
	color: #000;
}

/* Responsive Design */
@media (max-width: 1024px) {
	.header-content {
		padding: 20px 30px;
	}

	nav ul {
		gap: 20px;
	}
}

@media (max-width: 1299px) {
	.header-content {
		padding: 15px 20px;
	}

	.hamburger-menu {
		display: flex;
		order: 3;
		margin-left: 8px;
	}

	.logo {
		order: 1;
		font-size: 24px;
	}

	.language-selector {
		order: 2;
		gap: 10px;
		display: flex;
		align-items: center;
	}

	.language-selector button {
		padding: 6px 12px;
		font-size: 11px;
	}

	nav.nav-menu {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background-color: #000;
		border-bottom: 2px solid #d4af37;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	nav.nav-menu.active {
		/* Limit menu height to viewport minus header so items aren't cut off */
		max-height: calc(100vh - 70px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		padding-bottom: 12px;
	}

	nav ul {
		flex-direction: column;
		gap: 0;
		padding: 20px;
	}

	nav li {
		padding: 10px 0;
		border-bottom: 1px solid #333;
	}

	nav li:last-child {
		border-bottom: none;
	}

	nav a {
		display: block;
		font-size: 13px;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 12px 15px;
	}

	.logo {
		font-size: 20px;
	}

	.hamburger-menu span {
		width: 22px;
		height: 2.5px;
	}

	.language-selector button {
		padding: 5px 10px;
		font-size: 10px;
	}
}

/* Main Content */
main {
	padding: 0;
}

.hero {
	height: clamp(300px, 40vh, 400px);
	background-image: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)), url(./img/baner.jpg);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.hero h1 {
	font-size: clamp(2rem, 5vw, 3rem);
	margin-bottom: 50px;
	letter-spacing: 1.5px;
}

.hero p {
	font-size: clamp(0.95rem, 2.5vw, 1.2rem);
	line-height: 1.6;
}

.contact-form {
	max-width: 900px;
	margin-top: 20px;
}

.contact-form .form-row {
	margin-bottom: 14px;
	display: flex;
	flex-direction: column;
}

.contact-form label {
	font-weight: bold;
	margin-bottom: 6px;
	color: #d4af37;
}

.contact-form input,
.contact-form textarea {
	background: #0f0f0f;
	color: #fff;
	border: 1px solid #2a2a2a;
	padding: 10px 12px;
	border-radius: 4px;
	font-family: inherit;
	font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
	outline: none;
	border-color: #d4af37;
	box-shadow: 0 0 8px rgba(212, 175, 55, 0.12);
}

.contact-form .error {
	border-color: #ff6b6b !important;
	box-shadow: 0 0 6px rgba(255, 107, 107, 0.08);
}

.error-msg {
	color: #ff6b6b;
	font-size: 13px;
	margin-top: 6px;
	min-height: 18px;
}

.required {
	color: #d4af37;
	margin-left: 6px;
}

.form-actions {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 8px;
}

.btn.submit {
	background: #d4af37;
	color: #000;
	border: none;
	padding: 10px 18px;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
}

.form-success {
	color: #000;
	background: #d4af37;
	padding: 8px 12px;
	border-radius: 4px;
}

@media (max-width: 768px) {
	.contact-form input,
	.contact-form textarea {
		font-size: 13px;
	}
}

.hero {
	padding: 120px 50px;
	text-align: center;
	width: 100%;
}

.hero h1 {
	font-size: 48px;
	margin-bottom: 20px;
	color: #d4af37;
	letter-spacing: 2px;
}

.hero p {
	font-size: 18px;
	max-width: 800px;
	margin: 0 auto;
	color: #ccc;
	line-height: 1.8;
}

/* Sections */
section {
	padding: 80px 50px;
	border-bottom: 1px solid #333;
}

section h2 {
	font-size: 32px;
	margin-bottom: 30px;
	color: #d4af37;
	letter-spacing: 1px;
}

section h3 {
	font-size: 20px;
	margin-top: 30px;
	margin-bottom: 15px;
	color: #d4af37;
}

.content-text {
	max-width: 900px;
	font-size: 16px;
	line-height: 1.8;
	color: #ddd;
}

.awards-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 30px;
}

.award-item {
	padding: 20px;
	border-left: 3px solid #d4af37;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	text-align: center;
}

.award-item h4 {
	color: #d4af37;
	margin-bottom: 10px;
	font-size: 16px;
}

.degustacja-option {
	background-color: #111;
	padding: 20px;
	margin: 15px 0;
	border-left: 3px solid #d4af37;
}

.degustacja-option p {
	color: #ddd;
	margin: 8px 0;
}

.highlight {
	color: #d4af37;
	font-weight: bold;
}

.private-rooms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-top: 30px;
}

.room-card {
	background-color: #111;
	padding: 30px;
	border: 1px solid #333;
}

.room-card h4 {
	font-size: 18px;
	color: #d4af37;
	margin-bottom: 15px;
}

.room-card p {
	color: #ddd;
	margin-bottom: 10px;
}

/* Footer */
footer {
	background-color: #1a1a1a;
	border-top: 2px solid #d4af37;
	padding: 40px 50px;
	text-align: center;
}

.footer-content {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
	margin-bottom: 30px;
}

.footer-item h4 {
	color: #d4af37;
	margin-bottom: 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.footer-item p {
	color: #ddd;
	font-size: 14px;
}

.footer-item a {
	color: #d4af37;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-item a:hover {
	color: #fff;
}

.footer-bottom {
	border-top: 1px solid #333;
	padding-top: 20px;
	color: #999;
	font-size: 12px;
}

/* Responsive */
@media (max-width: 768px) {
	.header-content {
		gap: 20px;
	}

	nav ul {
		flex-direction: column;
		gap: 15px;
	}

	section {
		padding: 40px 20px;
	}

	.hero {
		padding: 60px 20px;
	}

	.hero h1 {
		font-size: 32px;
	}

	.awards-grid,
	.private-rooms {
		grid-template-columns: 1fr;
	}

	.footer-content {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* Hidden sections for language switching */
.hidden {
	display: none;
}

/* Cookies Popup Styles */
.cookies-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.95);
	border-top: 2px solid #d4af37;
	padding: 20px 50px;
	z-index: 2000;
	box-shadow: 0 -2px 10px rgba(212, 175, 55, 0.3);
	display: none;
}

.cookies-popup.show {
	display: block;
	animation: slideUp 0.3s ease-in-out;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.cookies-content h3 {
	color: #d4af37;
	margin-bottom: 8px;
	font-size: 18px;
}

.cookies-content p {
	color: #ccc;
	font-size: 14px;
	line-height: 1.5;
	flex: 1;
	margin: 0;
}

/* Center main/site content on large screens (from #home to footer) */
@media (min-width: 1025px) {
	main {
		max-width: 1200px;
		margin-left: auto;
		margin-right: auto;
		padding-left: 0;
		padding-right: 0;
	}

	/* Ensure section inner content is constrained and centered */
	.content-text,
	.contact-form {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}

	/* Center footer content within same max width */
	.footer-content,
	.footer-bottom {
		max-width: 1000px;
		margin-left: auto;
		margin-right: auto;
	}
}

.cookies-buttons {
	display: flex;
	gap: 15px;
	flex-shrink: 0;
}

.cookie-btn {
	padding: 10px 20px;
	border: none;
	border-radius: 4px;
	font-size: 14px;
	font-weight: bold;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	text-transform: uppercase;
}

.cookie-btn.accept {
	background-color: #d4af37;
	color: #000;
}

.cookie-btn.accept:hover {
	background-color: #ffd700;
	box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

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

.cookie-btn.decline:hover {
	background-color: rgba(212, 175, 55, 0.1);
	border-color: #ffd700;
	color: #ffd700;
}

@media (max-width: 768px) {
	.cookies-popup {
		padding: 15px 20px;
	}

	.cookies-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 15px;
	}

	.cookies-buttons {
		width: 100%;
	}

	.cookie-btn {
		flex: 1;
		padding: 8px 15px;
		font-size: 12px;
	}
}

/* Gallery Styles */

.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 20px;
	margin: 0 auto;
	max-width: 1000px;
}

.gallery-item {
	width: 100%;
	height: 220px;
	object-fit: cover;
	cursor: pointer;
	border: 2px solid transparent;
	transition: all 0.3s ease;
	border-radius: 4px;
}

.gallery-item:hover {
	transform: scale(1.05);
	border-color: #d4af37;
	box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Lightbox Styles */
.lightbox {
	display: none;
	position: fixed;
	z-index: 2000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.95);
	animation: fadeIn 0.3s ease;
}

.lightbox.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.lightbox-content {
	position: relative;
	max-width: 90vw;
	max-height: 90vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

.lightbox-content img {
	max-width: 100%;
	max-height: 85vh;
	object-fit: contain;
	animation: slideIn 0.3s ease;
}

@keyframes slideIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 40px;
	font-size: 40px;
	color: #d4af37;
	cursor: pointer;
	transition: color 0.3s ease;
	z-index: 2001;
}

.lightbox-close:hover {
	color: #fff;
}

.lightbox-prev,
.lightbox-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background-color: rgba(212, 175, 55, 0.3);
	color: #d4af37;
	border: none;
	font-size: 30px;
	padding: 15px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
	border-radius: 4px;
	user-select: none;
}

.lightbox-prev {
	left: 20px;
}

.lightbox-next {
	right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
	background-color: rgba(212, 175, 55, 0.6);
	color: #fff;
}

.lightbox-counter {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: #d4af37;
	font-size: 16px;
	background-color: rgba(0, 0, 0, 0.7);
	padding: 10px 20px;
	border-radius: 4px;
}

/* Responsive Gallery */
@media (max-width: 768px) {
	.gallery-grid {
		grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
		gap: 15px;
	}

	.gallery-item {
		height: 150px;
	}

	.lightbox-prev,
	.lightbox-next {
		padding: 10px 15px;
		font-size: 24px;
	}

	.lightbox-close {
		font-size: 30px;
		top: 15px;
		right: 20px;
	}

	.lightbox-counter {
		font-size: 14px;
		padding: 8px 15px;
	}
}
