@font-face {
	font-family: 'Montserrat';
	src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Darumadrop One';
	src: url('../fonts/Darumadrop_One/DarumadropOne-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Dancing Script';
	src: url('../fonts/Dancing_Script/DancingScript-VariableFont_wght.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	box-sizing: border-box;
	color: white;
	padding: 0;
	margin: 0;
}
html,
body {
	overflow-x: hidden;
}

/* Nawigacja */
.navbar {
	position: absolute;
	width: 96%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0px 20px;
	background-color: #e6c7a8;
	margin: 1%;
	border-radius: 30px;
	z-index: 100;
	border: 3px solid rgba(199, 161, 89, 255);
}

@media (max-width: 768px) {
	.navbar {
		width: 93%;
	}
	nav {
		flex-direction: column;
		padding: 10px 3%;
		text-align: center;
	}

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

	nav ul li {
		display: block;
		width: 100%;
	}
}
/* Logo */
.logo img {
	margin-top: 12%;
	height: 14vh;
}

/* Menu */
.menu {
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 0;
}

.menu li a {
	text-decoration: none;
	color: #5c3d2e;
	font-size: 32px;
	font-family: 'Dancing Script', serif;
}
.menu a::after {
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: white;
	transition: width 0.3s;
	margin: auto;
}

.menu a:hover::after,
.menu a.active::after {
	width: 100%;
}
/* Ikony społecznościowe */
.social-icons img {
	max-height: 24px;
	max-width: 24px;
	height: 24px;
	margin-left: 10px;
}

/* Przycisk hamburgera */
.menu-toggle {
	display: none;
	font-size: 24px;
	background: none;
	border: none;
	color: white;
	cursor: pointer;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	.menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 60px;
		right: 20px;
		background: rgba(0, 0, 0, 0.9);
		padding: 10px;
		border-radius: 8px;
	}

	.menu.active {
		display: flex;
		color: white;
	}

	.menu-toggle {
		display: block;
	}
}
/* Style dla sekcji głównej - BANER */
/* Główna sekcja */
.main-content {
	position: relative;
	width: 100%;
	min-height: 100vh; /* Pełna wysokość ekranu */
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	overflow: hidden;
}

/* Tło */
.main-content::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/banners/banner1.webp'); /* Ścieżka do obrazu */
	background-color: #222; /* Placeholder */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

/* Wrapper dla treści */
.content-wrapper {
	padding: 20px;
	max-width: 600px;
	margin: 0 auto;
}

/* Nagłówek */
.main-content h1 {
	font-size: 3em;
	font-family: Montserrat, sans-serif;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	margin-bottom: 20px;
}

/* Przycisk */
.main-content .buttons {
	display: flex;
	flex-wrap: wrap; /* Zapobiega problemom na małych ekranach */
	gap: 15px;
	justify-content: center;
}

.main-content .buttons a {
	display: inline-block;
	padding: 12px 24px;
	background-color: #ffa500;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	font-family: Montserrat, sans-serif;
	font-size: 1.1em;
	transition: background-color 0.3s ease;
}

.main-content .buttons a:hover {
	background-color: #ff8c00;
}

/* Sekcja social media */
.main-content .social-media {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	padding: 15px 0;
	background: rgba(0, 0, 0, 0.5); /* Lekko przezroczyste tło */
}

.main-content .social-media span {
	display: block;
	font-size: 14px;
	color: white;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	.main-content h1 {
		font-size: 2em; /* Zmniejszenie nagłówka */
	}

	.main-content .buttons a {
		width: 100%; /* Przycisk na całą szerokość na małych ekranach */
		text-align: center;
	}

	.main-content .social-media {
		font-size: 12px;
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.main-content h1 {
		font-size: 1.8em;
	}

	.main-content .buttons {
		flex-direction: column;
		gap: 10px;
	}
}

/* Sekcja "O Nas" */
#about {
	position: relative;
	width: 100%;
	min-height: 50vh; /* Zwiększona wysokość dla lepszej czytelności */
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 0;
	overflow: hidden;
}

/* Gradientowe tło */
#about::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #f1dac2, #a7745b);
	z-index: -1;
}

/* Kontener slidera */
.slider-container {
	position: relative;
	width: 90%;
	max-width: 800px;
	height: 320px;
	background: rgba(7, 7, 7, 0.6);
	color: white;
	text-align: center;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
	padding: 20px;
}

/* Pojedynczy slide */
.slide {
	display: none;
	flex-direction: column;
	align-items: center;
	width: 100%;
	padding: 20px;
}

.slide h1 {
	font-size: 28px;
	margin-bottom: 10px;
}

.slide p {
	font-size: 18px;
	max-width: 85%;
}

/* Aktywny slide */
.active {
	display: flex;
	animation: fadeIn 1s ease-in-out;
}

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

/* Strzałki nawigacji */
.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 36px;
	cursor: pointer;
	color: white;
	background: rgba(0, 0, 0, 0.6);
	padding: 12px;
	border-radius: 50%;
	user-select: none;
	transition: background 0.3s;
}

