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

body {
	font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
	line-height: 1.6;
	color: #333;
	overflow-x: hidden;
}

/* Ensure Font Awesome icons render properly */
i.fas, i.fab, i.far, i.fal, i.fad {
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
}

/* Language Selector */
.language-selector {
	position: fixed;
	top: 30px;
	right: 35px;
	z-index: 999;
	transition: top 0.3s ease;
}

.lang-btn {
	background: white;
	border: 2px solid #FFD700;
	padding: 10px 20px;
	border-radius: 25px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 600;
	color: #8B0000;
	box-shadow: 0 4px 15px rgba(0,0,0,0.1);
	transition: all 0.3s;
}

.lang-btn:hover {
	background: #FFD700;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.lang-menu {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	background: white;
	border-radius: 15px;
	box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	overflow: hidden;
	display: none;
	min-width: 150px;
}

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

.lang-menu button {
	display: block;
	width: 100%;
	padding: 12px 20px;
	border: none;
	background: white;
	text-align: left;
	cursor: pointer;
	transition: background 0.3s;
	color: #333;
	font-size: 0.95rem;
}

.lang-menu button:hover {
	background: #FFF8DC;
}

.logo-placeholder {
	margin-bottom: 30px;
	animation: fadeInDown 1s ease;
}

.logo-placeholder img {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	/*border: 5px solid #FFD700;*/
	box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.payment-methods {
	margin-top: 25px;
	padding-top: 25px;
	border-top: 2px solid #f0f0f0;
}

.payment-methods img {
	width: 100%;
	max-width: 300px;
	height: auto;
	border-radius: 10px;
}

/* Announcement Banner */
.announcement-banner {
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	color: #8B0000;
	text-align: center;
	padding: 12px 20px;
	font-weight: 600;
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	display: none;
}

.announcement-banner.active {
	display: block;
}

.announcement-banner .close-btn {
	position: absolute;
	right: 5px;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: #8B0000;
	font-size: 20px;
	cursor: pointer;
	padding: 5px 10px;
}

/* Hero Section */
.hero {
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	color: white;
	padding: 120px 20px 80px;
	text-align: center;
	position: relative;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,215,0,0.1)"/></svg>');
	opacity: 0.3;
}

.hero-content {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
	animation: fadeInDown 1s ease;
}

.hero p {
	font-size: 2.2rem;
	margin-bottom: 3px;
	opacity: 0.95;
}

.social-icons {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 30px;
}

.social-icons a {
	width: 50px;
	height: 50px;
	background: #FFD700;
	color: #8B0000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.5rem;
	transition: transform 0.3s, box-shadow 0.3s;
	text-decoration: none;
}

.social-icons a i {
	display: flex;
	align-items: center;
	justify-content: center;
}

.social-icons a:hover {
	transform: translateY(-5px) scale(1.1);
	box-shadow: 0 10px 25px rgba(255,215,0,0.4);
}

/* Info Sections */
.info-sections {
	max-width: 1200px;
	margin: 80px auto;
	padding: 0 20px;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
}

.info-card {
	background: white;
	padding: 40px 30px;
	border-radius: 15px;
	box-shadow: 0 5px 30px rgba(0,0,0,0.1);
	text-align: center;
	transition: transform 0.3s, box-shadow 0.3s;
	border-top: 5px solid #FFD700;
}

.info-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 40px rgba(220,20,60,0.2);
}

.info-card i {
	font-size: 3rem;
	color: #DC143C;
	margin-bottom: 20px;
}

.info-card h2 {
	color: #8B0000;
	margin-bottom: 15px;
	font-size: 1.8rem;
}

.info-card p {
	color: #666;
	line-height: 1.8;
}

