* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

/* Zmienne CSS */
:root {
	--primary-color: #f7cac9;
	--secondary-color: #f7e1d7;
	--text-color: #333;
	--light-color: #fff;
	--dark-color: #222;
	--accent-color: #b76e79;
	--border-radius: 8px;
}

/* Podstawowe style */
body {
	font-family: "Montserrat", sans-serif;
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
	background-image: url("../img/layout/background.png");
	background-size: cover;
	background-attachment: fixed;
	background-position: center center;
	background-repeat: no-repeat;
	background-color: var(--secondary-color);
	height: 100vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", serif;
	margin-bottom: 1rem;
	font-weight: 600;
}

p {
	margin-bottom: 1rem;
}

a {
	text-decoration: none;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

a:hover {
	color: var(--primary-color);
}

img {
	max-width: 100%;
	height: auto;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

section {
	padding: 80px 0;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}
.section-subtitle {
	text-align: center;
	margin-bottom: 50px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 50px;
	height: 3px;
	background-color: var(--accent-color);
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.btn {
	display: inline-block;
	padding: 12px 30px;
	border-radius: var(--border-radius);
	background-color: var(--accent-color);
	color: var(--light-color);
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: 1px;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 14px;
}

.btn:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	color: var(--dark-color);
}

/* Nawigacja */
.navbar {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
	transition: all 0.3s ease;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar.transparent {
	background-color: transparent;
	box-shadow: none;
}

.navbar.scrolled {
	padding: 15px 0;
	background-color: rgba(255, 255, 255, 0.95);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.navbar-logo {
	display: flex;
	align-items: center;
	color: var(--accent-color);
}

.navbar-logo h1 {
	font-size: 24px;
	margin: 0;
	font-weight: 700;
}

.navbar-links {
	display: flex;
	list-style: none;
}

.navbar-links li {
	margin-left: 30px;
}

.navbar-links a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
}

.navbar-links a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--accent-color);
	transition: width 0.3s ease;
}

.navbar-links a:hover::after {
	width: 100%;
}

.mobile-menu-btn {
	display: none;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--text-color);
}

/* Hero sekcja */
.hero {
	height: 100vh;
	display: flex;
	align-items: center;
	position: relative;
	overflow: hidden;
	background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
		url("/api/placeholder/1920/1080") center/cover no-repeat;
	color: var(--light-color);
}

.hero-content {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	text-align: center;
	z-index: 1;
}

.hero-title {
	font-size: 4rem;
	margin-bottom: 1.5rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.3s;
}

.hero-subtitle {
	font-size: 1.5rem;
	margin-bottom: 2rem;
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.6s;
}

.hero-btn {
	opacity: 0;
	transform: translateY(20px);
	animation: fadeUp 1s forwards;
	animation-delay: 0.9s;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* O nas sekcja */
.about {
	background-color: var(--light-color);
}

.about-container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.about-image {
	width: 45%;
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
	position: relative;
}

.about-image img {
	transition: transform 0.5s ease;
}

.about-image:hover img {
	transform: scale(1.05);
}

.about-content {
	width: 55%;
}

.about-content h2 {
	margin-bottom: 20px;
}

.about-content p {
	margin-bottom: 20px;
	font-size: 16px;
}

/* Usługi sekcja */
.services {
	background-color: var(--secondary-color);
	position: relative;
}

.services-container {
	position: relative;
	z-index: 1;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 30px;
}

.service-card {
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	padding: 30px;
	text-align: center;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
	font-size: 2.5rem;
	color: var(--accent-color);
	margin-bottom: 15px;
}

.service-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.service-description {
	color: #666;
	font-size: 16px;
}

/* Galeria sekcja */
.gallery {
	background-color: var(--light-color);
}

.gallery-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 20px;
}

.gallery-item {
	overflow: hidden;
	border-radius: var(--border-radius);
	position: relative;
	cursor: pointer;
	height: 250px;
}

