/* ---
   KISCSILLAG KUTYAKOZMETIKA - PRÉMIUM DIZÁJN
   Verzió: 7.9 (VÉGLEGES MOBIL JAVÍTÁS: Kiemelt Információ Box)
--- */

/* ==== PRELOADER STÍLUSOK ==== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--sotetkek);
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 1;
	transition: opacity 0.5s ease-out; 
}
.spinner {
	width: 60px;
	height: 60px;
	border: 5px solid var(--arany);
	border-top-color: var(--sotetkek);
	border-radius: 50%;
	animation: spin 1s linear infinite;
}
@keyframes spin {
	to { transform: rotate(360deg); }
}
/* ==== PRELOADER VÉGE ==== */


/* --- 1. Alapbeállítások és Színpaletta --- */
:root {
	--sotetkek: #192b41;
	--arany: #E7C67F;
	--arany-csillogo: #FFD700;
	
	--hatter: var(--sotetkek);
	--kartya-hatter: #ffffff;
	--szoveg-sotet: #333;
	--szoveg-vilagos: #f0f5fa;
	
	--font-cimsor: 'Poppins', sans-serif;
	--font-szoveg: 'Montserrat', sans-serif;
	--font-hero: 'Playfair Display', serif;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--font-szoveg);
	margin: 0;
	padding: 0;
	background-color: var(--hatter);
	color: var(--szoveg-vilagos);
	line-height: 1.8;
	font-size: 17px;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden; 
}

.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

/* --- 2. Fejléc és Logó --- */
.site-header {
	background: var(--kartya-hatter);
	padding: 20px 0;
	box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
	position: sticky;
	top: 0;
	z-index: 1000;
}
.site-header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.logo a {
	display: flex;
	align-items: center;
	text-decoration: none;
}
.logo-image {
	height: 70px;
	width: auto;
	margin-right: 15px;
	transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.logo-text {
	font-family: var(--font-cimsor);
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--sotetkek);
	letter-spacing: -0.5px;
}
.logo a:hover .logo-image {
	transform: rotate(-10deg) scale(1.1);
}

/* --- 3. Navigáció --- */
.main-nav ul {
	margin: 0;
	padding: 0;
	list-style: none;
	display: flex;
}
.main-nav li {
	margin-left: 35px;
}
.main-nav a {
	text-decoration: none;
	color: var(--szoveg-sotet);
	font-family: var(--font-cimsor);
	font-weight: 600;
	font-size: 1.05rem;
	padding: 5px 0;
	position: relative;
	display: flex;
	align-items: center;
}
.main-nav a::before {
	content: '⭐';
	display: inline-block;
	font-size: 10px;
	margin-right: 8px;
	opacity: 0;
	transform: scale(0.5) rotate(-30deg);
	transition: opacity 0.3s ease, transform 0.3s ease;
}
.main-nav a:hover::before,
.main-nav a.active::before {
	opacity: 1;
	transform: scale(1) rotate(0deg);
}
.main-nav a:hover,
.main-nav a.active {
	color: var(--sotetkek);
}
.nav-toggle, #nav-toggle-cb {
	display: none;
	cursor: pointer;
	font-size: 2rem;
	color: var(--sotetkek);
	z-index: 1100;
}

/* --- 4. Általános Oldalcímek (Galéria, Kapcsolat, stb.) --- */
.container > h1 {
	font-family: var(--font-hero);
	font-size: 3.5rem;
	font-weight: 700;
	text-align: center;
	padding-top: 40px;
	margin-bottom: 20px;
	
	background: linear-gradient(45deg, var(--arany), var(--arany-csillogo), var(--arany));
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	animation: shine 4s linear infinite;
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3))
			drop-shadow(0 0 15px rgba(231, 198, 127, 0.5));
}

/* Általános bevezető szövegek (az aloldalakon) */
.container > p {
	font-size: 1.2rem;
	color: #cdd8e3;
	font-weight: 400;
	margin-bottom: 40px;
	text-align: center;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}


