/* ==========================
   Premenné farieb
========================== */
:root {
	--primary-color: #007bff;
	--secondary-color: #f8f9fa;
	--dark-color: #343a40;
	--text-color: #495057;
	--accent-color: #090652;
	--bg-light: #fff;
	--bg-dark: #f0f2f5;
}

/* ==========================
   Reset a základné štýly
========================== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Poppins", sans-serif;
	scroll-behavior: smooth;
}

body {
	background: var(--bg-light);
	color: var(--text-color);
	line-height: 1.6;
	font-size: 16px;
}

/* ==========================
   Navigácia
========================== */
header {
	position: fixed;
	top: 0;
	width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1000;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("assets/background.jpeg");
	background-size: cover;
	background-position: center;
	opacity: 0.3;
	z-index: -1;
}

.navbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 2rem;
}

.logo-img {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--accent-color);
	text-shadow: 0 0 4px rgba(9, 6, 82, 0.3);
}

.nav-links {
	list-style: none;
	display: flex;
	gap: 1.5rem;
}

.nav-links li a {
	font-weight: 600;
	color: var(--dark-color);
	position: relative;
	transition: color 0.3s ease;
}

.nav-links li a::after {
	content: "";
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: var(--primary-color);
	transition: width 0.3s ease;
}

.nav-links li a:hover {
	color: var(--primary-color);
}

.nav-links li a:hover::after {
	width: 100%;
}

/* ==========================
   Hero sekcia
========================== */
.hero {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 100vh;
	background: linear-gradient(
		135deg,
		var(--accent-color),
		var(--primary-color)
	);
	color: var(--secondary-color);
	padding: 0 2rem;
}

.hero h1 {
	font-size: 3rem;
	margin-top: 8rem;
	margin-bottom: 1rem;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.hero p {
	font-size: 1.2rem;
	margin-bottom: 2rem;
	color: var(--secondary-color);
}

.btn-primary {
	display: inline-block;
	padding: 0.75rem 1.5rem;
	font-weight: 600;
	color: #fff;
	background: var(--primary-color);
	border-radius: 30px;
	box-shadow: 0 0 10px var(--primary-color);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
	transform: scale(1.05);
	box-shadow: 0 0 20px var(--primary-color);
}

/* ==========================
   Sekcie
========================== */
.section {
	padding: 6rem 2rem 3rem 2rem;
	background: var(--bg-dark);
	opacity: 0;
	transform: translateY(50px);
	transition: all 0.8s ease;
	clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
}

.section:nth-child(even) {
	background: var(--secondary-color);
}

.section h2 {
	font-size: 2rem;
	margin-bottom: 1.5rem;
	color: var(--accent-color);
}

.section ul {
	list-style: disc;
	padding-left: 2rem;
	margin-bottom: 2rem;
}

.section ul li {
	margin-bottom: 1rem;
}

/* ==========================
   Media blok
========================== */
.media {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem;
	margin-top: 2rem;
}

.media video,
.media img {
	width: 100%;
	max-width: 500px;
	border-radius: 12px;
	box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media video:hover,
.media img:hover {
	transform: scale(1.03);
	box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

/* ==========================
   Sociálne odkazy
========================== */
.social-links {
	margin-top: 2rem;
	display: flex;
	gap: 1.5rem;
}

.social-links a {
	font-weight: 600;
	color: var(--primary-color);
	transition: transform 0.3s ease;
}

.social-links a:hover {
	transform: scale(1.1);
}

/* ==========================
   Kontakt
========================== */
.contact a {
	color: var(--accent-color);
	font-weight: 600;
}

.contact a:hover {
	text-decoration: underline;
}

/* ==========================
   Footer
========================== */
footer {
	text-align: center;
	padding: 2rem;
	background: var(--dark-color);
	color: #ccc;
	font-size: 0.9rem;
}

/* ==========================
   Responzívne
========================== */
@media (max-width: 768px) {
	.nav-links {
		display: none;
	}

	.hero h1 {
		font-size: 2rem;
	}

	.section {
		padding: 4rem 1rem;
		clip-path: none;
	}

	.media {
		flex-direction: column;
	}
}
