:root {
	--gold: #d4a850;
	--dark-gold: #b98b35;
	--light-bg: #fff7e6;
	--medium-bg: #f3e2c2;
	--dark-text: #2b2b2b;
	--shadow: 0 15px 35px rgba(0,0,0,0.25);
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size:22px;
}

body {
	font-family: 'Cormorant Garamond', serif;
	background: radial-gradient(circle at top, var(--light-bg), var(--medium-bg));
	color: var(--dark-text);
	overflow-x: hidden;
	line-height: 1.6;
}

/* Lebegő hó */
.snow {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 100;
}

/* Karácsonyi fények */
.christmas-lights {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 20px;
	background: linear-gradient(90deg, 
		#ff0000, #ff8000, #ffff00, #80ff00, 
		#00ff00, #00ff80, #00ffff, #0080ff, 
		#0000ff, #8000ff, #ff00ff, #ff0080);
	background-size: 200% 100%;
	animation: lights 3s linear infinite;
	z-index: 99;
	opacity: 0.8;
}

@keyframes lights {
	0% { background-position: 0% 50%; }
	100% { background-position: 200% 50%; }
}

/* Animált címsor */
.hero {
	position: relative;
	text-align: center;
	padding: 140px 20px 100px;
	background: linear-gradient(rgb(167 60 60), rgb(65 0 0)), url(https://images.unsplash.com/photo-1513604771679-4f21a81cdb3a?auto=format&fit=crop&w=1350&q=80) center / cover no-repeat;
	color: white;
	text-shadow: 0 0 20px rgba(0,0,0,0.8);
	border-bottom: 4px solid var(--gold);
	overflow: hidden;
}

.hero h1 {
	font-size: 64px;
	margin: 0;
	letter-spacing: 2px;
	font-family: 'Playfair Display', serif;
	animation: fadeInUp 1.5s ease-out;
}

.hero h2 {
	font-size: 28px;
	font-weight: 300;
	margin-top: 20px;
	animation: fadeInUp 1.8s ease-out;
}

.hero-decoration {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 60px;
	background: var(--gold);
	border-radius: 50%;
	z-index: 10;
	box-shadow: 0 0 20px #000000;
}

/* Interaktív szekciók */
.section {
	max-width: 900px;
	margin: 80px auto;
	padding: 0 20px;
	font-size: 20px;
	position: relative;
}

.section h3 {
	font-size: 2em;
	color: var(--dark-gold);
	margin-bottom: 30px;
	text-align: center;
	font-family: 'Playfair Display', serif;
	position: relative;
	padding-bottom: 15px;
	text-shadow: 2px 4px 7px #a3a3a3;
}

.section h3::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 3px;
	background: var(--gold);
}

.highlight {
	background: linear-gradient(120deg, rgba(212, 168, 80, 0.2) 0%, rgba(212, 168, 80, 0) 100%);
	padding: 25px;
	border-radius: 12px;
	margin: 30px 0;
	border-left: 4px solid var(--gold);
	transition: transform 0.3s, box-shadow 0.3s;
}

.highlight:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow);
}

/* Könyvek szekció */
.books {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 50px;
	margin: 60px 0;
	flex-wrap: wrap;
}

.book-card {
	position: relative;
	width: 330px;
	max-width: 90vw;
	border-radius: 10px;
	overflow: hidden;
	transition: transform 0.5s, box-shadow 0.5s;
}

.book-card:hover {
	box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.book-card img {
	width: 100%;
	display: block;
}

.book-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.7);
	color: white;
	padding: 15px;
	transform: translateY(100%);
	transition: transform 0.3s;
}

.book-card:hover .book-overlay {
	transform: translateY(0);
}

/* Űrlap szekció */
.order-form {
	max-width: 900px;
	margin: 60px auto;
	padding: 0 20px;
}

.order-form h2 {
	text-align: center;
	font-size: 36px;
	margin-bottom: 40px;
	color: var(--dark-gold);
	font-family: 'Playfair Display', serif;
	text-shadow: 2px 4px 7px #a3a3a3;
}

.order-form h2 span {
	color: #c62828;
	text-decoration: underline;
	font-size:32px;
}

.form-box {
	border: 3px solid var(--gold);
	padding: 30px;
	border-radius: 14px;
	box-shadow: var(--shadow);
}

.form-group {
	margin-bottom: 20px;
}

label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
}

input, textarea {
    width: 100%;
    padding: 14px;
    font-size: 18px;
    border: 2px solid #b98b35;
    border-radius: 8px;
    font-family: inherit;
    transition: border 0.3s;
    background: #f8ebd1;
}

input:focus, textarea:focus {
	border-color: var(--gold);
	outline: none;
}

.package-options {
	margin: 30px 0;
}

.package-option {
	border: 2px solid #e3cb9a;
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 15px;
	cursor: pointer;
	transition: all 0.3s;
}

.package-option:hover {
	border-color: var(--gold);
	transform: scale(1.02);
}

.package-option.selected {
	border-color: var(--gold);
	background: rgba(212, 168, 80, 0.1);
	transform: scale(1.03);
}