/* --- 5. Főoldali "Hero" Szekció --- */
.page-title-area {
	padding: 40px 0 60px 0;
	text-align: center;
}
.page-title-area h1 {
	font-family: var(--font-hero);
	font-size: 4.5rem;
	margin-bottom: 20px;
	
	background: linear-gradient(45deg, var(--arany), var(--arany-csillogo), var(--arany));
	background-size: 200% auto;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	animation: shine 4s linear infinite;
	
	filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3))
			drop-shadow(0 0 15px rgba(231, 198, 127, 0.5));
}

@keyframes shine {
	to { background-position: 200% center; }
}

.page-title-area p.lead {
	font-size: 1.4rem;
	color: #cdd8e3; 
	font-weight: 500;
	margin-bottom: 30px;
}

/* --- 6. Gombok (Pulzálás) --- */
.button-primary {
	display: inline-block;
	background: var(--arany-csillogo);
	color: #333;
	padding: 16px 40px;
	font-size: 1.1rem;
	font-family: var(--font-cimsor);
	font-weight: 700;
	text-decoration: none;
	border-radius: 50px;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	animation: pulse 2s infinite;
}
@keyframes pulse {
	0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7); }
	70% { box-shadow: 0 0 0 15px rgba(255, 215, 0, 0); }
	100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.button-primary:hover {
	background-color: var(--arany);
	transform: translateY(-3px) scale(1.05);
	animation: none;
}

