/* ===== GLOBAL STYLES ===== */
:root {
	/* Color Palette */
	--bg-color: #121212;
	--primary-accent: #ffe156;
	--secondary-accent: #3ec1d3;
	--text-color: #ffffff;
	--block-bg: #1e1e28;

	/* Standard spacing */
	--spacing-xs: 0.5rem;
	--spacing-sm: 1rem;
	--spacing-md: 2rem;
	--spacing-lg: 4rem;
	--spacing-xl: 6rem;

	/* Border radius */
	--border-radius: 8px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
	background-color: var(--bg-color);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: var(--spacing-md) 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-bottom: var(--spacing-sm);
	line-height: 1.2;
}

h1 {
	font-size: 3rem;
}

h2 {
	font-size: 2.5rem;
	text-align: center;
	margin-bottom: var(--spacing-lg);
	position: relative;
}

h2::after {
	content: "";
	position: absolute;
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--primary-accent);
}

h3 {
	font-size: 1.8rem;
}

p {
	margin-bottom: var(--spacing-sm);
}

a {
	color: var(--secondary-accent);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--primary-accent);
}

section {
	padding: var(--spacing-xl) 0;
}

button,
.cta-button,
.tour-button {
	cursor: pointer;
	background: linear-gradient(135deg, var(--primary-accent), #ff6f61);
	color: #1e1e28;
	font-weight: bold;
	border: none;
	padding: var(--spacing-sm) var(--spacing-md);
	border-radius: var(--border-radius);
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
	display: inline-block;
	text-align: center;
}

button:hover,
.cta-button:hover,
.tour-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* ===== HEADER ===== */
header {
	background-color: rgba(30, 30, 40, 0.9);
	position: sticky;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: var(--spacing-sm) 0;
	position: relative;
}

.logo {
	width: 150px;
	z-index: 1001;
}

nav {
	width: 100%;
	transition: all 0.3s ease;
}

nav ul {
	display: flex;
	list-style: none;
	gap: var(--spacing-md);
	flex-wrap: wrap;
	justify-content: flex-end;
}

nav a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
	padding: 0.5rem;
	display: block;
}

nav a::after {
	content: "";
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 0;
	height: 2px;
	background-color: var(--primary-accent);
	transition: width 0.3s ease;
}

nav a:hover::after {
	width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
	height: 100vh;
	background-image: linear-gradient(rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.7)), url("../img/kyV0S0.jpg");
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: center;
	text-align: center;
}

.hero h1 {
	font-size: 4rem;
	margin-bottom: var(--spacing-sm);
	animation: fadeInDown 1s ease;
}

.hero p {
	font-size: 1.5rem;
	margin-bottom: var(--spacing-md);
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
	animation: fadeInUp 1s ease 0.3s;
	animation-fill-mode: both;
}

.hero .cta-button {
	font-size: 1.2rem;
	padding: var(--spacing-sm) var(--spacing-lg);
	animation: fadeInUp 1s ease 0.6s;
	animation-fill-mode: both;
}

/* ===== ABOUT SECTION ===== */
.about {
	background-color: var(--block-bg);
}

.about .container {
	max-width: 800px;
	text-align: center;
}

/* ===== TOURS SECTION ===== */
.tour-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-md);
}

.tour-card {
	background-color: var(--block-bg);
	border-radius: var(--border-radius);
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease;
}

.tour-card:hover {
	transform: translateY(-10px);
}

.tour-image {
	height: 250px;
	overflow: hidden;
}

.tour-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.tour-card:hover .tour-image img {
	transform: scale(1.1);
}

.tour-content {
	padding: var(--spacing-md);
}

.tour-price {
	color: var(--primary-accent);
	font-weight: bold;
	font-size: 1.2rem;
	margin-bottom: var(--spacing-sm);
}

.tour-button {
	margin-top: var(--spacing-sm);
	width: 100%;
}

/* ===== BENEFITS SECTION ===== */
.benefits {
	background-color: var(--block-bg);
}

.benefit-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-lg);
}

.benefit-item {
	text-align: center;
	transition: transform 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-10px);
}

.benefit-icon {
	width: 80px;
	height: 80px;
	margin: 0 auto var(--spacing-sm);
	background-color: var(--primary-accent);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-icon img {
	width: 40px;
	height: 40px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonial-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-md);
}

.testimonial {
	background-color: var(--block-bg);
	border-radius: var(--border-radius);
	padding: var(--spacing-md);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	position: relative;
}

.testimonial::before {
	content: '"';
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 4rem;
	color: var(--primary-accent);
	opacity: 0.3;
	font-family: Georgia, serif;
}

.testimonial-content {
	margin-bottom: var(--spacing-sm);
	font-style: italic;
}

.testimonial-author {
	text-align: right;
}

/* ===== BOOKING SECTION ===== */
.booking {
	background-color: var(--block-bg);
	text-align: center;
}