.package-option h3 {
	font-size: 22px;
	margin-bottom: 10px;
	color: var(--dark-gold);
}

.package-option p {
	font-size: 18px;
	margin: 0;
}

.package-option span {
	color: #c62828;
	font-weight: bold;
}

button {
	width: 100%;
	padding: 16px;
	font-size: 26px;
	background: var(--gold);
	color: white;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
	font-family: inherit;
	font-weight: 600;
}

button:hover {
	background: var(--dark-gold);
	transform: translateY(-3px);
}

/* Karácsonyi szellem */
.ghost {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 80px;
	height: 100px;
	z-index: 1000;
	opacity: 0.8;
	transition: transform 0.5s;
	pointer-events: none;
}

.ghost:hover {
	transform: scale(1.2) rotate(10deg);
}

.ghost-body {
	position: absolute;
	width: 80px;
	height: 80px;
	background: white;
	border-radius: 50% 50% 0 0;
	box-shadow: 0 0 15px rgba(255,255,255,0.7);
}

.ghost-eyes {
	position: absolute;
	top: 30px;
	left: 15px;
	width: 50px;
	height: 20px;
	display: flex;
	justify-content: space-between;
}

.ghost-eye {
	width: 15px;
	height: 15px;
	background: #333;
	border-radius: 50%;
}

.ghost-mouth {
	position: absolute;
	top: 55px;
	left: 25px;
	width: 30px;
	height: 10px;
	background: #333;
	border-radius: 0 0 15px 15px;
}

.ghost-bottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 20px;
	display: flex;
	justify-content: space-between;
}

.ghost-wave {
	width: 16px;
	height: 16px;
	background: white;
	border-radius: 50%;
}

/* Animációk */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s, transform 0.8s;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

/* Lábléc */
.footer {
	text-align: center;
	padding: 40px;
	background: #fff2dc;
	margin-top: 60px;
	border-top: 2px solid var(--gold);
}

.order-confirmation {
    text-align: left;
    margin: 0 auto;
    width: auto;
    max-width: 460px;
}

.order-confirmation h2 {
    color: #4CAF50;
}

.order-confirmation ul {
    list-style-type: none;
    padding: 0;
}

.order-confirmation li {
    margin: 10px 0;
    font-size: 1.2em;
}

/* Reszponzív design */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 42px;
	}
	
	.hero h2 {
		font-size: 22px;
	}
	
	.section h3 {
		font-size: 28px;
	}
	
	.books {
		flex-direction: column;
		gap: 30px;
	}
	
	.book-card {
		margin: 0 auto;
	}
	
}
    
/* Karácsonyi csengettyű */
.bell {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 60px;
	height: 80px;
	z-index: 99999;
	opacity: 0.9;
	transition: transform 0.5s;
	pointer-events: none;
	animation: ring 3s ease-in-out infinite;
	transform-origin: top center;
}

.bell:hover {
	transform: scale(1.2);
}

.bell-top {
	position: absolute;
	top: 0;
	left: 25px;
	width: 10px;
	height: 15px;
	background: var(--gold);
	border-radius: 5px 5px 0 0;
}

.bell-body {
	position: absolute;
	top: 15px;
	left: 5px;
	width: 50px;
	height: 50px;
	background: var(--gold);
	border-radius: 50% 50% 30% 30%;
	box-shadow: 0 5px 15px rgba(212, 168, 80, 0.5);
}

.bell-clapper {
	position: absolute;
	top: 55px;
	left: 28px;
	width: 4px;
	height: 20px;
	background: #8B4513;
	border-radius: 2px;
	animation: clapper 3s ease-in-out infinite;
}

.bell-clapper-end {
	position: absolute;
	bottom: -5px;
	left: -3px;
	width: 10px;
	height: 10px;
	background: #8B4513;
	border-radius: 50%;
}

.bell-decoration {
	position: absolute;
	top: 25px;
	left: 15px;
	width: 30px;
	height: 30px;
	border: 2px solid #8B4513;
	border-radius: 50%;
	opacity: 0.3;
}

@keyframes ring {
	0%, 100% { transform: rotate(0deg); }
	25% { transform: rotate(5deg); }
	75% { transform: rotate(-5deg); }
}

@keyframes clapper {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(2px); }
	75% { transform: translateX(-2px); }
}

/* Reszponzív design */
@media (max-width: 768px) {
	.bell {
		width: 50px;
		height: 70px;
		bottom: 10px;
		right: 10px;
	}
	
	.bell-body {
		width: 40px;
		height: 40px;
		left: 5px;
	}
	
	.bell-top {
		left: 20px;
	}
	
	.bell-clapper {
		left: 23px;
	}
	
	.bell-decoration {
		left: 10px;
		width: 25px;
		height: 25px;
	}
}
	
.journey-section {
	padding: 80px 20px;
	text-align: center;
	max-width:900px;
	margin:0 auto;
}

.journey-section h2 {
	font-family: 'Playfair Display', serif;
	font-size: 42px;
	color: var(--dark-gold);
	margin-bottom: 20px;
	text-shadow: 2px 4px 7px #a3a3a3;
}

