/* Main Styles for Weitblick Reisen */

:root {
	--main-bg: #0e1d2c;
	--accent-color: #f67280;
	--secondary-color: #355c7d;
	--tertiary-color: #c06c84;
	--text-color: #ffffff;
	--block-bg: #1a2a3a;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family:
		system-ui,
		-apple-system,
		BlinkMacSystemFont,
		"Segoe UI",
		Roboto,
		"Helvetica Neue",
		Arial,
		sans-serif;
	background-color: var(--main-bg);
	color: var(--text-color);
	line-height: 1.6;
	overflow-x: hidden;
}

a {
	color: var(--accent-color);
	text-decoration: none;
	transition: color 0.3s ease;
}

a:hover {
	color: var(--tertiary-color);
}

.container {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.section {
	padding: 80px 0;
	position: relative;
}

.section-title {
	text-align: center;
	margin-bottom: 50px;
	font-size: 2.5rem;
	position: relative;
}

.section-title::after {
	content: "";
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: linear-gradient(to right, var(--accent-color), var(--tertiary-color));
	border-radius: 2px;
}

/* Button Styles */
.btn {
	display: inline-block;
	padding: 12px 30px;
	background: linear-gradient(to right, var(--accent-color), var(--tertiary-color));
	color: white;
	border: none;
	border-radius: 50px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(246, 114, 128, 0.3);
}

.btn:hover {
	transform: translateY(-3px) scale(1.03);
	box-shadow: 0 7px 20px rgba(246, 114, 128, 0.4);
}

/* Header Styles */
header {
	background-color: rgba(14, 29, 44, 0.95);
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 1000;
	backdrop-filter: blur(8px);
	box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0;
}

.logo {
	max-width: 180px;
}

.nav-links {
	display: flex;
	list-style: none;
	gap: 30px;
}

.nav-links a {
	color: var(--text-color);
	font-weight: 500;
	position: relative;
}

.nav-links a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--accent-color);
	bottom: -5px;
	left: 0;
	transition: width 0.3s ease;
}

.nav-links a:hover::after {
	width: 100%;
}

/* Hero Section */
.hero {
	height: 100vh;
	min-height: 600px;
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	position: relative;
	display: flex;
	align-items: center;
	text-align: center;
}

.hero::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, rgba(14, 29, 44, 0.7), rgba(14, 29, 44, 0.9));
}

.hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.hero h1 {
	font-size: 3.5rem;
	margin-bottom: 20px;
	letter-spacing: 1px;
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

/* About Section */
.about {
	background-color: var(--block-bg);
	clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
	margin: 40px 0;
	padding: 120px 0;
}

.about-content {
	display: flex;
	align-items: center;
	gap: 50px;
}

.about-text {
	flex: 1;
}

.about-image {
	flex: 1;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
	transform: rotate(2deg);
	transition: transform 0.5s ease;
}

.about-image:hover {
	transform: rotate(0) scale(1.02);
}

.about-image img {
	width: 100%;
	height: auto;
	display: block;
}

/* Tours Section */
.tours {
	padding: 100px 0;
}

.tour-cards {
	display: flex;
	gap: 30px;
	justify-content: center;
	flex-wrap: wrap;
}

.tour-card {
	background-color: var(--block-bg);
	border-radius: 15px;
	overflow: hidden;
	width: 100%;
	max-width: 350px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.4s ease,
		box-shadow 0.4s ease;
}

.tour-card:hover {
	transform: translateY(-15px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.tour-image {
	height: 250px;
	overflow: hidden;
	position: relative;
}

.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: 25px;
}

.tour-title {
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.tour-price {
	font-size: 1.8rem;
	color: var(--accent-color);
	font-weight: 700;
	margin: 15px 0;
}

/* Benefits Section */
.benefits {
	background-color: var(--block-bg);
	clip-path: polygon(0 10%, 100% 0, 100% 90%, 0 100%);
	padding: 150px 0;
}

.benefits-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 30px;
}

.benefit-item {
	flex: 1;
	min-width: 250px;
	text-align: center;
	padding: 30px;
	background-color: rgba(14, 29, 44, 0.5);
	border-radius: 15px;
	transition: transform 0.3s ease;
}

.benefit-item:hover {
	transform: translateY(-10px);
}

.benefit-icon {
	margin-bottom: 20px;
	font-size: 2.5rem;
	color: var(--accent-color);
}

.benefit-title {
	margin-bottom: 15px;
	font-size: 1.4rem;
}

/* Testimonials Section */
.testimonials {
	padding: 100px 0;
}

.testimonial-container {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.testimonial-item {
	background-color: var(--block-bg);
	padding: 40px;
	border-radius: 20px;
	margin: 0 auto;
	text-align: center;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
	font-size: 1.2rem;
	font-style: italic;
	margin-bottom: 20px;
	position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
	content: '"';
	font-size: 3rem;
	color: var(--accent-color);
	opacity: 0.3;
	position: absolute;
}

.testimonial-text::before {
	top: -20px;
	left: -15px;
}

.testimonial-text::after {
	bottom: -40px;
	right: -15px;
}

.testimonial-author {
	font-weight: 600;
	color: var(--accent-color);
}

/* Booking Form Section */
.booking {
	background-color: var(--block-bg);
	clip-path: polygon(0 0, 100% 10%, 100% 100%, 0 90%);
	padding: 150px 0 100px;
}

.form-container {
	max-width: 600px;
	margin: 0 auto;
	background-color: rgba(14, 29, 44, 0.8);
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 10px;
	font-weight: 500;
}

.form-control {
	width: 100%;
	padding: 15px;
	background-color: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	color: var(--text-color);
	transition: all 0.3s ease;
}

.form-control:focus {
	outline: none;
	border-color: var(--accent-color);
	background-color: rgba(255, 255, 255, 0.15);
}

select.form-control {
	appearance: none;
	background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
	background-repeat: no-repeat;
	background-position: right 15px center;
}

.checkbox-group {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.checkbox-group input {
	margin-right: 10px;
	margin-top: 5px;
}

/* Radio Button Styles */
.radio-group {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 15px;
}

.radio-item {
	display: flex;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 10px;
	padding: 12px 15px;
	transition: all 0.3s ease;
	cursor: pointer;
}

.radio-item:hover {
	background-color: rgba(255, 255, 255, 0.15);
	transform: translateY(-2px);
}

.radio-item input[type="radio"] {
	margin-right: 15px;
	cursor: pointer;
}

.radio-item input[type="radio"]:checked + label {
	color: var(--accent-color);
	font-weight: 600;
}

.radio-item label {
	cursor: pointer;
	flex: 1;
}

.btn-submit {
	width: 100%;
	padding: 15px;
	font-size: 1.1rem;
}

/* FAQ Section */
.faq {
	padding: 100px 0;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	margin-bottom: 20px;
	border-radius: 10px;
	overflow: hidden;
}

.faq-question {
	background-color: var(--block-bg);
	padding: 20px;
	cursor: pointer;
	position: relative;
	font-weight: 600;
	transition: background-color 0.3s ease;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.faq-question::after {
	content: "+";
	font-size: 1.8rem;
	color: var(--accent-color);
	margin-left: 15px;
	min-width: 24px;
	text-align: center;
	transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"] {
	display: none;
}

.faq-answer {
	background-color: rgba(26, 42, 58, 0.7);
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.faq-item input[type="checkbox"]:checked ~ .faq-answer {
	max-height: 300px;
}

.faq-item input[type="checkbox"]:checked ~ .faq-question::after {
	transform: rotate(45deg);
}

.faq-content {
	padding: 20px;
}

/* Contact Section */
.contact {
	background-color: var(--block-bg);
	clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
	padding: 150px 0 80px;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 50px;
	justify-content: center;
}

.contact-info {
	flex: 1;
	min-width: 300px;
}

.contact-map {
	flex: 1;
	min-width: 300px;
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.contact-item {
	margin-bottom: 30px;
	display: flex;
	align-items: flex-start;
}

.contact-icon {
	margin-right: 15px;
	font-size: 1.5rem;
	color: var(--accent-color);
	min-width: 25px;
	text-align: center;
}

.contact-map img {
	width: 100%;
	height: auto;
	display: block;
}

/* Footer */
footer {
	background-color: rgba(14, 29, 44, 0.95);
	padding: 70px 0 20px;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
	margin-bottom: 50px;
}

.footer-logo {
	flex: 1;
	min-width: 300px;
}

.footer-logo img {
	max-width: 150px;
	margin-bottom: 20px;
}

.footer-logo p {
	max-width: 400px;
}

.footer-links {
	flex: 1;
	min-width: 200px;
}

.footer-title {
	font-size: 1.2rem;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.footer-title::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 30px;
	height: 3px;
	background-color: var(--accent-color);
}

.footer-menu {
	list-style: none;
}

.footer-menu li {
	margin-bottom: 10px;
}

.footer-bottom {
	text-align: center;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(14, 29, 44, 0.95);
	padding: 15px;
	text-align: center;
	z-index: 9999;
	box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
	backdrop-filter: blur(8px);
}

.cookie-banner form {
	display: inline-block;
	margin-left: 15px;
}

.cookie-banner button {
	background-color: var(--accent-color);
	color: white;
	border: none;
	padding: 8px 20px;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
	background-color: var(--tertiary-color);
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
	.section {
		padding: 60px 0;
	}

	.hero h1 {
		font-size: 2.8rem;
	}

	.about-content {
		flex-direction: column;
	}

	.about-image {
		margin-top: 40px;
	}
}

@media screen and (max-width: 768px) {
	.header-container {
		flex-direction: column;
	}

	.nav-links {
		margin-top: 20px;
		flex-wrap: wrap;
		justify-content: center;
	}

	.hero h1 {
		font-size: 2.3rem;
	}

	.section-title {
		font-size: 2rem;
	}

	.tour-cards {
		flex-direction: column;
		align-items: center;
	}

	.benefits-container {
		flex-direction: column;
	}
}

@media screen and (max-width: 576px) {
	.hero h1 {
		font-size: 1.8rem;
	}

	.hero p {
		font-size: 1rem;
	}

	.section-title {
		font-size: 1.8rem;
	}

	.tour-card {
		max-width: 100%;
	}

	.form-container {
		padding: 20px;
	}
}

/* Animation for scroll reveal */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-on-scroll {
	opacity: 0;
}

.animated {
	animation: fadeInUp 0.8s ease forwards;
}
