/**
 * SWEB — Hero homepage [sweb_hero] + flyere [sweb_flyers]
 * Calibrat din Figma (#16246:14601).
 */
.sweb-hero {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	min-height: 760px;
	padding: clamp(96px, 81.33px + 4.074vw, 140px) clamp(16px, 13.33px + 0.7407vw, 24px) 48px;
	background-size: cover;
	background-position: center;
	overflow: hidden;
}
.sweb-hero__overlay {
	position: absolute;
	inset: 0;
	background: rgba(78, 34, 11, 0.3);
	box-shadow: inset 0 0 72px 0 rgba(244, 160, 115, 1);
	backdrop-filter: blur(2px);
	z-index: 0;
}
.sweb-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 32px;
	width: 100%;
	max-width: 1004px;
}
.sweb-hero__heading {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	text-align: center;
}
.sweb-hero__title {
	margin: 0;
	font-family: 'Google Sans Flex', 'Inter', sans-serif;
	font-weight: 600;
	font-size: clamp(32px, 21.33px + 2.963vw, 64px);
	line-height: 1;
	letter-spacing: -0.02em;
	color: #FEFAF0;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}
.sweb-hero__subtitle {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-weight: 500;
	font-size: clamp(14px, 12.67px + 0.3704vw, 18px);
	color: #FEFAF0;
	text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}
.sweb-hero__content { width: 100%; }

/* Flyere de brand */
.sweb-flyers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
	width: 100%;
}
.sweb-flyer {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 324px;
	min-height: 300px;
	padding: 24px 16px 16px;
	border-radius: 8px;
	background: #FEFAF0;
	background-size: cover;
	background-position: center;
	text-decoration: none;
	overflow: hidden;
	/* Miscarea la hover (scale) e in motion.css — fara lift/umbra. */
	transition: box-shadow 0.15s ease, scale 0.15s ease;
}
.sweb-flyer__bar {
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 8px;
	background: var(--sweb-c-primary, #D35A0C);
	z-index: 2;
}
.sweb-flyer__logo {
	max-width: 220px;
	max-height: 88px;
	width: auto;
	height: auto;
	object-fit: contain;
	filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
	z-index: 1;
}
.sweb-flyer__cta { z-index: 1; }

/* Fundaluri per brand pe flyer */
.sweb-flyer.sweb-brand--follies { background-image: url('../../img/bg-follies.jpg'); }
.sweb-flyer.sweb-brand--americana { background-image: url('../../img/bg-americana.jpg'); background-color: #161616; }
.sweb-flyer.sweb-brand--jerry { background: #FFFFFF; border: 3px solid #1A1A1A; }
.sweb-flyer.sweb-brand--jerry .sweb-flyer__bar { display: none; }

/* Card mare de oferte (1004×392) */
.sweb-flyer-offers {
	position: relative;
	width: 100%;
	max-width: 1004px;
	min-height: 300px;
	margin-top: 8px;
	padding: 40px;
	display: flex;
	align-items: center;
	background: #FEFAF0;
	border: 1px solid #DFD5CF;
	border-radius: 16px;
	box-shadow: inset 0 0 48px rgba(244, 160, 115, 0.6);
	overflow: hidden;
}
.sweb-flyer-offers__body {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: 60%;
}
.sweb-flyer-offers__title {
	margin: 0;
	font-family: 'Google Sans Flex', 'Inter', sans-serif;
	font-weight: 600;
	font-size: 32px;
	line-height: 1.1;
	color: #4E220B;
}
.sweb-flyer-offers__text {
	margin: 0;
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	color: #8D6C5A;
}
.sweb-flyer-offers .sweb-btn { align-self: flex-start; }

@media (max-width: 1024px) {
	.sweb-hero { min-height: 640px; }
}
@media (max-width: 560px) {
	.sweb-flyer { width: 100%; max-width: 340px; }
}
