html,
body {
	height: 100%;
	margin: 0
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  font-family: 'Poppins', sans-serif;
  color: #4a3b2d;
  /*background-color: #f9f4f0;*/
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(/img/background-image-2.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: -1;
  pointer-events: none;
}
header {
	padding: 20px 40px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #4a3b2d;
	flex-shrink: 0
}

.logo {
	font-size: 1.8rem;
	font-weight: 600
}

.logo h1 {
	font-size: 1.8rem
}

.mainlogo img {
	height: 60px;
	width: auto
}

.top-ad {
	display: none;
	background-color: #fff;
	color: #4a3b2d;
	padding: 10px 20px;
	border-radius: 6px;
	font-size: .9rem
}

main {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	padding: 20px;
	flex: 1;
	gap: 40px
}

.quote-image-wrapper {
	 flex: 1 0 auto;
  	height: 100dvh;           /* dynamic viewport height */
  	display: flex;
	position: relative;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto
}

.quote-box {
	position: absolute;
	top: 50%;
	left: 45%;
	transform: translate(-50%, -50%);
	background: rgb(255 255 255 / .9);
	padding: 30px;
	max-width: 500px;
	text-align: center;
	border-radius: 15px;
	z-index: 2;
	box-shadow: 0 4px 12px rgb(0 0 0 / .2)
}

.quote-box::before {
	content: '“';
	font-size: 5rem;
	color: #f6c453;
	position: absolute;
	top: -15px;
	left: 10px;
	font-family: serif
}

.quote-box::after {
	content: "";
	position: absolute;
	bottom: -20px;
	left: 60px;
	border-width: 12px;
	border-style: solid;
	border-color: #fff #fff0 #fff0 #fff0
}

.quote-box .end-quote {
	font-size: 5rem;
	color: #f6c453;
	position: absolute;
	bottom: -50px;
	right: 20px;
	font-family: serif
}

.quote {
	font-size: 2rem;
	font-style: italic;
	color: #5A3733;
	line-height: 1.4;
	margin: 0;
	padding: 20px 10px;
	transition: opacity 0.5s ease
}

.hero-image {
	position: absolute;
	top: 50%;
	left: 55%;
	transform: translate(-50%, -50%);
	width: 60%;
	height: auto;
	max-height: 90%;
	object-fit: contain;
	border-radius: 10px;
	z-index: 1;
	transition: transform 0.3s ease
}

.hero-image:hover {
	transform: translate(-50%, -50%) scale(1.05)
}

@media (min-width:1600px) {
	.quote-box {
		left: 35%
	}

	.hero-image {
		left: 65%
	}
}

@media (max-width:1200px) {
	.quote-box {
		left: 44%;
		max-width: 400px;
		padding: 30px
	}

	.hero-image {
		left: 56%;
		width: 65%;
		max-height: 75vh
	}
}

@media (max-width:900px) {
	.quote-image-wrapper {
		height: auto;
		padding-bottom: 20px;
		display: flex;
		flex-direction: column;
		align-items: center
	}

	.quote-box {
		position: relative;
		left: 0;
		transform: none;
		margin: 0 0 20px 0;
		width: 90%;
		max-width: 500px;
		z-index: 2
	}

	.hero-image {
		position: relative;
		left: 0;
		transform: none;
		width: 90%;
		height: auto;
		margin-top: 0;
		z-index: 1
	}

	.quote-box .end-quote {
		bottom: -40px;
		font-size: 3rem
	}
}

aside {
	width: 250px;
	margin: 0 auto
}

.side-ad {
	display: none;
	background-color: #f6c453;
	color: #4a3b2d;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	box-shadow: 0 3px 8px rgb(0 0 0 / .1)
}

section.info {
	padding: 20px 20px;
	text-align: center
}

section.info h2 {
	margin-bottom: 20px
}

section.info p {
	color: #5A3733;
	max-width: 700px;
	margin: 0 auto 30px;
	font-size: 1.3rem
}

footer {
	background-color: #5A3733;
	padding: 20px;
	font-family: Arial, sans-serif
}

.footer-container {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	max-width: 900px;
	margin: 0 auto;
	flex-wrap: wrap
}

.footer-column {
	flex: 1;
	min-width: 150px;
	margin: 10px
}

.footer-column p {
	color: #fff;
	line-height: 150%
}

.footer-column ul {
	list-style: none;
	padding: 0
}

.footer-column li {
	margin: 5px 5px
}

.footer-column a {
	text-decoration: none;
	color: #fff
}

.footer-column a:hover {
	text-decoration: underline
}

/* ----------------------------- */
/* 🍋 Lemon SMS Modal Styling    */
/* ----------------------------- */

.modal {
	display: none;
	position: fixed;
	z-index: 99999;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	backdrop-filter: blur(4px);
}

.modal-content {
	background: #fffbea;
	margin: 8% auto;
	padding: 25px;
	width: 90%;
	max-width: 450px;
	border-radius: 18px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
	text-align: center;
	animation: showModal 0.4s ease-out;
	font-family: "Helvetica Neue", Arial, sans-serif;
}

@keyframes showModal {
	from {
		opacity: 0;
		transform: scale(0.85);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

.modal-lemon {
	width: 70px;
	margin-bottom: 15px;
	filter: drop-shadow(0 0 6px rgba(255, 230, 0, 0.4));
}

.modal-content h2 {
	font-size: 22px;
	color: #444;
}

.modal-content p {
	color: #555;
	margin-bottom: 20px;
}

.close {
	float: right;
	font-size: 26px;
	font-weight: bold;
	cursor: pointer;
	color: #444;
}

.plan-options label {
	display: block;
	text-align: left;
	margin: 8px 0;
	padding: 8px;
	border-radius: 10px;
	background: #fff3c4;
	border: 1px solid #f3d776;
}

.plan-options input {
	margin-right: 8px;
}

.modal-content input {
	width: 100%;
	padding: 10px;
	margin-top: 8px;
	margin-bottom: 15px;
	border-radius: 10px;
	border: 1px solid #e1d27a;
	background: #fff;
}

.price-box {
	background: #ffe88a;
	padding: 10px;
	border-radius: 12px;
	font-size: 18px;
	margin-bottom: 15px;
	font-weight: bold;
}

#payBtn {
	background: #ffd633;
	border: none;
	padding: 12px 18px;
	width: 100%;
	border-radius: 12px;
	cursor: pointer;
	font-size: 18px;
	font-weight: bold;
	transition: 0.25s;
}

#payBtn:hover {
	background: #ffcd00;
}

.info {
	position: relative;
	/* or relative */
	z-index: 2;
}

/* Top navigation */
/* Header flex container */
.header-bar {
  display: flex;          /* horizontal layout */
  align-items: center;    /* vertically center */
  padding: 10px 20px;
}

/* Push nav to the right */
.top-nav {
  margin-left: auto;       /* key: consumes remaining space */
}

/* Navigation links */
.top-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.top-nav a {
  text-decoration: none;
  font-weight: 600;
  color: #444;
  padding: 6px 2px;
  transition: color 0.2s ease, border-bottom 0.2s ease;
  border-bottom: 2px solid transparent;
}

/* Hover state */
.top-nav a:hover {
  color: #f4b400;
  border-bottom: 2px solid #f4b400;
}

/* Active page */
.top-nav a.active {
  color: #f4b400;
  border-bottom: 2px solid #f4b400;
}
