/* ===== RESET ===== */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: "Segoe UI", Arial, sans-serif;
}

body {
	background: #f4f6f5;
	color: #222;
	overflow-x: hidden; /* ✅ prevent mobile horizontal scroll */
}

/* ===== HEADER ===== */
.main-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 18px;
	background: #ffffff;
	border-bottom: 4px solid #0a8f3c;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header-left {
	display: flex;
	align-items: center;
	gap: 10px;
}

.logo {
	height: 42px;
	width: auto;
}

.brand-title {
	font-size: 20px;
	font-weight: 700;
	color: #0a8f3c;
	letter-spacing: 1px;
}

/* ===== LOCATION BUTTON ===== */
.location-btn {
	background: #0a8f3c;
	color: #fff;
	border: none;
	padding: 8px 16px;
	border-radius: 30px;
	font-size: 14px;
	cursor: pointer;
	transition: background 0.3s, transform 0.2s;
}

.location-btn:hover {
	background: #b3040f;
	transform: translateY(-1px);
}

/* ===== CONTENT ===== */
.content {
	max-width: 1100px;
	margin: auto;
	padding: 18px;
}

/* ===== FLYER WRAPPER (NEW – MOBILE SAFE) ===== */
.flyer-wrapper {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* ===== FLAIR CARD ===== */
.flair-card {
	background: #fff;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Flyer Image */
.flair-card img,
.flyer-wrapper img {
	width: 100%;
	height: auto;
	aspect-ratio: 620 / 877;
	object-fit: cover;
	display: block;
	border-radius: 16px;
}

/* ===== FOOTER ===== */
.main-footer {
	background: #0a8f3c;
	color: #fff;
	text-align: center;
	padding: 14px;
	font-size: 14px;
	margin-top: 30px;
}

.main-footer a {
	color: #fff;
	font-weight: 600;
	text-decoration: none;
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollTopBtn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: #e30613;
	color: #fff;
	border: none;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	font-size: 22px;
	cursor: pointer;
	display: none;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	z-index: 999;
	transition: background 0.3s, transform 0.3s;
}

#scrollTopBtn:hover {
	background: #b3040f;
	transform: translateY(-3px);
}

/* ===== TABLET ===== */
@media (max-width: 768px) {
	.logo {
		height: 36px;
	}

	.brand-title {
		font-size: 18px;
	}

	.location-btn {
		font-size: 13px;
		padding: 7px 14px;
	}

	.content {
		padding: 14px;
	}
}

/* ===== MOBILE ===== */
@media (max-width: 480px) {
	.main-header {
		padding: 10px 12px;
	}

	.brand-title {
		font-size: 16px;
	}

	.location-btn {
		padding: 6px 12px;
		font-size: 12px;
	}

	.content {
		padding: 12px;
	}

	.flair-card,
	.flair-card img,
	.flyer-wrapper img {
		border-radius: 12px;
	}
}

/* ===== DESKTOP ENHANCEMENTS ===== */
@media (min-width: 992px) {
	/* Wider content area for large screens */
	.content {
		max-width: 1200px;
		padding: 24px;
	}

	/* Flyers look better in grid */
	.flyer-wrapper {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 26px;
	}

	/* Flyer cards feel premium */
	.flyer-wrapper img {
		border-radius: 18px;
		box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}

	/* Subtle hover effect (desktop only) */
	.flyer-wrapper img:hover {
		transform: translateY(-4px);
		box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
	}

	/* Header breathing space */
	.main-header {
		padding: 14px 28px;
	}

	.brand-title {
		font-size: 22px;
	}
}

/* ===== EXTRA LARGE SCREENS ===== */
@media (min-width: 1400px) {
	.flyer-wrapper {
		grid-template-columns: repeat(3, 1fr);
	}

	.content {
		max-width: 1400px;
	}
}