.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.gallery-item:hover img {
	transform: scale(1.1);
}

.gallery-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(183, 110, 121, 0.8);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
	opacity: 1;
}

.gallery-overlay-content {
	color: var(--light-color);
	text-align: center;
	padding: 20px;
}

.gallery-overlay-content h3 {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

/* Dodatkowe style dla sekcji cennika */
.pricing {
	background-color: var(--secondary-color);
}

.pricing-categories {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	flex-wrap: wrap;
}

.pricing-category {
	padding: 12px 25px;
	margin: 0 10px 10px;
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
}

/* Dodatkowe style dla sekcji cennika */
.pricing {
	background-color: var(--secondary-color);
	padding: 100px 0;
}

.pricing-categories {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
	flex-wrap: wrap;
	gap: 15px;
}

.pricing-category {
	padding: 12px 25px;
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: all 0.3s ease;
	font-weight: 500;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.pricing-category:hover {
	transform: translateY(-2px);
}

.pricing-category.active {
	background-color: var(--accent-color);
	color: var(--light-color);
	box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
}

.pricing-tables {
	max-width: 900px;
	margin: 0 auto;
}

.pricing-table {
	display: none;
}

.pricing-table.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.pricing-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 25px;
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	margin-bottom: 15px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.pricing-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.pricing-item-info {
	flex: 1;
}

.pricing-item-name {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--dark-color);
}

.pricing-item-description {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
}

.pricing-item-price {
	font-family: "Playfair Display", serif;
	font-size: 22px;
	font-weight: 700;
	color: var(--accent-color);
	margin-left: 30px;
	white-space: nowrap;
}

@media (max-width: 768px) {
	.pricing-item {
		flex-direction: column;
		text-align: center;
		padding: 20px 15px;
	}

	.pricing-item-price {
		margin-left: 0;
		margin-top: 15px;
	}

	.pricing-category {
		margin-bottom: 10px;
	}
}

/* Sekcja Opinie */
.testimonials {
	background-color: var(--light-color);
	position: relative;
}

.testimonials-slider {
	max-width: 800px;
	margin: 0 auto;
	position: relative;
	padding: 20px 0;
}

.testimonials-slide {
	display: none;
	text-align: center;
	padding: 30px;
	background-color: rgba(247, 202, 201, 0.1);
	border-radius: var(--border-radius);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonials-slide.active {
	display: block;
	animation: fadeIn 0.5s ease;
}

.testimonial-content {
	font-size: 18px;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
	padding: 0 30px;
}

.testimonial-content::before,
.testimonial-content::after {
	content: "\201C";
	font-size: 60px;
	font-family: serif;
	position: absolute;
	top: -20px;
	left: 0;
	color: var(--primary-color);
	opacity: 0.5;
}

.testimonial-content::after {
	content: "\201D";
	left: auto;
	right: 0;
	top: auto;
	bottom: -45px;
}

.testimonial-author {
	margin-top: 20px;
}

.testimonial-author-name {
	font-weight: 600;
	font-size: 18px;
	margin-bottom: 5px;
}

.testimonial-author-title {
	color: #666;
	font-size: 14px;
}

.testimonials-controls {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.testimonial-button {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	padding: 10px;
	color: var(--accent-color);
	transition: all 0.3s ease;
}

.testimonial-button:hover {
	transform: scale(1.2);
}

.testimonial-dots {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.testimonial-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.testimonial-dot.active {
	background-color: var(--accent-color);
	transform: scale(1.2);
}

/* Sekcja Zespół */
.team {
	background-color: var(--light-color);
}

.team-container {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
}

.team-member {
	background-color: var(--light-color);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
}

.team-member:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-member-image {
	overflow: hidden;
	height: 450px;
}

.team-member-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	object-position: top;
}

.team-member:hover .team-member-image img {
	transform: scale(1.1);
}

.team-member-info {
	padding: 20px;
	text-align: center;
}

.team-member-name {
	font-size: 22px;
	margin-bottom: 5px;
}

.team-member-position {
	color: var(--accent-color);
	font-size: 16px;
	margin-bottom: 15px;
}

.team-member-social {
	display: flex;
	justify-content: center;
	margin-top: 15px;
}

.team-member-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #f1f1f1;
	color: var(--text-color);
	margin: 0 5px;
	transition: all 0.3s ease;
}

.team-member-social a:hover {
	background-color: var(--accent-color);
	color: var(--light-color);
	transform: translateY(-3px);
}

/* Sekcja Kontakt */
.contact {
	background-color: var(--light-color);
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-info-item {
	display: flex;
	margin-bottom: 25px;
}

.contact-info-icon {
	font-size: 24px;
	color: var(--accent-color);
	margin-right: 20px;
	width: 50px;
	height: 50px;
	background-color: rgba(183, 110, 121, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.contact-info-content h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.contact-info-content p {
	color: #666;
	margin-bottom: 5px;
}

.contact-social {
	display: flex;
	margin-top: 30px;
}

.contact-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: #f1f1f1;
	color: var(--text-color);
	margin-right: 10px;
	transition: all 0.3s ease;
}

.contact-social a:hover {
	background-color: var(--accent-color);
	color: var(--light-color);
	transform: translateY(-3px);
}

.contact-form {
	flex: 1;
	min-width: 300px;
}

.form-group {
	margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	font-family: "Montserrat", sans-serif;
	font-size: 16px;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	border-color: var(--accent-color);
	box-shadow: 0 0 5px rgba(183, 110, 121, 0.3);
	outline: none;
}

.form-group textarea {
	height: 150px;
	resize: vertical;
}

/* Mapa */
.map-container {
	position: relative;
	overflow: hidden;
	height: 450px;
}

.map-container iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Stopka */
.footer {
	background-color: var(--dark-color);
	color: #ccc;
	padding: 80px 0 30px;
}

.footer-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 40px;
	margin-bottom: 50px;
}

.footer-column {
	line-height: 1.8;
}

.footer-logo h2 {
	color: var(--light-color);
	margin-bottom: 20px;
}

.footer-column h3 {
	color: var(--light-color);
	margin-bottom: 20px;
	position: relative;
	padding-bottom: 10px;
}
.footer-column h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 50px;
	height: 2px;
	background-color: var(--primary-color);
}

.footer-social {
	display: flex;
	gap: 15px;
	margin-top: 25px;
}

.footer-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--light-color);
	transition: all 0.3s ease;
}

