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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 70px;
}

body {
	font-family: Arial, sans-serif;
	color: #333;
	line-height: 1.6;
}

/* HERO */

.hero {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url('../img/hero.webp');
	background-size: cover;
	background-position: center;
	color: white;
}

/* NAVIGATION */
.navbar {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	justify-content: space-between;
	align-items: center;
	padding: 20px 5%;
	width: 100%;
	z-index: 1000;
	background: rgba(77, 107, 60, 0.97);
}
.logo {
	font-size: 1.2rem;
	font-weight: bold;
}

.logo a {
	text-decoration: none;
	color: white;
}

.menu {
	display: flex;
	list-style: none;
	gap: 30px;
}

.menu a {
	color: white;
	text-decoration: none;
	transition: color 0.5s;
}

.menu a:hover {
	color: #d9a441;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 30px;
	height: 22px;
	background: transparent;
	border: none;
	cursor: pointer;
}

.hamburger span {
	display: block;
	width: 100%;
	height: 3px;
	background: white;
	border-radius: 2px;
	transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
	transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
	transform: translateY(-9px) rotate(-45deg);
}

/* HERO CONTENT */

.hero-content {
	text-align: center;
	padding: 0 20px;
}

.hero-content h1 {
	font-size: 3rem;
}

.hero-content p {
	font-size: 1.5rem;
	margin: 20px 0;
}

.button {
	display: inline-block;
	padding: 15px 30px;
	background: #d9a441;
	color: white;
	text-decoration: none;
	border-radius: 8px;
	transition: background-color 0.8s;
}

.button:hover {
	background-color: #4d6a3c;
}

/* O NAS */

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
}

.about-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 12px;
}
/* SEKCJE */

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 20px;
}

section h2 {
	text-align: center;
	margin-bottom: 50px;
}

/* GALERIA */

#house-info {
	background: #f5f7f3;
}

.green-velo {
	margin-top: 25px;
	padding: 20px 25px;
	background: #f5f7f3;
	border-left: 5px solid #4d6b3c;
	border-radius: 12px;
	color: #333;
	line-height: 1.7;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.green-velo strong {
	color: #4d6b3c;
	font-size: 1.1rem;
}

.info-box {
	max-width: 800px;
	margin: 0 auto;
	background: white;
	padding: 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-box ul {
	list-style: none;
	margin: 20px 0;
	padding: 0;
}

.info-box ul li {
	margin: 10px 0;
	font-size: 1.1rem;
}

.price {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #ddd;
}

.price p {
	margin: 10px 0;
	font-size: 1.1rem;
}

.gallery {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.gallery img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	border-radius: 12px;
	transition: 0.3s;
}

.gallery img:hover {
	transform: scale(1.03);
}

.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.lightbox-img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 8px;
}

.lightbox-close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 40px;
	color: white;
	cursor: pointer;
}

#okolica {
	background: #f5f7f3;
}

.section-description {
	max-width: 800px;
	margin: 0 auto 50px;
	text-align: center;
	font-size: 1.1rem;
}

.attractions {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
}

.attraction-card {
	background: white;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s;
}

.attraction-card:hover {
	transform: translateY(-5px);
}

.attraction-card img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.card-content {
	padding: 25px;
}

.card-content h3 {
	margin-bottom: 15px;
	color: #4d6b3c;
}

.card-content p {
	color: #555;
}

#faq {
	background: #f5f7f3;
}

.faq-item {
	background: white;
	margin-bottom: 15px;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
	width: 100%;
	text-align: left;
	padding: 18px 20px;
	border: none;
	background: #fff;
	font-size: 1rem;
	font-weight: bold;
	cursor: pointer;
	color: #4d6b3c;
}

.faq-question:hover {
	background: #b7ea99;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
	padding: 0 20px;
}

.faq-answer p {
	padding: 15px 0;
	color: #555;
}

/* KONTAKT */

.contact-section {
	background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero2.webp');
	background-size: cover;
	background-position: center;
	padding: 100px 20px;
}

.contact-box {
	max-width: 500px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.92);
	padding: 50px;
	border-radius: 15px;
	text-align: center;
}

.contact-box p {
	margin: 15px 0;
}

#map {
	background: #f5f7f3;
}

.map-box {
	max-width: 1000px;
	margin: 0 auto;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* FOOTER */

footer {
	background: #4d6b3c;
	color: white;
	text-align: center;
	padding: 30px;
}

/* ===================== */
/* RESPONSYWNOŚĆ */
/* ===================== */

@media screen and (max-width: 992px) {
	.gallery {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-content h1 {
		font-size: 3rem;
	}

	.menu {
		gap: 15px;
	}
}

@media screen and (max-width: 768px) {
	.hamburger {
		display: flex;
	}

	.menu {
		display: none;
		position: absolute;
		top: 70px;
		left: 0;
		width: 100%;
		flex-direction: column;
		background: rgba(77, 107, 60, 0.97);
		text-align: center;
		padding: 20px 0;
		gap: 20px;
	}

	.menu.active {
		display: flex;
	}

	.hero-content {
		margin-top: 120px;
	}

	.hero-content h1 {
		font-size: 2.5rem;
	}

	.hero-content p {
		font-size: 1.2rem;
	}
	.attractions {
		grid-template-columns: 1fr;
	}
	.about-grid {
		grid-template-columns: 1fr;
	}
	.gallery-img {
		pointer-events: none;
	}
}

@media screen and (max-width: 576px) {
	.gallery {
		grid-template-columns: 1fr;
	}

	.container {
		padding: 60px 15px;
	}

	.contact-box {
		padding: 35px 20px;
	}

	.hero-content h1 {
		font-size: 2rem;
	}
}