.booking form {
	max-width: 600px;
	margin: 0 auto;
	background: rgba(30, 30, 40, 0.8);
	padding: var(--spacing-lg);
	border-radius: var(--border-radius);
	border-left: 4px solid var(--primary-accent);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: var(--spacing-md);
	text-align: left;
}

.form-group label {
	display: block;
	margin-bottom: var(--spacing-xs);
	font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: var(--spacing-sm);
	background-color: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: var(--text-color);
	border-radius: var(--border-radius);
	font-size: 1rem;
	transition:
		border-color 0.3s ease,
		box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: var(--primary-accent);
	box-shadow: 0 0 0 2px rgba(255, 225, 86, 0.3);
}

.radio-group {
	margin-top: var(--spacing-xs);
}

.radio-item {
	display: flex;
	align-items: center;
	margin-bottom: var(--spacing-sm);
	background-color: rgba(255, 255, 255, 0.05);
	border-radius: var(--border-radius);
	padding: var(--spacing-sm);
	transition: background-color 0.3s ease;
}

.radio-item:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

.radio-item input[type="radio"] {
	width: auto;
	margin-right: var(--spacing-sm);
	accent-color: var(--primary-accent);
	cursor: pointer;
}

.radio-item label {
	cursor: pointer;
	margin-bottom: 0;
	width: 100%;
}

.form-check {
	display: flex;
	align-items: flex-start;
	margin-bottom: var(--spacing-sm);
	text-align: left;
}

.form-check input {
	margin-right: var(--spacing-xs);
	margin-top: 5px;
}

.booking button {
	width: 100%;
	padding: var(--spacing-sm);
	font-size: 1.1rem;
}

/* ===== FAQ SECTION ===== */
.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: var(--spacing-sm);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.faq-question {
	display: block;
	padding: var(--spacing-md);
	background-color: var(--block-bg);
	color: var(--text-color);
	font-weight: 600;
	position: relative;
	cursor: pointer;
}

.faq-question::after {
	content: "+";
	position: absolute;
	right: var(--spacing-md);
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.5rem;
	transition: transform 0.3s ease;
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	background-color: rgba(30, 30, 40, 0.6);
	transition: max-height 0.5s ease;
}

.faq-item:target .faq-answer {
	max-height: 500px;
	padding: var(--spacing-md);
}

.faq-item:target .faq-question::after {
	content: "-";
}

/* ===== CONTACT SECTION ===== */
.contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: var(--spacing-lg);
	align-items: start;
}

.contact-item {
	margin-bottom: var(--spacing-md);
}

.contact-map {
	margin-top: var(--spacing-md);
	border-radius: var(--border-radius);
	overflow: hidden;
}

.contact-form form {
	background-color: var(--block-bg);
	padding: var(--spacing-md);
	border-radius: var(--border-radius);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== FOOTER ===== */
footer {
	background-color: #0e0e14;
	padding-top: var(--spacing-xl);
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: var(--spacing-lg);
}

.footer-logo {
	width: 120px;
	margin-bottom: var(--spacing-sm);
}

.footer-links ul {
	list-style: none;
}

.footer-links li {
	margin-bottom: var(--spacing-xs);
}

.social-icons {
	display: flex;
	gap: var(--spacing-sm);
	margin-top: var(--spacing-sm);
}

.social-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.social-icon:hover {
	background-color: var(--primary-accent);
	color: var(--block-bg);
}

.footer-bottom {
	margin-top: var(--spacing-lg);
	padding: var(--spacing-md) 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(30, 30, 40, 0.95);
	padding: var(--spacing-md);
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 1000;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
}

.cookie-banner button {
	margin-left: var(--spacing-md);
	white-space: nowrap;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== MEDIA QUERIES ===== */
@media (max-width: 992px) {
	.container {
		width: 95%;
	}

	nav {
		display: none;
	}

	.tour-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 768px) {
	h1 {
		font-size: 2.5rem;
	}

	h2 {
		font-size: 2rem;
	}

	header .container {
		flex-direction: column;
		padding: var(--spacing-sm) 0;
	}

	.logo {
		margin-bottom: 0;
	}

	.hero {
		height: auto;
		padding: var(--spacing-xl) 0;
	}

	.cookie-banner {
		flex-direction: column;
		text-align: center;
	}

	.cookie-banner button {
		margin: var(--spacing-sm) 0 0 0;
	}

	.contact-grid {
		grid-template-columns: 1fr;
	}

	.benefit-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	section {
		padding: var(--spacing-lg) 0;
	}

	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.7rem;
	}

	.tour-cards,
	.benefit-grid,
	.testimonial-container {
		grid-template-columns: 1fr;
	}

	.booking form,
	.contact-form form {
		padding: var(--spacing-md);
	}

	footer .footer-grid {
		grid-template-columns: 1fr;
		text-align: center;
	}

	footer .footer-logo {
		margin: 0 auto var(--spacing-sm);
	}

	.footer-links ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		gap: var(--spacing-sm);
	}

	.social-icons {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 1.2rem;
	}

	.radio-item {
		padding: var(--spacing-xs);
	}
}