/* --- 7. Tartalom (Kártyák) --- */
.site-content {
	padding: 0; 
}
.card {
	background: var(--kartya-hatter);
	color: var(--szoveg-sotet);
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
	padding: 40px;
	margin-bottom: 30px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: translateY(-7px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 0 30px rgba(255, 215, 0, 0.5);
}

.card a {
	color: var(--sotetkek);
	font-weight: 600;
	text-decoration: underline;
	text-decoration-color: var(--arany);
	
	word-break: break-word;
	overflow-wrap: anywhere;
}
.card a:hover {
	color: #000;
	text-decoration-color: var(--sotetkek);
}

/* KÁRTYA BELÉPŐ ANIMÁCIÓ */
.card-animated {
	opacity: 0;
	animation: slideInUp 0.8s ease-out forwards;
}
@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(50px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.container .card-animated:nth-of-type(1) {
	animation-delay: 0.1s;
}
.container .card-animated:nth-of-type(2) {
	animation-delay: 0.3s;
}
.container .card-animated:nth-of-type(3) {
	animation-delay: 0.5s;
}
.container .card-animated:nth-of-type(4) {
	animation-delay: 0.7s;
}
.container .card-animated:nth-of-type(5) {
	animation-delay: 0.9s;
}

/* ELEGÁNS H2 STÍLUS */
.card h2 {
	font-family: var(--font-cimsor);
	font-weight: 700;
	color: var(--sotetkek);
	position: relative;
	padding-bottom: 15px;
	margin-top: 0;
}
.card h2::after {
	content: '';
	display: block;
	width: 60px;
	height: 4px;
	background: var(--arany);
	position: absolute;
	bottom: 0;
	left: 0;
}

/* --- KAPCSOLAT LISTA (ÚJ, RUGALMAS STÍLUS) --- */
.contact-list {
	display: flex;
	flex-direction: column;
	gap: 15px; 
	margin-bottom: 30px; /* Hely a figyelmeztető doboz felett */
}

.contact-row {
	display: flex;
	align-items: center; 
	gap: 15px;
	font-size: 1.1rem;
}

.contact-icon {
	flex-shrink: 0; 
	color: var(--arany); /* Ikon legyen arany */
	font-size: 1.4rem; 
	width: 30px; 
	text-align: center;
}

.contact-text,
.contact-link {
	font-weight: 600;
	color: var(--sotetkek);
	min-width: 0; /* KRITIKUS: Engedi a szöveg tördelését flex containerben */
}

.email-link {
	word-break: break-all;      
}

/* --- FIGYELMEZTETŐ DOBOZ STÍLUSA (booking-notice) --- */
.notice-card {
	background-color: #fffbeb;
	border-left: 5px solid var(--arany-csillogo);
	border: 1px solid var(--arany);
	padding: 20px;
	border-radius: 8px;
	margin-top: 20px; /* Hely a kontakt lista alatt */
}

.booking-notice p {
	font-size: 0.95rem; 
	color: var(--szoveg-sotet);
	margin: 5px 0;
	text-align: left; 
	line-height: 1.4;
}

.booking-notice p:last-child {
	margin-bottom: 0;
}
/* --- KAPCSOLAT LISTA VÉGE --- */


/* --- 8. GALÉRIA (GD NÉLKÜL, SKELETON) --- */
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 20px;
}
.gallery-item {
	display: block;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 3px solid transparent;
	height: 280px;
	
	/* SKELETON LOADER (amíg a "lazy" kép töltődik) */
	background-color: #33485f;
	animation: skeleton-pulse 1.5s infinite ease-in-out;
}
@keyframes skeleton-pulse {
	0%    { background-color: #2c3e50; }
	50%   { background-color: #34495e; }
	100% { background-color: #2c3e50; }
}
.gallery-item:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
	border-color: var(--arany);
	z-index: 10;
}
.gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* --- 9. Árlista és egyéb oldalak --- */
.price-list { list-style: none; padding: 0; margin: 0; }
.price-list li {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 15px 0;
	border-bottom: 1px dotted #ccc;
	align-items: center;
}
.price-list li strong {
	flex-basis: 65%;
	font-weight: 600;
	color: var(--szoveg-sotet);
	font-size: 1.05rem;
}
.price-list li span {
	flex-basis: 30%;
	text-align: right;
	color: var(--sotetkek);
	font-family: var(--font-cimsor);
	font-weight: 700;
	font-size: 1.1rem;
}

.map-container {
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	border: 3px solid var(--arany);
}

/* --- 10. Lábléc (Sötét) --- */
.site-footer {
	background-color: var(--sotetkek);
	color: #bdc3c7;
	padding: 60px 0 30px;
	margin-top: 50px;
	font-size: 16px;
	border-top: 4px solid var(--arany);
}
.site-footer a { color: var(--arany); }
.site-footer a:hover { color: var(--arany-csillogo); }
.footer-widgets {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 30px;
	padding-bottom: 20px;
	border-bottom: 1px solid #3d5066;
}
.footer-widgets .widget { width: 48%; margin-bottom: 20px; }
.footer-widgets h3 {
	font-family: var(--font-cimsor);
	font-weight: 700;
	color: var(--feher);
	font-size: 1.4rem;
}
.footer-bottom { text-align: center; font-size: 14px; color: #888; padding-top: 20px; }

/* --- 11. EMAIL VÉDŐ LINK STÍLUSA --- */
.reveal-email-link {
	font-weight: 600;
	color: var(--arany) !important;
	text-decoration: underline;
	text-decoration-style: dotted;
	cursor: pointer;
	transition: color 0.3s ease;
	word-break: break-word; 
}
.reveal-email-link:hover {
	color: var(--arany-csillogo) !important;
}
.reveal-email-link i {
	margin-right: 5px;
	font-size: 0.9em;
}
.card .reveal-email-link {
	color: var(--sotetkek) !important;
	text-decoration-color: var(--sotetkek);
}
.card .reveal-email-link:hover {
	color: #000 !important;
	text-decoration-color: #000;
}

/* --- 12. MOBILBARÁT JAVÍTÁSOK --- */
@media (max-width: 992px) {
	body { font-size: 16px; }
	.logo-text {
		font-size: 1.2rem;
	}
}
@media (max-width: 768px) {
	.logo-text {
		display: none;
	}
	.logo-image {
		height: 50px;
		width: auto;
		margin-right: 0;
	}
	.site-header {
		padding: 15px 0;
	}
	
	.main-nav {
		display: none;
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		background: var(--kartya-hatter);
		box-shadow: 0 10px 15px rgba(0,0,0,0.05);
	}
	.main-nav ul { flex-direction: column; }
	.main-nav li { margin: 0; text-align: center; border-bottom: 1px solid #f9f9f9; }
	.main-nav a { display: block; padding: 15px; width: 100%; }
	.main-nav a::before { margin-right: 10px; opacity: 1; transform: scale(0.9); }
	
	.nav-toggle { display: block; }
	#nav-toggle-cb:checked ~ .main-nav { display: block; }
	
	.page-title-area { padding: 40px 0; }
	.page-title-area h1 { font-size: 2.8rem; }
	.page-title-area p.lead { font-size: 1.1rem; }
	
	.container > h1 {
		font-size: 2.5rem;
		padding-top: 40px;
		word-wrap: break-word; 
	}
	.container > p {
		font-size: 1rem;
	}
	
	h1 { font-size: 1.8rem; }
	.card h2 { font-size: 1.5rem; }
	.gallery-grid { grid-template-columns: 1fr; }
	.footer-widgets .widget { width: 100%; }
	
	/* KÁRTYA ÉS KONTAKT JAVÍTÁSA */
	.card { 
		padding: 20px 15px; /* Kisebb belső margó mobilra */
	}

	.contact-row {
		gap: 10px; 
	}

	.contact-icon {
		font-size: 1.2rem;
		width: 25px; /* Kicsit keskenyebb ikon terület */
	}

	.contact-text, 
	.contact-link {
		font-size: 0.95rem; /* Kisebb betűméret mobilra */
	}
	
	.email-link {
		font-size: 0.85rem; /* Kényszerítjük az e-mailt a legkisebb méretre */
	}

	.booking-notice p {
		font-size: 0.85rem; /* Még kisebb betű a figyelmeztetésben mobilra */
	}
	
	.price-list li strong {
		flex-basis: 100%;
		margin-bottom: 5px;
	}
	.price-list li span {
		flex-basis: 100%;
		text-align: left;
	}
}

/* --- GYAKORI KÉRDÉSEK (FAQ) --- */
.faq-item {
	border-bottom: 1px solid #eee;
	margin-bottom: 10px;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
	padding: 15px 0;
	cursor: pointer;
	font-weight: 600;
	color: var(--sotetkek);
	list-style: none; /* A kis nyilacska eltüntetése alapból */
	position: relative;
	padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
	content: '+';
	position: absolute;
	right: 0;
	font-weight: bold;
	color: var(--arany);
}
.faq-item[open] summary::after { content: '-'; }
.faq-item p {
	margin-top: 0;
	margin-bottom: 20px;
	color: #555;
	font-size: 0.95rem;
	line-height: 1.6;
	padding-left: 10px;
	border-left: 3px solid var(--arany);
}

/* --- COOKIE SÁV (ÍGY TAKARJA KI A GOMBOT) --- */
.cookie-consent {
	display: none;
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	/* FONTOS: A háttérszínnek tömörnek kell lennie (nem átlátszó), hogy eltakarja a gombot */
	background-color: var(--sotetkek); 
	color: #fff;
	padding: 15px 0;
	border-top: 3px solid var(--arany);
	box-shadow: 0 -5px 20px rgba(0,0,0,0.4);
	
	/* FONTOS: Ez legyen a legmagasabb szám, hogy mindent letakarjon */
	z-index: 9999999; 
}

.cookie-consent .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

.cookie-consent p { 
	margin: 0; 
	font-size: 0.9rem; 
	margin-right: 15px; 
	line-height: 1.4;
}

.cookie-consent a { 
	color: var(--arany); 
	text-decoration: underline; 
}

@media (max-width: 768px) {
	/* Mobilon egymás alá rendezzük, hogy szép magas legyen a sáv, 
	   így biztosan eltakarja a gombot */
	.cookie-consent .container {
		flex-direction: column;
		text-align: center;
		gap: 15px;
		padding-bottom: 10px; /* Extra hely alul */
	}
	
	.cookie-consent p {
		margin-right: 0;
		font-size: 0.95rem;
	}
	
	.cookie-consent button {
		width: 100%;
		display: block;
		padding: 12px;
		font-size: 1rem;
	}
}

/* --- MOBIL LEBEGŐ HÍVÁS GOMB --- */
.mobile-call-btn {
	display: none;
}
@media (max-width: 768px) {
	.mobile-call-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		position: fixed;
		bottom: 20px;
		right: 20px;
		background-color: #2ecc71;
		color: white;
		padding: 15px 25px;
		border-radius: 50px;
		font-weight: 700;
		text-decoration: none;
		box-shadow: 0 4px 15px rgba(0,0,0,0.3);
		font-family: var(--font-cimsor);
		animation: pulse 2s infinite;
		
		/* FONTOS: Ez legyen alacsonyabb, mint a süti sávé */
		z-index: 9000; 
	}
}