:root {
	--primary-teal: #a2d2df;
	--accent-gold: #e8c38c;
	--dark-text: #2c3e50;
	--light-bg: #fdfdfd;
}

body {
	font-family: 'Inter', sans-serif;
	margin: 0;
	background-color: var(--light-bg);
	color: var(--dark-text);
	overflow-x: hidden;
	scroll-behavior: smooth;
	line-height: 1.4;
}

/* --- Animációk definíciója --- */
@keyframes float {
	0% { transform: translate(0, 0) rotate(0deg); }
	50% { transform: translate(20px, -20px) rotate(3deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes fadeInUp {
	from { opacity: 0; transform: translateY(40px); filter: blur(5px); }
	to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.reveal {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
	opacity: 1;
	transform: translateY(0);
}

/* --- Header --- */
	
header {
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 10%;
	position: relative;
}

.hero {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 60px;
	align-items: center;
	z-index: 2;
}
@media (max-width: 825px) {
	.hero { 
		margin-top: 20em;
	}
}

.rolam {
	display: block;
}
@media (max-width: 825px) {
	.rolam { 
		margin-top: 20em;
	}
}

.profile-wrapper { position: relative; }

.profile-img {
	width: 100%;
	max-width: 700px;
	animation: fadeInUp 1.2s ease-out forwards;
	position: relative;
	z-index: 2;
}

.blob {
	position: absolute;
	width: 130%; height: 130%;
	background: var(--primary-teal);
	top: -15%; left: -15%;
	border-radius: 50% 40% 60% 30% / 40% 50% 60% 50%;
	opacity: 0.2;
	z-index: 1;
	filter: blur(30px);
	animation: float 10s ease-in-out infinite;
}
@media (max-width: 825px) {
	.blob {
		width: 120%; height: 120%;
	}
}

.content h1 { font-size: 3.5rem; margin: 0; animation: fadeInUp 1s ease-out 0.2s forwards; opacity: 0; }
.content h2 { font-weight: 300; color: #666; animation: fadeInUp 1s ease-out 0.4s forwards; opacity: 0; }

/* --- Szekciók --- */
.section { padding: 100px 10%; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

.card, .service-card {
	background: white;
	padding: 40px;
	border-radius: 25px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.04);
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	border: 1px solid #f0f0f0;
}

.card:hover, .service-card:hover {
	transform: translateY(-12px) rotate(1deg);
	box-shadow: 0 20px 50px rgba(162, 210, 223, 0.3);
	border-color: var(--primary-teal);
}

.cta-button {
	display: inline-block;
	margin-top: 25px;
	padding: 15px 35px;
	background: var(--dark-text);
	color: white;
	text-decoration: none;
	border-radius: 50px;
	transition: 0.3s;
}

.cta-button:hover { background: var(--primary-teal); color: var(--dark-text); transform: scale(1.05); }

/* --- Form --- */
.contact-form { display: grid; gap: 15px; }
.contact-form input, textarea { padding: 15px; border-radius: 12px; border: 1px solid #ddd; font-family: inherit; }
		
.back-to-hub {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* Üveg hatás */
    border: 1px solid var(--teal);
    border-radius: 30px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.back-to-hub:hover {
    transform: translateX(5px);
    background: white;
    box-shadow: 0 8px 25px rgba(162, 210, 223, 0.3);
}

.home-icon { font-size: 1.2rem; }

/* Mobilon csak a házikó látszódjon, hogy ne foglaljon sok helyet */
@media (max-width: 600px) {
    .home-text { display: none; }
    .back-to-hub { padding: 10px; border-radius: 50%; }
}



.skill-tag {
	display: inline-block;
	background: #eee;
	padding: 5px 12px;
	border-radius: 15px;
	font-size: 0.8rem;
	margin: 3px;
}
.highlight { color: #2c5e6d; font-weight: bold; }



.services-section {
	padding: 100px 10%;
	background-color: #fff;
}

.section-title {
	text-align: center;
	font-size: 2.5rem;
	margin-bottom: 60px;
	position: relative;
}

.section-title::after {
	content: '';
	position: absolute;
	bottom: -15px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 4px;
	background: var(--primary-teal);
	border-radius: 2px;
}

.services-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 40px;
}

.service-card {
	padding: 40px;
	border-radius: 25px;
	background: #fdfdfd;
	border: 1px solid #eee;
	transition: all 0.4s ease;
	text-align: center;
}

.service-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 45px rgba(162, 210, 223, 0.25);
	border-color: var(--primary-teal);
}

.service-icon {
	font-size: 3rem;
	margin-bottom: 20px;
	display: block;
}

.service-card h3 {
	font-size: 1.4rem;
	margin-bottom: 15px;
	color: var(--dark-text);
}

.service-card p {
	color: #777;
	line-height: 1.7;
	font-size: 0.95rem;
}




.timeline-section { padding: 100px 10%; background: #fff; }

.timeline {
	position: relative;
	max-width: 1000px;
	margin: 0 auto;
}

/* A középső vonal */
.timeline::after {
	content: '';
	position: absolute;
	width: 4px;
	background-color: var(--primary-teal);
	top: 0; bottom: 0;
	left: 50%;
	margin-left: -2px;
	border-radius: 10px;
	opacity: 0.3;
}

.timeline-item {
	padding: 10px 40px;
	position: relative;
	width: 50%;
	box-sizing: border-box;
}

/* A kis körök a vonalon */
.timeline-item::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	right: -10px;
	background-color: white;
	border: 4px solid var(--primary-teal);
	top: 20px;
	border-radius: 50%;
	z-index: 1;
	transition: 0.3s;
}

.right::after { left: -10px; }

.left { left: 0; text-align: right; }
.right { left: 50%; }

.timeline-content {
	padding: 20px 30px;
	background: #fdfdfd;
	border-radius: 20px;
	box-shadow: 0 5px 15px rgba(0,0,0,0.03);
	border: 1px solid #f0f0f0;
	transition: 0.3s;
}

.timeline-item:hover .timeline-content {
	transform: scale(1.05);
	border-color: var(--primary-teal);
}

.timeline-item:hover::after {
	background-color: var(--primary-teal);
	transform: scale(1.3);
}

.date {
	font-weight: bold;
	color: var(--primary-teal);
	display: block;
	margin-bottom: 5px;
}

.timeline-content h3 { margin: 0; font-size: 1.2rem; }
.timeline-content h4 { margin: 5px 0; font-weight: 400; color: #777; font-size: 0.9rem; }

/* Mobil nézet: a vonal bal oldalra kerül */
@media screen and (max-width: 768px) {
	.timeline::after { left: 31px; }
	.timeline-item { width: 100%; padding-left: 70px; padding-right: 25px; text-align: left; }
	.timeline-item::after { left: 21px; }
	.right { left: 0; }
}



/* Galéria kártyák */
.card {
	background: white;
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 10px 30px rgba(0,0,0,0.03);
	border-left: 5px solid var(--primary-teal);
	transition: transform 0.3s;
}

.card:hover { transform: translateY(-10px); }

.skills-container { max-width: 800px; margin: 0 auto; }
.skill-bar-wrapper { margin-bottom: 25px; }
.skill-bar-wrapper span { display: block; margin-bottom: 8px; font-weight: 500; }
.skill-bar { width: 100%; height: 10px; background: #eee; border-radius: 10px; overflow: hidden; }
.skill-fill { 
	height: 100%; 
	background: linear-gradient(90deg, var(--primary-teal), var(--accent-gold)); 
	border-radius: 10px;
	transition: width 2s cubic-bezier(0.1, 0, 0.2, 1);
}

.info-card {
	text-align: center;
	padding: 30px;
	background: white;
	border-radius: 20px;
	transition: 0.3s;
}
.info-icon { font-size: 2.5rem; display: block; margin-bottom: 15px; }

.download-btn {
	display: inline-block;
	padding: 15px 30px;
	border: 2px dashed var(--primary-teal);
	color: var(--dark-text);
	text-decoration: none;
	border-radius: 12px;
	font-weight: bold;
	transition: 0.3s;
}
.download-btn:hover { background: var(--primary-teal); border-style: solid; }

/* Nyomtatási nézethez, hogy a PDF jól nézzen ki */
@media print {
	.cta-button, .download-btn, .blob { display: none; }
	body { background: white; }
	.section { padding: 20px 0; }
}



.contact-section {
	padding: 100px 10%;
	background: linear-gradient(180deg, #fdfdfd 0%, #f4f7f8 100%);
}

.contact-container {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 60px;
	max-width: 1100px;
	margin: 0 auto;
}

.contact-info h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: var(--dark-text);
}

.method-item {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 20px 0;
	font-size: 1.1rem;
}

.method-icon {
	font-size: 1.5rem;
	background: var(--primary-teal);
	padding: 10px;
	border-radius: 12px;
	line-height: 1;
}

.contact-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: white;
	padding: 40px;
	border-radius: 25px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form input, .contact-form textarea {
	padding: 15px;
	border: 1px solid #ddd;
	border-radius: 10px;
	font-family: inherit;
	font-size: 1rem;
}

.contact-form input:focus, .contact-form textarea:focus {
	outline: none;
	border-color: var(--primary-teal);
}

.submit-btn {
	background: var(--dark-text);
	color: white;
	padding: 15px;
	border: none;
	border-radius: 10px;
	font-weight: bold;
	cursor: pointer;
	transition: all 0.3s;
}

.submit-btn:hover {
	background: var(--primary-teal);
	color: var(--dark-text);
}


.facebook-icon svg {
    width: 40px; /* Itt állíthatod a méretét */
    height: 40px;
    fill: var(--teal); /* Facebook kék */
    transition: transform 0.3s ease, fill 0.3s ease;
}

.facebook-icon:hover svg {
    transform: scale(1.1);
    fill: #1877F2;
}

.email-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--teal); /* Gmail-es piros vagy használj sötétszürkét: #555 */
    transition: transform 0.3s ease, fill 0.3s ease;
}

.email-icon:hover svg {
    transform: scale(1.1) rotate(-5deg); /* Egy pici játékos elfordulás hoverre */
    fill: #D44638;
}

.signal-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--teal); /* Signal kék */
    transition: transform 0.3s ease, fill 0.3s ease;
}

.signal-icon:hover svg {
    transform: scale(1.1);
    fill: #2a62c7;
}




.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding: 10px;
}

.tool-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-main);
    transition: 0.3s;
}

.tool-card img {
    width: 30px;
    height: 30px;
    margin-bottom: 10px;
}

@keyframes gemini-pulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 5px rgba(66, 133, 244, 0.5)); }
    50% { transform: scale(1.15); filter: drop-shadow(0 0 15px rgba(155, 114, 203, 0.8)); }
}

.tool-card:hover {
    transform: translateY(-5px);
}