﻿/* Нова колірна схема - темна тема з акцентами */
:root {
	--primary: #2c3e50;
	--secondary: #34495e;
	--accent: #e74c3c;
	--accent-light: #ec7063;
	--text-primary: #2c3e50;
	--text-secondary: #7f8c8d;
	--bg-primary: #ecf0f1;
	--bg-secondary: #ffffff;
	--border-color: #bdc3c7;
	--shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	--shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	font-family: 'Baskervville', 'Georgia', serif;
	font-size: 16px;
	line-height: 1.8;
	color: var(--text-primary);
	background: var(--bg-primary);
}

/* Header - горизонтальна навігація */
.site-header {
	background: var(--bg-secondary);
	box-shadow: var(--shadow);
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 1.2rem 0;
}

.header-wrapper {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.site-logo {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	text-decoration: none;
	letter-spacing: 1px;
	transition: transform 0.3s;
}

.site-logo:hover {
	transform: scale(1.05);
}

.nav-toggle {
	display: flex;
	flex-direction: column;
	gap: 5px;
	width: 35px;
	height: 35px;
	background: transparent;
	border: 2px solid var(--primary);
	border-radius: 5px;
	padding: 6px;
	cursor: pointer;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.nav-toggle:hover {
	background: var(--primary);
}

.nav-toggle svg rect {
	fill: var(--primary);
	transition: fill 0.3s;
}

.nav-toggle:hover svg rect {
	fill: white;
}

.site-navigation {
	position: fixed;
	top: 0;
	right: -100%;
	width: 280px;
	height: 100vh;
	background: var(--bg-secondary);
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
	transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 999;
	padding: 5rem 2rem 2rem;
	overflow-y: auto;
}

.site-navigation.active {
	right: 0;
}

.site-navigation a {
	display: block;
	padding: 1rem 1.5rem;
	margin: 0.5rem 0;
	color: var(--text-primary);
	text-decoration: none;
	font-weight: 500;
	border-left: 3px solid transparent;
	border-radius: 5px;
	transition: all 0.3s;
}

.site-navigation a:hover {
	background: var(--bg-primary);
	border-left-color: var(--accent);
	padding-left: 2rem;
	color: var(--accent);
}

.nav-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(3px);
	z-index: 998;
}

.nav-overlay.active {
	display: block;
}

/* Main Content */
.main-content {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 2rem;
}

/* Hero Section */
.hero-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 5rem 0;
	text-align: center;
	margin-bottom: 3rem;
	border-radius: 0 0 30px 30px;
}

.hero-title {
	font-size: 2.5rem;
	font-weight: 700;
	margin-bottom: 1.5rem;
	line-height: 1.3;
}

.hero-description {
	font-size: 1.2rem;
	max-width: 800px;
	margin: 0 auto 2rem;
	opacity: 0.95;
	line-height: 1.8;
}

.scroll-down {
	display: inline-block;
	margin-top: 2rem;
	animation: bounce 2s infinite;
}

.scroll-down svg {
	width: 60px;
	height: 60px;
}

@keyframes bounce {

	0%,
	20%,
	50%,
	80%,
	100% {
		transform: translateY(0);
	}

	40% {
		transform: translateY(-10px);
	}

	60% {
		transform: translateY(-5px);
	}
}