.footer-social a:hover {
	background-color: var(--primary-color);
	transform: translateY(-3px);
}

.footer-links {
	list-style: none;
	padding: 0;
}

.footer-links li {
	margin-bottom: 10px;
}

.footer-links a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
	display: inline-block;
}

.footer-links a:hover {
	color: var(--primary-color);
	padding-left: 5px;
}

.footer-newsletter {
	display: flex;
	margin-top: 20px;
}

.footer-newsletter input {
	flex: 1;
	padding: 12px 15px;
	border: none;
	background-color: rgba(255, 255, 255, 0.1);
	color: var(--light-color);
	border-radius: 5px 0 0 5px;
}

.footer-newsletter button {
	padding: 12px 18px;
	border: none;
	background-color: var(--primary-color);
	color: var(--light-color);
	cursor: pointer;
	border-radius: 0 5px 5px 0;
	transition: all 0.3s ease;
}

.footer-newsletter button:hover {
	background-color: var(--hover-color);
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.footer-policy {
	display: flex;
	gap: 20px;
}

.footer-policy a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-policy a:hover {
	color: var(--primary-color);
}

@media (max-width: 768px) {
	.footer-bottom {
		flex-direction: column;
		text-align: center;
	}

	.footer-policy {
		justify-content: center;
	}
}
.back-to-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background-color: var(--primary-color);
	color: var(--light-color);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	cursor: pointer;
	z-index: 9999;
}