/* Gallery Section */
/* Gallery Section */
.gallery-section {
	background: linear-gradient(135deg, #FFF8DC 0%, #FFE4B5 100%);
	padding: 80px 20px;
}

.gallery-section h2 {
	text-align: center;
	font-size: 2.5rem;
	color: #8B0000;
	margin-bottom: 50px;
}

.carousel {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.carousel-container {
	display: flex;
	transition: transform 0.5s ease;
}

.carousel-slide {
	min-width: 100%;
	height: 500px;
	background: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	color: #888;
	position: relative;
	overflow: hidden;
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.carousel-slide video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* Video loading indicator */
.video-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #8B0000;
	z-index: 5;
	background: rgba(255, 248, 220, 0.95);
	padding: 30px 40px;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.video-loading i {
	font-size: 3rem;
	margin-bottom: 15px;
	color: #DC143C;
}

.video-loading p {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0;
}

.video-loading.hidden {
	display: none;
}

/* Video overlay controls */
.video-overlay {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 15px;
	z-index: 15;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.carousel-slide-video:hover .video-overlay {
	opacity: 1;
}

.video-control-btn,
.video-sound-btn {
	background: rgba(255, 215, 0, 0.95);
	color: #8B0000;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.2rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.video-control-btn:hover,
.video-sound-btn:hover {
	background: #FFD700;
	transform: scale(1.1);
}

.video-control-btn:active,
.video-sound-btn:active {
	transform: scale(0.95);
}

.carousel-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,215,0,0.9);
	color: #8B0000;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.5rem;
	transition: background 0.3s;
	z-index: 10;
}

.carousel-btn:hover {
	background: #FFD700;
}

.carousel-btn.prev {
	left: 20px;
}

.carousel-btn.next {
	right: 20px;
}

/* Carousel autoplay toggle button */
.carousel-autoplay-btn {
	position: absolute;
	top: 20px;
	right: 20px;
	background: rgba(255, 215, 0, 0.9);
	color: #8B0000;
	border: none;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	cursor: pointer;
	font-size: 1.1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	z-index: 10;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	opacity: 1;
	visibility: visible;
}

.carousel-autoplay-btn:hover {
	background: #FFD700;
	transform: scale(1.1);
}

.carousel-autoplay-btn.paused {
	background: rgba(220, 20, 60, 0.9);
	color: white;
}

.carousel-autoplay-btn.paused:hover {
	background: #DC143C;
}

/* Hide autoplay button when on video slide */
.carousel-autoplay-btn.hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.carousel-indicators {
	text-align: center;
	margin-top: 20px;
}

.indicator {
	display: inline-block;
	width: 12px;
	height: 12px;
	background: #ccc;
	border-radius: 50%;
	margin: 0 5px;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.indicator.active {
	background: #DC143C;
}

/* Video indicator - distinctive styling */
.indicator-video {
	width: 28px;
	height: 20px;
	background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
	border-radius: 5px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #DC143C;
	box-shadow: 0 2px 8px rgba(220, 20, 60, 0.3);
}

.indicator-video i {
	color: #8B0000;
	font-size: 8px;
	margin-left: 1px;
}

.indicator-video.active {
	background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
	border-color: #FFD700;
	box-shadow: 0 3px 12px rgba(255, 215, 0, 0.6);
	transform: scale(1.1);
}

.indicator-video.active i {
	color: #FFD700;
}

.indicator-video:hover {
	transform: scale(1.15);
	box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
}

.carousel-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	cursor: pointer;
	transition: transform 0.3s;
}

.carousel-slide img:hover {
	transform: scale(1.05);
}

/* Image Lightbox */
.image-lightbox {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 3000;
	padding: 20px;
	transition: background 0.3s ease;
}

.image-lightbox.active {
	display: flex;
	animation: fadeInBackground 0.3s ease forwards;
}

@keyframes fadeInBackground {
	to {
		background: rgba(0, 0, 0, 0.9);
	}
}

.lightbox-image {
	max-width: 90%;
	max-height: 90vh;
	object-fit: contain;
	border-radius: 10px;
	box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
	transform: scale(0.3);
	opacity: 0;
	animation: zoomIn 0.4s ease forwards;
}

@keyframes zoomIn {
	to {
		transform: scale(1);
		opacity: 1;
	}
}

.lightbox-close {
	position: absolute;
	top: 30px;
	right: 30px;
	background: rgba(255, 215, 0, 0.9);
	color: #8B0000;
	border: none;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	font-size: 2rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
	z-index: 3001;
}

.lightbox-close:hover {
	background: #FFD700;
	transform: rotate(90deg);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: white;
	box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
	padding: 25px 20px;
	z-index: 2000;
	display: none;
	border-top: 3px solid #FFD700;
}

.cookie-banner.active {
	display: block;
}

.cookie-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

.cookie-text {
	flex: 1;
	min-width: 100%;
	text-align: center;
}

.cookie-text p {
	margin-bottom: 10px;
	color: #333;
	font-size: 0.95rem;
}

.cookie-text a {
	color: #DC143C;
	text-decoration: underline;
	cursor: pointer;
}

.cookie-buttons {
	display: flex;
	gap: 10px;
	width: 100%;
	justify-content: center;
	flex-wrap: wrap;
}

.cookie-btn {
	padding: 12px 25px;
	border: none;
	border-radius: 25px;
	cursor: pointer;
	font-weight: 600;
	transition: transform 0.3s, box-shadow 0.3s;
	font-size: 0.9rem;
	flex: 1;
	min-width: 120px;
	max-width: 200px;
}

.cookie-btn.accept {
	background: #DC143C;
	color: white;
}

.cookie-btn.reject {
	background: #FFD700;
	color: #8B0000;
}

.cookie-btn:hover {
	transform: scale(1.05);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Cookie Modal */
.cookie-modal {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.7);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 3000;
}

.cookie-modal.active {
	display: flex;
}

.cookie-modal-content {
	background: white;
	padding: 40px;
	border-radius: 15px;
	max-width: 600px;
	max-height: 80vh;
	overflow-y: auto;
	margin: 20px;
	position: relative;
}

.cookie-modal-content h3 {
	color: #8B0000;
	margin-bottom: 20px;
}

.cookie-modal-content p {
	margin-bottom: 15px;
	line-height: 1.8;
	color: #666;
}

.cookie-modal-content ul {
	margin: 15px 0 15px 20px;
	color: #666;
}

.cookie-modal-content li {
	margin-bottom: 10px;
}

.close-modal {
	position: absolute;
	top: 15px;
	right: 15px;
	background: none;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	color: #8B0000;
}

/* Footer */
footer {
	background: #8B0000;
	color: white;
	text-align: center;
	padding: 30px 20px;
}

/* Animations */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.language-selector {
		top: 10px;
		right: 10px;
		z-index: 999;
	}

	.lang-btn {
		padding: 8px 15px;
		font-size: 0.9rem;
	}

	.hero h1 {
		font-size: 2rem;
		margin-top: 20px;
	}

	.hero p {
		font-size: 1rem;
	}

	.logo-placeholder img {
		width: 100px;
		height: 100px;
	}

	.info-sections {
		grid-template-columns: 1fr;
		margin: 40px auto;
	}

	.carousel-slide {
		height: 300px;
	}

	.cookie-banner {
		padding: 20px 15px;
	}

	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-buttons {
		width: 100%;
		justify-content: center;
	}

	.cookie-btn {
		font-size: 0.85rem;
		padding: 10px 20px;
	}

	.carousel-btn {
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}

	.carousel-autoplay-btn {
		width: 38px;
		height: 38px;
		font-size: 0.95rem;
		top: 15px;
		right: 15px;
	}

	.video-control-btn,
	.video-sound-btn {
		width: 40px;
		height: 40px;
		font-size: 1.1rem;
	}

	.video-overlay {
		bottom: 15px;
		gap: 10px;
	}

	/* Show video controls on mobile without hover */
	.video-overlay {
		opacity: 1;
	}

	.payment-methods img {
		max-width: 250px;
	}
}