:root {
	--color-primary: #783f22;
	--color-secondary: #939090;
	--color-accent: #4c250c;
	--color-highlight: #bca28c;
	--color-muted: #b5afae;
}

.color-primary {
	color: var(--color-primary);
}
.color-secondary {
	color: var(--color-secondary);
}
.color-accent {
	color: var(--color-accent);
}
.color-highlight {
	color: var(--color-highlight);
}
.color-muted {
	color: var(--color-muted);
}

.bg-primary {
	background-color: var(--color-primary);
}
.bg-secondary {
	background-color: #6c625d;
}
.bg-accent {
	background-color: var(--color-accent);
}
.bg-highlight {
	background-color: var(--color-highlight);
}
.bg-muted {
	background-color: var(--color-muted);
}

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

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Arial', sans-serif;
	line-height: 1.6;
	overflow-x: hidden;
}

.parallax-container {
	position: relative;
	overflow: hidden;
}

.parallax-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 120%;
	object-fit: cover;
	z-index: -1;
	transition: transform 0.1s ease-out;
}

.floating-element {
	animation: float 6s ease-in-out infinite;
}

@keyframes float {
	0%,
	100% {
		transform: translateY(0px);
	}
	50% {
		transform: translateY(-20px);
	}
}

.slide-in-left {
	opacity: 0;
	transform: translateX(-100px);
	transition: all 1s ease-out;
}

.slide-in-right {
	opacity: 0;
	transform: translateX(100px);
	transition: all 1s ease-out;
}

.slide-in-up {
	opacity: 0;
	transform: translateY(100px);
	transition: all 1s ease-out;
}

.animate-in {
	opacity: 1;
	transform: translate(0);
}

.geometric-shape {
	position: absolute;
	background: var(--color-muted);
	opacity: 0.1;
}

.circle-decoration {
	border-radius: 50%;
}

.triangle-decoration {
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.hexagon-decoration {
	clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.notification-form {
	background: rgba(73, 47, 27, 0.95);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
}

.notification-form::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(255, 255, 255, 0.1),
		transparent
	);
	animation: shimmer 3s infinite;
}

@keyframes shimmer {
	0% {
		left: -100%;
	}
	100% {
		left: 100%;
	}
}

.text-gradient {
	background: linear-gradient(
		135deg,
		var(--color-primary),
		var(--color-accent)
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.custom-input {
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 8px;
	padding: 12px 16px;
	color: white;
	width: 100%;
	transition: all 0.3s ease;
}

.custom-input:focus {
	outline: none;
	border-color: var(--color-muted);
	background: rgba(255, 255, 255, 0.15);
}

.custom-input::placeholder {
	color: rgba(255, 255, 255, 0.7);
}

.tech-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
	position: relative;
}

.tech-item {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease;
}

.tech-item:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pulse-animation {
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

@media (max-width: 768px) {
	.tech-grid {
		grid-template-columns: 1fr;
	}

	.notification-form {
		padding: 1.5rem;
	}
}

/* Cookie Popup Styles */
.cookie-popup {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(76, 12, 72, 0.98);
	backdrop-filter: blur(10px);
	padding: 1.5rem;
	z-index: 9999;
	box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
	border-top: 2px solid var(--color-highlight);
	animation: slideUp 0.5s ease-out;
}

.cookie-popup.hidden {
	display: none;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

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

.cookie-text {
	color: var(--color-muted);
	font-size: 0.95rem;
	line-height: 1.6;
	flex: 1;
	min-width: 250px;
}

.cookie-link {
	color: var(--color-highlight);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.cookie-link:hover {
	color: var(--color-muted);
}

.cookie-accept-btn {
	background-color: var(--color-highlight);
	color: white;
	border: none;
	padding: 0.75rem 2rem;
	border-radius: 8px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.cookie-accept-btn:hover {
	background-color: var(--color-primary);
	transform: scale(1.05);
}

@media (max-width: 768px) {
	.cookie-content {
		flex-direction: column;
		text-align: center;
	}

	.cookie-accept-btn {
		width: 100%;
	}
}