/* Content Blocks */
.content-block {
	background: var(--bg-secondary);
	padding: 4rem 0;
	margin-bottom: 2rem;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.content-block-title {
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
	text-align: center;
	margin-bottom: 2rem;
	position: relative;
	padding-bottom: 1rem;
}

.content-block-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.content-text {
	max-width: 900px;
	margin: 0 auto 2.5rem;
	padding: 0 2rem;
	text-align: justify;
	color: var(--text-secondary);
	font-size: 1.1rem;
	line-height: 1.9;
}

.content-text p {
	margin-bottom: 1.5rem;
}

.content-image {
	display: block;
	max-width: 100%;
	width: 100%;
	max-width: 800px;
	height: auto;
	margin: 2rem auto;
	border-radius: 10px;
	box-shadow: var(--shadow);
	object-fit: cover;
}

/* Buttons */
.action-button {
	display: inline-block;
	padding: 1rem 2.5rem;
	background: var(--accent);
	color: white;
	font-size: 1.1rem;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	box-shadow: var(--shadow);
	margin: 2rem auto;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.action-button:hover {
	background: var(--accent-light);
	transform: translateY(-3px);
	box-shadow: var(--shadow-hover);
}

/* Form Section */
.form-section {
	background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
	color: white;
	padding: 5rem 0;
	margin: 3rem 0;
	border-radius: 15px;
}

.form-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: white;
}

.form-wrapper {
	max-width: 600px;
	margin: 0 auto;
	padding: 0 2rem;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.form-label {
	font-size: 1.1rem;
	font-weight: 600;
	color: white;
	margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
	width: 100%;
	padding: 1rem 1.5rem;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	backdrop-filter: blur(10px);
	color: white;
	font-size: 1rem;
	font-family: inherit;
	transition: all 0.3s;
}

.form-input::placeholder,
.form-textarea::placeholder {
	color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-textarea:focus {
	outline: none;
	border-color: white;
	background: rgba(255, 255, 255, 0.2);
	box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-textarea {
	min-height: 150px;
	resize: vertical;
}

.form-submit {
	background: white;
	color: var(--accent);
	padding: 1.2rem 3rem;
	font-size: 1.1rem;
	font-weight: 700;
	border: none;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: 1rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-submit:hover {
	transform: translateY(-3px);
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	background: var(--bg-primary);
}

/* Contact Page */
.contact-page {
	background: var(--bg-secondary);
	padding: 4rem 0;
	margin: 2rem 0;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.page-title {
	font-size: 2.5rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 3rem;
	color: var(--primary);
}

.contact-info-box {
	background: var(--bg-primary);
	padding: 2.5rem;
	border-radius: 10px;
	margin-bottom: 2rem;
	box-shadow: var(--shadow);
}

.contact-info-box p {
	margin-bottom: 1rem;
	font-size: 1.1rem;
	color: var(--text-primary);
}

.contact-info-box a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
	transition: color 0.3s;
}

.contact-info-box a:hover {
	color: var(--accent-light);
	text-decoration: underline;
}

.map-wrapper {
	margin-top: 2rem;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: var(--shadow);
}

.map-wrapper iframe {
	width: 100%;
	height: 400px;
	border: none;
	display: block;
}

/* Privacy & Terms Pages */
.legal-page {
	background: var(--bg-secondary);
	padding: 4rem 0;
	margin: 2rem 0;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.legal-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.legal-content h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	margin: 2.5rem 0 1.5rem;
	border-left: 4px solid var(--accent);
	padding-left: 1rem;
}

.legal-content p {
	margin-bottom: 1.5rem;
	color: var(--text-secondary);
	line-height: 1.9;
	text-align: justify;
}

.legal-content ul {
	margin: 1.5rem 0;
	padding-left: 2.5rem;
}

.legal-content li {
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
	line-height: 1.8;
}

/* Impressum Page */
.impressum-page {
	background: var(--bg-secondary);
	padding: 4rem 0;
	margin: 2rem 0;
	border-radius: 15px;
	box-shadow: var(--shadow);
}

.impressum-content {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 2rem;
}

.impressum-content h2 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent);
	margin: 2.5rem 0 1.5rem;
	border-left: 4px solid var(--accent);
	padding-left: 1rem;
}

.impressum-content address {
	font-style: normal;
	margin-bottom: 2rem;
	line-height: 1.9;
}

.impressum-content address p {
	margin-bottom: 0.75rem;
	color: var(--text-secondary);
}

.impressum-content address a {
	color: var(--accent);
	font-weight: 600;
	text-decoration: none;
}

.impressum-content address a:hover {
	text-decoration: underline;
}

/* Footer */
.site-footer {
	background: var(--primary);
	color: white;
	padding: 3rem 0;
	text-align: center;
	margin-top: 4rem;
}

.footer-links {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 1.5rem;
	flex-wrap: wrap;
}

.footer-links a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s;
}

.footer-links a:hover {
	color: white;
}

.footer-copyright {
	color: rgba(255, 255, 255, 0.6);
	font-size: 0.9rem;
}

/* Cookie Notice */
.cookie-notice {
	display: none;
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 2rem);
	max-width: 600px;
	padding: 1.5rem;
	background: var(--primary);
	border-radius: 15px;
	box-shadow: var(--shadow-hover);
	z-index: 999999;
	color: white;
	font-size: 0.95rem;
	line-height: 1.6;
}

.cookie-notice.show {
	display: block;
	animation: slideUp 0.4s ease;
}

@keyframes slideUp {
	from {
		transform: translateX(-50%) translateY(100px);
		opacity: 0;
	}

	to {
		transform: translateX(-50%) translateY(0);
		opacity: 1;
	}
}

.cookie-notice-text {
	display: block;
	margin-bottom: 1rem;
}

.cookie-notice a {
	color: var(--accent-light);
	text-decoration: underline;
}

.cookie-accept-btn {
	float: right;
	padding: 0.75rem 1.5rem;
	border-radius: 8px;
	background: var(--accent);
	color: white;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
	margin-top: -0.5rem;
}

.cookie-accept-btn:hover {
	background: var(--accent-light);
	transform: translateY(-2px);
	box-shadow: var(--shadow);
}

/* Responsive Design */
@media (min-width: 1024px) {
	body {
		font-size: 18px;
	}

	.header-wrapper {
		padding: 0 3rem;
	}

	.site-logo {
		font-size: 2.2rem;
	}

	.nav-toggle {
		display: none;
	}

	.site-navigation {
		position: static;
		width: auto;
		height: auto;
		background: transparent;
		box-shadow: none;
		flex-direction: row;
		padding: 0;
		overflow: visible;
		right: 0;
	}

	.site-navigation a {
		padding: 0.5rem 1.5rem;
		margin: 0;
		border-left: none;
		border-bottom: 2px solid transparent;
	}

	.site-navigation a:hover {
		background: transparent;
		padding-left: 1.5rem;
		border-left: none;
		border-bottom-color: var(--accent);
	}

	.hero-section {
		padding: 7rem 0;
	}

	.hero-title {
		font-size: 3.5rem;
	}

	.hero-description {
		font-size: 1.4rem;
	}

	.content-block-title {
		font-size: 2.5rem;
	}

	.content-text {
		font-size: 1.2rem;
	}

	.content-image {
		max-width: 900px;
	}

	.form-title {
		font-size: 3rem;
	}

	.page-title {
		font-size: 3rem;
	}

	.map-wrapper iframe {
		height: 500px;
	}

	.content-block {
		padding: 5rem 0;
	}
}

@media (max-width: 768px) {
	.hero-title {
		font-size: 2rem;
	}

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

	.content-block-title {
		font-size: 1.75rem;
	}

	.form-title {
		font-size: 2rem;
	}

	.page-title {
		font-size: 2rem;
	}

	.main-content {
		padding: 0 1rem;
	}

	.header-wrapper {
		padding: 0 1rem;
	}
}

html.no-scroll {
	overflow: hidden;
}