/* ===== Alapvető stílusok ===== */
:root {
	--primary: #2c3e50;
	--secondary: #e74c3c;
	--accent: #f39c12;
	--light: #ecf0f1;
	--dark: #2c3e50;
	--shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	--gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	--gradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
	--purple-dark: #2c0848;
	--purple-medium: #4a1e6e;
	--purple-light: #6d3b99;
	--gold: #d4af37;
	--silver: #c0c0c0;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
	color: #fff;
	line-height: 1.7;
	min-height: 100vh;
	position: relative;
	overflow-x: hidden;
}

body::before {
	content: '';
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: 
		radial-gradient(circle at 10% 20%, rgba(108, 52, 131, 0.3) 0%, transparent 40%),
		radial-gradient(circle at 90% 80%, rgba(231, 76, 60, 0.2) 0%, transparent 40%),
		radial-gradient(circle at 50% 50%, rgba(243, 156, 18, 0.15) 0%, transparent 50%);
	z-index: -1;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
}

/* ===== Fejléc ===== */
.header {
	display: flex;
	align-items: center;
	gap: 60px;
	background: linear-gradient(145deg, rgba(44, 8, 72, 0.9), rgba(74, 30, 110, 0.9));
	border-radius: 25px;
	padding: 50px;
	margin: 40px 0;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.3);
	backdrop-filter: blur(10px);
}

.header::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 5px;
	background: linear-gradient(90deg, var(--gold), var(--silver), var(--gold));
}

.header::after {
	content: '';
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	bottom: 10px;
	border-radius: 15px;
	pointer-events: none;
}

.header-content {
	flex: 1;
	animation: slideInLeft 1s ease-out;
	z-index: 2;
}

.header-content h1 {
	font-family: 'Playfair Display', serif;
	font-size: 3.5rem;
	background: linear-gradient(to right, var(--gold), var(--silver));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 25px;
	line-height: 1.2;
	position: relative;
	display: inline-block;
	text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-content h1::after {
	content: '';
	position: absolute;
	bottom: -10px;
	left: 0;
	width: 100px;
	height: 4px;
	background: var(--accent);
	border-radius: 2px;
}

.header-content p {
	font-size: 1.2rem;
	color: #ddd;
	margin-bottom: 20px;
}

.header-content strong {
	color: var(--gold);
	font-weight: 700;
}

.highlight {
	color: var(--gold);
	font-weight: 800;
	text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.header img {
	width: 350px;
	height: 350px;
	border-radius: 20px;
	object-fit: cover;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
	border: 5px solid var(--gold);
	transition: all 0.3s ease;
	z-index: 2;
}

.header img:hover {
	transform: rotate(0deg) scale(1.05);
	border-color: var(--silver);
}

/* ===== Tartalom szekciók ===== */
.content-section {
	background: linear-gradient(145deg, rgba(44, 8, 72, 0.85), rgba(74, 30, 110, 0.85));
	border-radius: 25px;
	padding: 50px;
	margin: 40px 0;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.2);
	backdrop-filter: blur(10px);
}

.content-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--purple-light), var(--accent), var(--purple-light));
}

.content-text h1 {
	font-family: 'Playfair Display', serif;
	font-size: 2.8rem;
	background: linear-gradient(to right, #fff, var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 30px;
	position: relative;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content-text ul {
	list-style: none;
	margin: 25px 0;
}

.content-text li {
	padding: 15px 0;
	padding-left: 40px;
	position: relative;
	font-size: 1.1rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	color: #eee;
}

.content-text li:last-child {
	border-bottom: none;
}

.content-text li::before {
	content: '✦';
	position: absolute;
	left: 0;
	color: var(--gold);
	font-weight: bold;
	font-size: 1.5rem;
}

.content-text li b {
	color: var(--gold);
}

.content-text p {
	color: #ddd;
	font-size: 1.1rem;
	margin-top: 20px;
}

/* ===== Kép tartalommal ===== */
.content-with-image {
	display: flex;
	align-items: center;
	gap: 60px;
}

.gezakep1 {
	border-radius: 20px !important;
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    width: 380px;
    object-fit: cover;
    filter: drop-shadow(2px 4px 6px black);
    flex-shrink: 0;
}

.gezakep1:hover {
	transform: perspective(1000px) rotateY(0deg) scale(1.05);
	border-color: var(--silver) !important;
}

/* ===== Információ és űrlap ===== */
.info-form-container {
	display: flex;
	gap: 40px;
	margin: 40px 0;
}

.info-container {
	flex: 1;
	background: linear-gradient(145deg, rgba(44, 8, 72, 0.9), rgba(74, 30, 110, 0.9));
	border-radius: 25px;
	padding: 40px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.2);
	backdrop-filter: blur(10px);
}

.info-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple-light), var(--accent), var(--purple-light));

}

.info-container b {
	color: var(--gold);
	font-weight: 600;
	display: inline-block;
	min-width: 140px;
}

.info-container > div {
	margin: 20px 0;
	padding: 15px;
	background: rgba(0, 0, 0, 0.2);
	color: #ddd;
}

.image-container {
	margin-top: 30px;
	text-align: center;
}

.image-container img {
	max-width: 80%;
	filter: drop-shadow(2px 4px 6px black);
	transition: transform 0.3s ease;
}

.image-container img:hover {
	transform: scale(1.03);
}

