/* ==========================================================================
   Emergency House – Globális design rendszer
   A sablon újrahasznált design-osztályai (.btn, .eyebrow, .offer, .stats,
   .tags, .presspack), amit eddig Elementor custom CSS-ben tartottál.
   Betűtípusokat (Archivo + Anton) az Elementor tölti — itt csak a stílusok.
   ========================================================================== */

/* --- Gombok ------------------------------------------------------------- */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-family: 'Archivo', sans-serif;
	font-weight: 900;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	border-radius: 2px;
	border: 0;
	cursor: pointer;
	text-decoration: none;
	transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn--solid {
	background: #E8E51C;
	color: #0a0a0a;
}
.btn--solid:hover {
	background: #ffffff;
	color: #0a0a0a;
}

.btn--outline {
	border: 2px solid #ffffff2e;
	color: #ffffff;
}
.btn--outline:hover {
	border-color: #E8E51C;
	color: #E8E51C;
}

.btn--lg {
	font-size: 16px;
	padding: 17px 30px;
}

.btn--xl {
	font-family: 'Archivo', sans-serif;
	font-size: clamp( 16px, 1.8vw, 19px );
	padding: 20px 34px;
}

.btn--outline.btn--lg {
	padding: 15px 28px;
	font-weight: 800;
}

/* --- Eyebrow (sárga vonás + felirat) ------------------------------------ */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 14px;
	font-family: 'Archivo', sans-serif;
	margin-bottom: 26px;
}
.eyebrow__bar {
	width: 44px;
	height: 3px;
	background: #E8E51C;
	display: block;
}
.eyebrow__label {
	color: #E8E51C;
	font-weight: 800;
	font-size: 13px;
	letter-spacing: 3px;
	text-transform: uppercase;
}

/* --- Tags (címkék) ------------------------------------------------------ */
.tags {
	font-family: 'Archivo', sans-serif;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.tag {
	border: 1px solid #E8E51C;
	color: #E8E51C;
	font-weight: 800;
	font-size: 14px;
	letter-spacing: 1px;
	text-transform: uppercase;
	padding: 8px 16px;
	border-radius: 2px;
}

/* --- Statisztikák ------------------------------------------------------- */
.stats {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	font-family: 'Archivo', sans-serif;
}
.stat {
	background: #111;
	border: 1px solid #ffffff12;
	padding: 22px 20px;
	border-radius: 2px;
}
.stat--accent {
	background: #E8E51C;
	border: 0;
}
.stat__num {
	font-family: 'Anton', sans-serif;
	font-size: 40px;
	color: #E8E51C;
	line-height: 1;
}
.stat--accent .stat__num {
	color: #0a0a0a;
}
.stat__label {
	color: #9b9b95;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 8px;
}
.stat--accent .stat__label {
	color: #0a0a0a;
	font-weight: 800;
}

/* --- Offer (ajánlat-kártyák) -------------------------------------------- */
.offer {
	display: grid;
	grid-template-columns: repeat( 2, 1fr );
	gap: 16px;
	font-family: 'Archivo', sans-serif;
}
.offer__card {
	background: #111;
	border: 1px solid #ffffff12;
	border-left: 4px solid #E8E51C;
	padding: 34px 30px;
	border-radius: 2px;
	display: flex;
	gap: 22px;
	align-items: flex-start;
}
.offer__num {
	font-family: 'Anton', sans-serif;
	font-size: 36px;
	color: #E8E51C;
	line-height: 1;
}
.offer__text {
	color: #ffffff;
	font-size: 22px;
	font-weight: 900;
	line-height: 1.25;
}

/* --- Press pack gomb ---------------------------------------------------- */
.presspack__btn {
	white-space: nowrap;
	justify-self: start;
}
.presspack__icon {
	width: 22px;
	height: 22px;
}

svg.heart-icon {
    width: 15px;
    height: auto;
}

.site-credit {
    font-family: "Archivo", Sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.7em;
    color: #CFCFCA;
}

.site-credit a {
    color: #CFCFCA;
}

/* ==========================================================================
   Mobil — @media (max-width: 767px)
   ========================================================================== */
@media ( max-width: 767px ) {
	/* Offer: egy oszlop, kisebb kártyák. */
	.offer {
		grid-template-columns: 1fr;
	}
	
	
	.elementor-13 .elementor-element.elementor-element-335bf23 {

    height: 320px !important;
}
	.offer__card {
		padding: 26px 22px;
		gap: 16px;
	}
	.offer__num {
		font-size: 30px;
	}
	.offer__text {
		font-size: 18px;
	}

	/* Stats: marad 2 oszlop, de feszesebb. */
	.stat {
		padding: 18px 16px;
	}
	.stat__num {
		font-size: 32px;
	}

	/* Tags kisebb. */
	.tag {
		font-size: 13px;
		padding: 7px 13px;
	}

	/* Eyebrow szűkebb köz. */
	.eyebrow {
		gap: 10px;
		margin-bottom: 18px;
	}

	/* Gombok: teljes szélesség, középen (mobil-barát kattintási felület).
	   Ha valamelyik gombot inline-ben akarod tartani, vedd ki innen. */
	.btn--xl,
	.btn--lg,
	.btn--outline.btn--lg {
		width: 100%;
		justify-content: center;
	}
}
