:root {
	--white: #ffffff;
	--soft-pink: #fff5f6;
	--deep-pink: #f8d7da;
	--gold: #d4af37;
	--text-dark: #4a4a4a;
	--text-light: #888888;
	--font-header: "Playfair Display", serif;
	--font-body: "Poppins", sans-serif;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-body);
	color: var(--text-dark);
	line-height: 1.6;
	background-color: var(--white);
}

.container {
	width: 85%;
	margin: 0 auto;
	max-width: 1200px;
}

/* Nawigacja */
.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 7%;
	background: rgba(255, 255, 255, 0.95);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.logo {
	font-family: var(--font-header);
	font-size: 1.8rem;
	font-weight: 600;
	letter-spacing: 1px;
}

.logo span {
	color: var(--gold);
	font-weight: 400;
}

.nav-links {
	display: flex;
	list-style: none;
	align-items: center;
}

.nav-links li {
	margin-left: 30px;
}

.nav-links a {
	text-decoration: none;
	color: var(--text-dark);
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: 0.3s;
}

.nav-links a:hover {
	color: var(--gold);
}

.btn-nav {
	background: var(--gold);
	color: white !important;
	padding: 10px 20px;
	border-radius: 50px;
}

/* Hero Section */
.hero {
	height: 100vh;
	background:
		linear-gradient(rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.2)),
		url("https://images.unsplash.com/photo-1522337660859-02fbefca4702?auto=format&fit=crop&w=1500&q=80");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding-top: 80px;
}

.hero-content h1 {
	font-family: var(--font-header);
	font-size: 4rem;
	color: var(--text-dark);
	margin-bottom: 20px;
	animation: fadeInDown 1s ease;
}

.hero-content p {
	font-size: 1.2rem;
	color: var(--text-dark);
	max-width: 600px;
	margin: 0 auto 30px;
}

.btn-main {
	text-decoration: none;
	background: var(--text-dark);
	color: white;
	padding: 15px 40px;
	border-radius: 50px;
	text-transform: uppercase;
	letter-spacing: 2px;
	transition: 0.3s;
}

.btn-main:hover {
	background: var(--gold);
	transform: translateY(-3px);
}

/* Sekcje wspólne */
section {
	padding: 100px 0;
}

.section-title {
	text-align: center;
	font-family: var(--font-header);
	font-size: 2.5rem;
	margin-bottom: 60px;
}

.section-title::after {
	content: "";
	display: block;
	width: 60px;
	height: 2px;
	background: var(--gold);
	margin: 15px auto;
}

/* Usługi */
.services {
	background-color: var(--soft-pink);
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background: white;
	padding: 20px;
	text-align: center;
	border-radius: 15px;
	transition: 0.4s;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.card-img {
	height: 200px;
	border-radius: 10px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: center;
}

.service-card h3 {
	margin-bottom: 15px;
	font-family: var(--font-header);
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.1);
}

/* Galeria */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 10px;
	padding: 0 10px;
}

.gallery-item img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	display: block;
	filter: brightness(90%);
	transition: 0.5s;
}

.gallery-item:hover img {
	filter: brightness(100%);
	transform: scale(1.02);
}

/* Dlaczego My */
.advantages-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.adv-item i {
	font-size: 2.5rem;
	color: var(--gold);
	margin-bottom: 20px;
}

/* Opinie */
.testimonials {
	background-color: var(--deep-pink);
	text-align: center;
}

.quote {
	font-family: var(--font-header);
	font-size: 1.8rem;
	font-style: italic;
	margin-bottom: 20px;
}

/* CTA */
.cta {
	text-align: center;
	background:
		linear-gradient(rgba(255, 245, 246, 0.9), rgba(255, 245, 246, 0.9)),
		url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1500&q=80");
	background-size: cover;
}

.btn-main-gold {
	display: inline-block;
	margin-top: 25px;
	text-decoration: none;
	border: 2px solid var(--gold);
	color: var(--gold);
	padding: 12px 35px;
	border-radius: 50px;
	font-weight: 500;
	transition: 0.3s;
}

.btn-main-gold:hover {
	background: var(--gold);
	color: white;
}