/* ===== Űrlap ===== */
.form-container {
	flex: 1;
	background: linear-gradient(145deg, rgba(44, 8, 72, 0.9), rgba(74, 30, 110, 0.9));
	border-radius: 25px;
	padding: 40px;
	box-shadow: var(--shadow);
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(212, 175, 55, 0.2);
	backdrop-filter: blur(10px);
}

.form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--purple-light), var(--accent), var(--purple-light));

}

.form-container h2, .info-container h2 {
	font-family: 'Playfair Display', serif;
	font-size: 2.2rem;
	background: linear-gradient(to right, #fff, var(--gold));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin-bottom: 30px;
	position: relative;
	z-index: 1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.form-container form {
	position: relative;
	z-index: 1;
}

.form-container label {
	display: block;
	margin: 20px 0 8px;
	color: var(--gold);
	font-weight: 600;
	font-size: 0.95rem;
}

.form-container input[type="text"],
.form-container input[type="email"] {
	width: 100%;
	padding: 18px 20px;
	border: 2px solid rgba(212, 175, 55, 0.3);
	border-radius: 12px;
	font-size: 1rem;
	transition: all 0.3s ease;
	background: rgba(0, 0, 0, 0.3);
	color: #fff;
}

.form-container input[type="text"]:focus,
.form-container input[type="email"]:focus {
	outline: none;
	border-color: var(--gold);
	background: rgba(0, 0, 0, 0.5);
	box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.form-container input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin-right: 10px;
	accent-color: var(--gold);
}

.form-container a {
	color: var(--gold);
	text-decoration: none;
	font-weight: 600;
}

.form-container a:hover {
	text-decoration: underline;
	color: var(--silver);
}

.form-container button {
	background: linear-gradient(135deg, var(--purple-medium), var(--purple-light));
	color: white;
	border: none;
	padding: 20px 45px;
	font-size: 1.2rem;
	font-weight: 600;
	border-radius: 50px;
	cursor: pointer;
	width: 100%;
	transition: all 0.3s ease;
	margin-top: 20px;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
	position: relative;
	overflow: hidden;
	border: 2px solid var(--gold);
	text-transform: uppercase;
	letter-spacing: 1px;
}

.form-container button::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.5s ease;
}

.form-container button:hover::before {
	left: 100%;
}

.form-container button:hover {
	transform: translateY(-3px);
	box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
	background: linear-gradient(135deg, var(--purple-light), var(--purple-medium));
}

footer a {
	color: var(--gold);
}

/* ===== Animációk ===== */
@keyframes slideInLeft {
	from {
		opacity: 0;
		transform: translateX(-50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes slideInRight {
	from {
		opacity: 0;
		transform: translateX(50px);
	}
	to {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes float {
	0%, 100% {
		transform: translateY(0) rotate(3deg);
	}
	50% {
		transform: translateY(-20px) rotate(3deg);
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ===== Reszponzív design ===== */
@media (max-width: 1024px) {
	.header {
		flex-direction: column;
		text-align: center;
		gap: 40px;
	}
	
	.header-content h1 {
		font-size: 2.8rem;
	}

	
	.info-form-container {
		flex-direction: column;
	}
	
	.content-with-image {
		flex-direction: column;
		text-align: center;
	}
	
	.gezakep1 {
		width: 100%;
 
	}
}

@media (max-width: 768px) {
	.container {
		padding: 15px;
	}
	
	.header,
	.content-section,
	.info-container,
	.form-container {
		padding: 30px;
		border-radius: 20px;
	}
	
	.header-content h1 {
		font-size: 2.2rem;
	}
	
	.content-text h1 {
		font-size: 2.2rem;
	}
	
	.header img {
		width: 80%;
		height: unset;
		transform: rotate(0deg);
	}
	
	.image-container img {
		max-width: 100%;
	}
}

@media (max-width: 480px) {
	.header-content h1 {
		font-size: 1.8rem;
	}
	
	.content-text h1,
	.form-container h2 {
		font-size: 1.8rem;
	}
	
	.header,
	.content-section,
	.info-container,
	.form-container {
		padding: 20px;
	}
	
	.form-container h2 {
		font-size: 1.6rem;
	}
}

/* ===== Egyéb effektek ===== */
.content-section,
.info-container,
.form-container {
	animation: fadeIn 0.8s ease-out;
}

/* ===== Egyedi görgetősáv ===== */
::-webkit-scrollbar {
	width: 12px;
}

::-webkit-scrollbar-track {
	background: rgba(44, 8, 72, 0.5);
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(to bottom, var(--gold), var(--purple-light));
	border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
	background: linear-gradient(to bottom, var(--silver), var(--purple-medium));
}

/* ===== Speciális címek ===== */
.program-title {
	text-align: center;
	margin-bottom: 20px;
	position: relative;
}

.program-title span {
	display: inline-block;
	background: linear-gradient(145deg, rgba(44, 8, 72, 0.9), rgba(74, 30, 110, 0.9));
	padding: 10px 30px;
	border-radius: 50px;
	border: 2px solid var(--gold);
	font-weight: 700;
	color: var(--gold);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ===== Fontos információk ===== */
.important-note {
	background: linear-gradient(145deg, rgba(231, 76, 60, 0.2), rgba(192, 57, 43, 0.2));
	border-left: 5px solid var(--secondary);
	padding: 20px;
	border-radius: 10px;
	margin: 20px 0;
	color: #fff;
}

.important-note strong {
	color: #ffcccb;
}
