/* Floating Language Button Styles */
.lang-switcher {
	position: fixed;
	right: 2rem;
	bottom: 2rem;
	z-index: 2000;
}
#lang-btn {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(17, 17, 17, 0.55);
	color: var(--color-accent);
	font-family: 'Marcellus', serif;
	font-size: 1.3rem;
	font-weight: 700;
	border: none;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	cursor: pointer;
	transition: background 0.2s;
}
#lang-btn:hover {
	background: var(--color-accent);
	color: white;
}
.lang-list {
	display: none;
	position: absolute;
	right: 0;
	bottom: 70px;
	min-width: 100px;
	max-height: 220px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 16px rgba(0,0,0,0.15);
	overflow-y: auto;
	padding: 0.5rem 0;
}
.lang-list a {
	display: block;
	padding: 0.7rem 1.2rem;
	color: var(--color-primary);
	font-family: 'Marcellus', serif;
	font-size: 1rem;
	text-align: left;
	text-decoration: none;
	transition: background 0.2s;
}
.lang-list a:hover {
	background: var(--color-light);
}
.lang-list::-webkit-scrollbar {
	width: 6px;
	background: #eee;
}
.lang-list::-webkit-scrollbar-thumb {
	background: var(--color-accent);
	border-radius: 6px;
}



/* Hero Section */
.hero {
	height: 100vh;
	background: #333;
	display: flex;
	align-items: center;
	text-align: center;
	color: white;
	padding-top: 80px;background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(31, 30, 30, 0.8)), url('https://haston.polturizm.pl/haston.jpg') no-repeat center center/cover;
}
.hero-content {
	max-width: 800px;
	margin: 0 auto;
}
.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 1.5rem;
}
.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
}
/* About Section */
.about {
	padding: 6rem 0;
	background-color: white;
}
.section-title {
	text-align: center;
	margin-bottom: 3rem;
	position: relative;
}
.section-title:after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: var(--color-accent);
}
.about-content {
	display: flex;
	align-items: center;
	gap: 4rem;
}
.about-text {
	flex: 1;
}
.about-image {
	flex: 1;
	width: 450px;
	height: auto;
	background: linear-gradient(45deg, var(--color-primary), var(--color-secondary));
	border-radius: 10px;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}
/* Rooms Section */
.rooms {
	padding: 6rem 0;
	background-color: var(--color-light);
}
.rooms-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.room-card {
	background-color: white;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0,0,0,0.1);
	transition: var(--transition);
}
.room-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}
.room-image {
	height: 200px;
	background: linear-gradient(45deg, var(--color-secondary), var(--color-accent));
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
}
.room-content {
		padding: 2.5rem 1.0rem 1.0rem 1.0rem;
}
.room-content h3 {
	color: var(--color-primary);
}
/* Amenities Section */
.amenities {
	padding: 6rem 0;
	background-color: white;
}
.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}
.amenity {
	text-align: center;
	padding: 2rem;
	border-radius: 10px;
	background-color: var(--color-light);
	transition: var(--transition);
}
.amenity:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.amenity i {
	font-size: 2.5rem;
	color: var(--color-accent);
	margin-bottom: 1rem;
}
/* Sekcja Galerii */
.gallery-section {
	padding: 6rem 0;
	background-color: var(--color-light);
}
/* Filtry galerii */
.gallery-filters {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1rem;
	margin-bottom: 3rem;
}
.filter-btn {
	padding: 0.7rem 1.5rem;
	background: transparent;
	border: 2px solid var(--color-primary);
	color: var(--color-primary);
	border-radius: 30px;
	cursor: pointer;
	font-weight: 600;
	transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
	background-color: var(--color-primary);
	color: white;
}
/* Siatka galerii */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.1rem;
	margin-bottom: 1rem;
}
.gallery-item {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	border-radius: 8px;
}
.gallery-img-placeholder {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	transition: var(--transition);
}
.gallery-item:hover .gallery-img-placeholder {
	transform: scale(1.1);
}
.gallery-item-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
	opacity: 0;
	display: flex;
	align-items: flex-end;
	padding: 1.5rem;
	transition: var(--transition);
}
.gallery-item:hover .gallery-item-overlay {
	opacity: 1;
}
.gallery-item-title {
	color: white;
	font-family: var(--font-heading);
	font-size: 1.2rem;
	transform: translateY(20px);
	transition: var(--transition);
}
.gallery-item:hover .gallery-item-title {
	transform: translateY(0);
}
/* Lightbox */
.lightbox {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.lightbox.open {
	opacity: 1;
	visibility: visible;
}
.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
}
.lightbox-img {
	max-width: 100%;
	max-height: 80vh;
	border-radius: 8px;
}
.lightbox-caption {
	color: white;
	text-align: center;
	margin-top: 1rem;
	font-family: var(--font-heading);
}
.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: white;
	font-size: 2rem;
	background: none;
	border: none;
	cursor: pointer;
}
.lightbox-nav {
	position: absolute;
	top: 50%;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	padding: 0 2rem;
}
.lightbox-btn {
	color: white;
	font-size: 2rem;
	background: none;
	border: none;
	cursor: pointer;
	background-color: rgba(0,0,0,0.5);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.lightbox-btn:hover {
	background-color: var(--color-accent);
}
/* CTA Section */
.cta {
	padding: 6rem 0;
	background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.7)), #9e6d4e;
	color: white;
	text-align: center;
}
.cta h2 {
	font-size: 2.5rem;
	margin-bottom: 2rem;
}
/* Footer */
footer {
	background-color: var(--color-dark);
	color: white;
	padding: 4rem 0 2rem;
}
.footer-content {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 3rem;
	margin-bottom: 3rem;
}
.footer-column h3 {
	color: white;
	margin-bottom: 1.5rem;
	position: relative;
}
.footer-column h3:after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 40px;
	height: 2px;
	background-color: var(--color-accent);
}
.footer-column ul {
	list-style: none;
}
.footer-column ul li {
	margin-bottom: 0.8rem;
}
.footer-column ul li a:hover {
	color: var(--color-accent);
	padding-left: 5px;
}
.social-links {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
}
.social-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 50%;
	transition: var(--transition);
}
.social-links a:hover {
	background-color: var(--color-accent);
	transform: translateY(-3px);
}
.copyright {
	text-align: center;
	padding-top: 2rem;
	border-top: 1px solid rgba(255,255,255,0.1);
}
/* Responsive */
@media (max-width: 992px) {
.about-content {
	
	flex-direction: column;
	gap: 2rem;
}
.hero h1 {
	font-size: 2.8rem;
}
}
@media (max-width: 768px) {
nav ul {
	gap: 1.5rem;
}
.hero h1 {
	font-size: 2.2rem;
}
.hero p {
	font-size: 1rem;
}
.gallery-grid {
	grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
	gap: 1rem;
}
.gallery-filters {
	gap: 0.5rem;
}
.filter-btn {
	padding: 0.5rem 1rem;
	font-size: 0.9rem;
}
}
@media (max-width: 576px) {
.header-container {
	flex-direction: column;
	gap: 1rem;
}
nav ul {
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}
.btn {
	padding: 0.8rem 1.5rem;
}
.gallery-grid {
	grid-template-columns: 1fr;
}
.lightbox-nav {
	padding: 0 1rem;
}
.lightbox-btn {
	width: 40px;
	height: 40px;
	font-size: 1.5rem;
}
	.room-image {
		height: 250px;
	}

header.scrolled .logo {
	display: none;
}
}