/* Stopka */
footer {
	background: #fdfdfd;
	padding: 60px 0 20px;
	border-top: 1px solid #eee;
}

.footer-content {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 40px;
}

.footer-box h3 {
	font-family: var(--font-header);
	margin-bottom: 15px;
}

.social-icons a {
	color: var(--text-dark);
	font-size: 1.5rem;
	margin-right: 20px;
	transition: 0.3s;
}

.social-icons a:hover {
	color: var(--gold);
}

.footer-bottom {
	text-align: center;
	margin-top: 50px;
	font-size: 0.8rem;
	color: var(--text-light);
}

/* Animacje */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.hero-content h1 {
		font-size: 2.5rem;
	}
	section {
		padding: 60px 0;
	}
}
/* Importujemy bazę z głównego stylu, jeśli to osobne pliki, upewnij się, że kolory się zgadzają */

.subpage-hero {
	padding: 160px 0 80px;
	background-color: var(--soft-pink);
	text-align: center;
}

.subpage-hero h1 {
	font-family: var(--font-header);
	font-size: 3rem;
	margin-bottom: 15px;
}

.subpage-hero p {
	color: var(--text-light);
	font-style: italic;
}

/* Styl Cennika */
.price-list {
	padding: 80px 0;
}

.category-block {
	margin-bottom: 60px;
}

.category-title {
	font-family: var(--font-header);
	font-size: 2rem;
	color: var(--gold);
	margin-bottom: 30px;
	border-bottom: 1px solid var(--deep-pink);
	display: inline-block;
	padding-bottom: 10px;
}

.menu-item {
	margin-bottom: 25px;
	transition: 0.3s;
}

.item-info {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	font-weight: 500;
}

.item-name {
	font-size: 1.1rem;
	color: var(--text-dark);
}

.item-dots {
	flex-grow: 1;
	border-bottom: 1px dotted var(--deep-pink);
	margin: 0 15px;
	opacity: 0.5;
}

.item-price {
	font-family: var(--font-header);
	color: var(--gold);
	font-size: 1.1rem;
}

.item-desc {
	font-size: 0.85rem;
	color: var(--text-light);
	margin-top: 5px;
	max-width: 80%;
}

/* Hover efekt dla cennika */
.menu-item:hover .item-name {
	color: var(--gold);
}

.menu-item:hover {
	transform: translateX(10px);
}

/* Notka pod cennikiem */
.service-notice {
	background-color: var(--soft-pink);
	padding: 30px 0;
	text-align: center;
	border-radius: 10px;
	margin-bottom: 80px;
}

.service-notice i {
	color: var(--gold);
	margin-right: 10px;
}

/* Responsywność */
@media (max-width: 768px) {
	.item-info {
		flex-direction: column;
		gap: 5px;
	}
	.item-dots {
		display: none;
	}
	.subpage-hero h1 {
		font-size: 2.2rem;
	}
}
/* --- HAMBURGER MENU STYLES --- */

/* Ukryty domyślnie (na desktopie) */
.hamburger {
	display: none;
	flex-direction: column;
	cursor: pointer;
	gap: 6px;
	z-index: 1001;
}

.hamburger span {
	display: block;
	width: 28px;
	height: 2px;
	background-color: var(--text-dark);
	transition: all 0.3s ease;
}

/* Responsywność - Mobile (poniżej 768px) */
@media (max-width: 768px) {
	.hamburger {
		display: flex; /* Pokazujemy hamburgera */
	}

	.nav-links {
		display: flex;
		position: fixed;
		right: -100%; /* Menu jest schowane za ekranem */
		top: 0;
		height: 100vh;
		width: 80%;
		background: var(--white);
		flex-direction: column;
		justify-content: center;
		align-items: center;
		box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
		transition: 0.5s ease;
	}

	/* Klasa dodawana przez JS po kliknięciu */
	.nav-links.active {
		right: 0; /* Menu wjeżdża na ekran */
	}

	.nav-links li {
		margin: 20px 0;
	}

	/* Animacja hamburgera w "X" */
	.hamburger.active span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
		background-color: var(--gold);
	}
	.hamburger.active span:nth-child(2) {
		opacity: 0;
	}
	.hamburger.active span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
		background-color: var(--gold);
	}
}