.arrow:hover {
	background: rgba(255, 255, 255, 0.2);
}

.arrow-left {
	left: 10px;
}

.arrow-right {
	right: 10px;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	#about {
		min-height: 60vh;
	}

	.slider-container {
		height: auto;
		padding: 30px;
	}

	.slide h1 {
		font-size: 24px;
	}

	.slide p {
		font-size: 16px;
		max-width: 90%;
	}

	.arrow {
		font-size: 30px;
		padding: 10px;
	}
}

@media (max-width: 480px) {
	.slider-container {
		width: 95%;
	}

	.slide h1 {
		font-size: 20px;
	}

	.slide p {
		font-size: 14px;
	}

	.arrow {
		font-size: 26px;
		padding: 8px;
	}
}
/* Sekcja menu */
#menu {
	background: url('../img/banners/banner2.jpg') no-repeat center center fixed;
	background-size: cover;
	color: #ffffff;
	text-align: center;
	padding: 50px 20px;
}

/* Nawigacja */
.menu-nav {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap; /* Zapewnia, że przyciski dobrze układają się na mniejszych ekranach */
	margin-top: 20px;
	padding: 15px;
	border-radius: 10px;
}

.menu-nav button {
	background: none;
	border: 2px solid rgb(0, 255, 149);
	padding: 12px 20px;
	font-size: 18px;
	cursor: pointer;
	transition: 0.3s;
	color: rgb(0, 255, 149);
	border-radius: 5px;
	min-width: 120px;
}

.menu-nav button.active {
	text-align: center;
	justify-content: center;
	border-color: rgb(253, 36, 36);
	color: rgb(253, 36, 36);
}

/* Sekcje menu */
.menu-section {
	display: none;
	margin-top: 20px;
	padding: 20px;
	border-radius: 10px;
	width: 60%;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: rgba(0, 0, 0, 0.7); /* Lekko przyciemnione tło */
}

.menu-section.active {
	display: block;
}

/* Pojedyncza pozycja menu */
.menu-item {
	font-size: 20px;
	display: flex;
	margin: 15px 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
}

.menu-item img {
	width: 50px;
	height: 50px;
	border-radius: 5px;
}
.price {
	color: rgb(250, 174, 10);
	font-weight: bold;
}
/* RESPONSYWNOŚĆ */
@media (max-width: 768px) {
	#menu {
		padding: 40px 10px;
		background-attachment: scroll; /* Na mobilnych wyłączamy "fixed", żeby uniknąć problemów */
	}

	.menu-nav {
		flex-direction: column;
		align-items: center;
		gap: 10px;
	}

	.menu-nav button {
		font-size: 16px;
		padding: 10px 15px;
		min-width: auto;
	}

	.menu-section {
		width: 90%;
	}

	.menu-item {
		flex-direction: column;
		text-align: center;
	}

	.menu-item img {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.menu-nav button {
		width: 100%;
		font-size: 14px;
		padding: 8px 12px;
	}

	.menu-item {
		font-size: 18px;
	}
}
#reservations {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #83705c;
	margin: 0;
	padding: 0;
}
#kontakt {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 40px 5%;
	background: #d1b090;
	text-align: center;
}

#kontakt .container {
	width: 100%;
	max-width: 500px;
	background-color: #00000071;
	border-radius: 20px;
	padding: 20px;
	color: white;
}

#kontakt .container h2 {
	font-family: 'Darumadrop One', serif;
	margin-bottom: 10px;
}

#kontakt .container a {
	text-decoration: none;
	color: white;
}

#kontakt .buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 15px;
}

#kontakt .btn {
	padding: 10px;
	font-size: 16px;
	font-weight: bold;
	border-radius: 10px;
	border: none;
	cursor: pointer;
	transition: 0.3s;
}

#kontakt .call-btn {
	background: linear-gradient(45deg, #ff512f, #f09819);
	color: white;
}

#kontakt .route-btn {
	background: #1bc274;
	color: white;
}

#kontakt .map-box {
	margin-top: 20px;
	width: 100%;
	max-width: 800px;
}

#kontakt .map-box iframe {
	width: 100%;
	height: 300px;
	border-radius: 20px;
}

/* Responsywność */
@media (min-width: 768px) {
	#kontakt {
		flex-direction: row;
		justify-content: space-around;
	}
	#kontakt .container {
		width: 40%;
	}
	#kontakt .map-box {
		width: 50%;
	}
	.buttons {
		flex-direction: row;
		justify-content: center;
	}
}
footer {
	background: #e6c7a8;
	color: #000000;
	text-align: center;
	padding: 15px 5%;
	font-size: 14px;
	position: relative;
	bottom: 0;
	width: 100%;
}

footer a {
	color: rgb(255, 153, 0);
	text-decoration: none;
	font-weight: bold;
}

footer a:hover {
	text-decoration: underline;
}
