/* Design System */

@font-face {
	font-family: "ClanPro";
	font-display: fallback;
	src: url("https://www.karcherpromo.sk/karcher/sk/assets/fonts/ClanWebPro-News.woff")
		format("woff");
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: "ClanPro";
	font-display: fallback;
	src: url("https://www.karcherpromo.sk/karcher/sk/assets/fonts/ClanWebPro-Medium.woff")
		format("woff");
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: "ClanPro";
	font-display: fallback;
	src: url("https://www.karcherpromo.sk/karcher/sk/assets/fonts/ClanWebPro-Bold.woff")
		format("woff");
	font-weight: bold;
	font-style: normal;
}

@font-face {
	font-family: "ClanPro";
	font-display: fallback;
	src: url("https://www.karcherpromo.sk/karcher/sk/assets/fonts/ClanWebPro-NarrBlack.woff")
		format("woff");
	font-weight: 900;
	font-style: normal;
}

:root {
	--background: 0 0% 100%;
	--foreground: 222.2 84% 4.9%;
	--card: 0 0% 100%;
	--card-foreground: 222.2 84% 4.9%;
	--popover: 0 0% 100%;
	--popover-foreground: 222.2 84% 4.9%;
	--primary: 262 83% 58%;
	--primary-foreground: 210 40% 98%;
	--secondary: 210 40% 96%;
	--secondary-foreground: 222.2 84% 4.9%;
	--muted: 210 40% 96%;
	--muted-foreground: 215.4 16.3% 46.9%;
	--accent: 210 40% 96%;
	--accent-foreground: 222.2 84% 4.9%;
	--destructive: 0 84% 60%;
	--destructive-foreground: 210 40% 98%;
	--border: 214.3 31.8% 91.4%;
	--input: 214.3 31.8% 91.4%;
	--ring: 262 83% 58%;
	--radius: 0;
	--gradient-hero: linear-gradient(45deg, #fff000 0%, #ffde01 100%);
	--gradient-card: linear-gradient(45deg, #ffb000e6 0%, #ffce01 100%);
	--shadow-elegant: 0 25px 50px -12px hsla(56, 60%, 69%, 0.24);
	--shadow-glow: 0 0 40px hsla(54, 50%, 73%, 0.164);
}

* {
	box-sizing: border-box;
	font-family: "ClanPro", sans-serif;
}

body {
	line-height: 1.6;
	color: hsl(var(--foreground));
	background: hsl(var(--background));
	overflow-x: hidden;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 1rem;
}

/* Hero Section */
.hero-section {
	position: relative;
	min-height: 100vh;
	height: 100vh;
	display: flex;
	align-items: center;
	background: var(--gradient-hero);
	overflow: hidden;
	width: 100%;
}

.hero-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, #fff000 0%, #fff001 100%);
	z-index: 1;
}

.bg-karcher-yellow {
	background: #fff000;
}

.hero-content {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 100vh;
	color: black;
}

@media (max-width: 815px) {
	.hero-section {
		position: relative;
		min-height: auto;
		height: auto !important;
		display: flex;
		align-items: center;
		background: var(--gradient-hero);
		overflow: hidden;
		width: 100%;
	}
	.hero-content {
		position: relative;
		z-index: 2;
		width: 100%;
		height: auto !important;
		color: black;
	}
}

.hero-grid {
	display: block;
	width: 100%;
	grid-template-columns: 1fr 1fr;
	gap: 0rem;
	align-items: top;
}

.hero-title {
	font-size: 3rem;
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 1.5rem;
}

.hero-text {
	padding: 3rem;
}

.hero-pro {
	padding: 3rem;
	background-image: url("../img/products-pro.jpg");
	background-position: bottom center;
	background-size: contain;
	background-size: calc(100vw / 4);
	background-repeat: no-repeat;
}

.hero-wd {
	padding: 3rem;
	background-image: url("../img/products-wd.jpg");
	background-position: bottom center;
	background-size: contain;
	background-size: calc(100vw / 2);
	background-repeat: no-repeat;
}

@media (max-height: 680px) {
	.hero-text,
	.hero-pro,
	.hero-wd {
		padding: 3rem;
		background-image: none;
		background-position: bottom right;
		background-size: 400px;
		background-size: calc(100vw / 2.1);
		background-repeat: no-repeat;
	}
}
@media (max-width: 1200px) {
}
@media (max-width: 815px) {
	.hero-text {
		padding: 3rem;
		background-image: none;
		background-position: bottom right;
		background-size: 600px;
		background-size: calc(100vw / 2.1);
		background-repeat: no-repeat;
	}
	.hero-pro,
	.hero-wd {
		padding: 3rem;
		background-image: none;
		background-position: bottom center;
		background-size: contain;
		background-size: calc(100vw / 4);
		background-repeat: no-repeat;
	}
	.hero-logo {
		display: block;
		margin-left: auto;
		margin-right: auto;
	}
}

.hero-logo {
	max-width: 160px;
	margin-bottom: 3rem;
}
.hero-title-accent {
	background: linear-gradient(135deg, #fbbf24, #f59e0b);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.hero-description {
	font-size: 1.5rem;
	margin-top: 1rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	line-height: 1.4;
}

.hero-features {
	display: flex;
	gap: 2rem;
	margin-bottom: 2rem;
}

.hero-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 0;
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-feature-icon {
	width: 20px;
	height: 20px;
}

.hero-image-container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.hero-image {
	width: 100%;
	height: 100%;
	border-radius: 0;
	box-shadow: var(--shadow-elegant);
	image-rendering: optimizeQuality;
	object-fit: cover;
}

@media (max-width: 768px) {
	.hero-image-container {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.hero-image {
		width: 100%;
		height: 60vh;
		min-height: 280px;
		border-radius: 0;
		box-shadow: var(--shadow-elegant);
		image-rendering: optimizeQuality;
		object-fit: cover;
	}
}

/* Benefits Section */
.benefits-section {
	padding: 6rem 0;
	/*background: var(--gradient-card);*/
}

.benefits-header {
	text-align: center;
	margin-bottom: 4rem;
}

.benefits-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
}

.benefits-description {
	font-size: 1.1rem;
	color: #000;
	max-width: 600px;
	margin: 0 auto;
}

.benefits-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.benefit-card {
	background: hsl(var(--card));
	padding: 2.5rem;
	border-radius: 0;
	text-align: center;
	border: 1px solid hsl(var(--border));
	transition: all 0.3s ease;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card:hover {
	transform: translateY(-10px);
	box-shadow: var(--shadow-elegant);
}

.benefit-icon-container {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: var(--gradient-hero);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefit-icon {
	width: 40px;
	height: 40px;
	color: white;
}

.benefit-title {
	font-size: 1.5rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 1rem;
}

.benefit-description {
	color: hsl(var(--muted-foreground));
	line-height: 1.6;
}

/* Form Section */
.form-section {
	padding: 6rem 0;
	background: hsl(var(--background));
}

.form-header {
	text-align: center;
	margin-bottom: 4rem;
}

.form-title {
	font-size: 2.5rem;
	font-weight: 700;
	color: #000;
	margin-bottom: 1rem;
}

.form-description {
	font-size: 1.1rem;
	color: #000;
	max-width: 600px;
	margin: 0 auto;
}

.form-card {
	max-width: 600px;
	margin: 0 auto;
	background: hsl(var(--card));
	padding: 3rem;
	border-radius: 0;
	border: 1px solid hsl(var(--border));
	box-shadow: var(--shadow-elegant);
}

.form-card-header {
	text-align: center;
	margin-bottom: 2rem;
}

.form-card-title {
	font-size: 1.8rem;
	font-weight: 600;
	color: #000;
	margin-bottom: 0.5rem;
}

.form-card-description {
	color: hsl(var(--muted-foreground));
}

.form-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.form-group {
	margin-bottom: 1.5rem;
}

.form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-weight: 600;
	color: hsl(var(--foreground));
}

.form-input,
.form-select {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid hsl(var(--border));
	border-radius: 0;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: hsl(var(--background));
	color: hsl(var(--foreground));
}

.form-input:focus,
.form-select:focus {
	outline: none;
	border-color: hsl(var(--primary));
	box-shadow: 0 0 0 3px hsl(var(--primary) / 0.1);
	transform: scale(1.02);
}

.file-upload-container {
	position: relative;
}

.file-input {
	position: absolute;
	opacity: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.file-upload-label {
	display: block;
	padding: 2rem;
	border: 2px dashed hsl(var(--border));
	border-radius: 0;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	background: hsl(var(--background));
}

.file-upload-label:hover {
	border-color: hsl(var(--primary));
	background: hsl(var(--primary) / 0.05);
}

.file-upload-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.5rem;
}

.file-upload-icon {
	width: 40px;
	height: 40px;
	color: hsl(var(--primary));
}

.file-upload-text {
	font-size: 1rem;
	color: hsl(var(--foreground));
	font-weight: 500;
}

.file-upload-hint {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
}

.form-submit-btn {
	width: 100%;
	padding: 1rem;
	background: #fff000;
	color: #000;
	border: none;
	border-radius: 0;
	font-size: 1.1rem;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	margin-bottom: 1rem;
}

.form-submit-btn:hover:not(:disabled) {
	background: #fff000;
	transform: translateY(-2px);
	box-shadow: var(--shadow-glow);
}

.form-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	transform: none;
}

.form-submit-icon {
	width: 20px;
	height: 20px;
}

.form-disclaimer {
	font-size: 0.875rem;
	color: hsl(var(--muted-foreground));
	text-align: center;
	line-height: 1.4;
}

/* Success Card */
.success-card {
	background: hsl(var(--card)) !important;
	border: 1px solid hsl(142, 76%, 60%) !important;
	box-shadow: 0 0 30px hsl(142, 76%, 60%, 0.2) !important;
}

.success-content {
	text-align: center;
}

.success-icon-container {
	width: 80px;
	height: 80px;
	margin: 0 auto 1.5rem;
	background: hsl(142, 76%, 36%);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.success-icon {
	width: 40px;
	height: 40px;
	color: white;
}

.success-title {
	font-size: 2rem;
	font-weight: 700;
	color: hsl(142, 76%, 36%);
	margin-bottom: 1rem;
}

.success-description {
	color: hsl(var(--muted-foreground));
	margin-bottom: 2rem;
	line-height: 1.6;
}

.success-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	flex-wrap: wrap;
}

.success-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1.5rem;
	background: hsl(142, 76%, 36%, 0.1);
	border-radius: 0;
	border: 1px solid hsl(142, 76%, 36%, 0.2);
}

.success-feature-icon {
	width: 18px;
	height: 18px;
	color: hsl(142, 76%, 36%);
}

/* Footer */
.footer {
	padding: 3rem 0;
	background: hsl(var(--muted));
	border-top: 1px solid hsl(var(--border));
}

.footer-content {
	text-align: center;
}

.footer-features {
	display: flex;
	justify-content: center;
	gap: 2rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.footer-feature {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.5rem 1rem;
	background: hsl(var(--card));
	border-radius: 0;
	border: 1px solid hsl(var(--border));
}

.footer-feature-icon {
	width: 18px;
	height: 18px;
	color: #000;
}

.footer-text {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

/* Toast Notifications */
.toast-container {
	position: fixed;
	top: 20px;
	right: 20px;
	z-index: 1000;
	max-width: 400px;
}

.toast {
	background: hsl(var(--card));
	border: 1px solid hsl(var(--border));
	border-left: 4px solid hsl(var(--primary));
	border-radius: 0;
	padding: 1rem;
	margin-bottom: 1rem;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
	transform: translateX(100%);
	opacity: 0;
	transition: all 0.3s ease;
}

.toast-title {
	font-weight: 600;
	margin-bottom: 0.5rem;
	color: hsl(var(--foreground));
}

.toast-description {
	color: hsl(var(--muted-foreground));
	font-size: 0.875rem;
}

.loading-spinner {
	width: 20px;
	height: 20px;
	border: 2px solid transparent;
	border-top: 2px solid currentColor;
	border-radius: 0;
	animation: spin 1s linear infinite;
}

@keyframes spin {
	to {
		transform: rotate(360deg);
	}
}

/* Animations */
.fade-in {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
	animation-delay: 0.2s;
}

.fade-in-delay-2 {
	animation-delay: 0.4s;
}

.fade-in-delay-3 {
	animation-delay: 0.6s;
}

@keyframes fadeIn {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
		text-align: center;
	}

	.hero-title {
		font-size: 2.5rem;
	}

	.hero-features {
		flex-direction: column;
		gap: 1rem;
	}

	.benefits-title,
	.form-title {
		font-size: 2rem;
	}

	.form-card {
		padding: 2rem;
	}

	.form-row {
		grid-template-columns: 1fr;
	}

	.footer-features {
		flex-direction: column;
		gap: 1rem;
	}

	.success-features {
		flex-direction: column;
		gap: 1rem;
	}
}