.journey-section .subtitle {
	font-size: 20px;
	color: var(--dark-text);
	margin-bottom: 60px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.journey-timeline {
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

/* Vonal az idővonal alatt */
.journey-timeline::before {
	content: '';
	position: absolute;
	top: 60px;
	left: 10%;
	right: 10%;
	height: 4px;
	background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
	z-index: 1;
}

.timeline-item {
	position: relative;
	width: 30%;
	text-align: center;
	z-index: 2;
	opacity: 0.6;
	transform: translateY(20px);
	transition: all 0.5s ease;
}

.timeline-item.active {
	opacity: 1;
	transform: translateY(0);
}

.timeline-item.completed .timeline-marker {
	background: var(--gold);
	transform: scale(1.1);
	box-shadow: 0 0 20px rgba(212, 168, 80, 0.5);
}

.timeline-item.completed .timeline-marker::after {
	content: '✓';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	color: white;
	font-weight: bold;
	font-size: 16px;
}

.timeline-marker {
	width: 80px;
	height: 80px;
	background: white;
	border: 3px solid var(--gold);
	border-radius: 50%;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	transition: all 0.3s ease;
	position: relative;
	z-index: 3;
}

.timeline-item:hover .timeline-marker {
	transform: scale(1.15);
	box-shadow: 0 10px 25px rgba(212, 168, 80, 0.3);
}

.timeline-item h4 {
	font-family: 'Playfair Display', serif;
	font-size: 22px;
	color: var(--dark-gold);
	margin-bottom: 10px;
}

.timeline-item p {
	font-size: 16px;
	color: var(--dark-text);
	line-height: 1.5;
}

/* Progress bar */
.timeline-progress {
	height: 6px;
	background: var(--gold);
	position: absolute;
	top: 60px;
	left: 10%;
	z-index: 2;
	transition: width 1s ease;
	border-radius: 3px;
}

/* Responsive design */
@media (max-width: 768px) {
	.journey-timeline {
		flex-direction: column;
		align-items: center;
		gap: 40px;
	}
	
	.journey-timeline::before {
		display: none;
	}
	
	.timeline-item {
		width: 100%;
		max-width: 300px;
	}
	
	.timeline-progress {
		display: none;
	}
}

/* Animációk */
@keyframes pulse {
	0% { transform: scale(1); }
	50% { transform: scale(1.05); }
	100% { transform: scale(1); }
}

.timeline-item.pulse {
	animation: pulse 2s infinite;
}

/* Gomb a következő lépéshez */
.next-step-btn {
	background: var(--gold);
	color: white;
	border: none;
	padding: 12px 30px;
	font-size: 18px;
	border-radius: 25px;
	cursor: pointer;
	margin-top: 40px;
	transition: all 0.3s ease;
	font-family: inherit;
}

.next-step-btn:hover {
	background: var(--dark-gold);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.next-step-btn:disabled {
	background: #ccc;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

.community-proof {
    text-align: center;
    margin: 60px 0; 
}

.community-proof h3 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--dark-gold);
    margin-bottom: 30px;
}

.live-testimonials {
    background: #fff3de;
    border-radius: 10px;
    padding: 20px;
    margin: 25px 0;
    border-left: 4px solid #d4a850;
    min-height: 80px;
    position: relative;
    overflow: hidden;
}

.testimonial-stream {
    position: relative;
    height: 60px;
}

.testimonial {
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.testimonial.active {
    opacity: 1;
    transform: translateY(0);
}

.testimonial .user {
    font-weight: bold;
    color: #a67612;
    margin-right: 10px;
}

.testimonial .message {
    color: #2b2b2b;
    font-style: italic;
}

.social-proof-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.proof-item {
    text-align: center;
    padding: 15px 25px;
    background: #fff3de;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    min-width: 180px;
}

.proof-item .count {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #a67612;
    margin-bottom: 5px;
}

.proof-item span:last-child {
    font-size: 14px;
    color: #666;
}

/* Animációk */
@keyframes countUp {
    from { transform: scale(1.2); }
    to { transform: scale(1); }
}

.count-up {
    animation: countUp 0.5s ease;
}

@media (max-width: 768px) {
    .social-proof-bar {
        gap: 20px;
    }
    
    .proof-item {
        min-width: 100px;
        padding: 12px 20px;
    }
}

/* Sticky CTA alap elrejtve */
.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background: #f9eac8f7;
    padding: 12px 15px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    text-align: center;
    transition: bottom 0.35s ease;
    z-index: 9999;
}

/* Gomb */
.sticky-cta button {
    width: 100%;
    color: #fff;
    border: none;
    padding: 15px;
    font-size: 25px;
    font-weight: 600;
    border-radius: 8px;
    font-family: 'Cormorant Garamond', serif;
    cursor: pointer;
	background:#5d4517;
}

/* Csak mobilon jelenjen meg */
@media (min-width: 768px) {
    .sticky-cta { display: none; }
}

@media (max-width: 768px) {
	p {
		text-align:justify;
		hyphens:auto;
	}	
}
	
footer a, .form-box a {
	text-decoration:none;
	color:var(--dark-gold);
	
}