:root {
	--bg1: #87ceeb;
	--bg-gradient: linear-gradient(174.37deg, #cdebff 0.31%, #e8f4ff 97.53%);
	--bg2: #fffff3;

	--accent1: #509ee3;
	--accent2: #64b5f6;
	--accent1-hover: #408ac9;
	--accent2-hover: #42a5f5;
	--text1: #2a2a2a;
	--text2: #515151;
	--text-dark: #ffffff;
	--light-accent: rgba(80, 158, 227, 0.75);
	--error: #ef5350;
	--link: #4076c5;
	--highlight: #0056ff;
}
:root.dark-mode {
	--bg1: #1a1a2e;
	--bg-gradient: linear-gradient(100deg, #000000 0.31%, #455f7e 97.53%);
	--bg2: #1a1a1a;

	--accent1: #64b5f6;
	--accent2: #42a5f5;
	--accent1-hover: #5ba3e8;
	--accent2-hover: #3d95e5;
	--text1: #e8e8f0;
	--text2: #b8b8c8;
	--text-dark: #1a1a2e;
	--light-accent: rgba(100, 181, 246, 0.3);
	--error: #ff6b6b;
	--link: #64b5f6;
	--highlight: #42a5f5;
}
html,
body {
	background: var(--bg-gradient);
	background-repeat: no-repeat;
	background-size: cover;
	margin: 0;
}
body {
	cursor: url("/Assets/Cursors/pointer.cur"), auto;
}
/* Style for the scrollbar */
::-webkit-scrollbar {
	width: 8px; /* Adjust the width for a thin scrollbar */
	height: 8px; /* Adjust the height for horizontal scrollbars */
}

::-webkit-scrollbar-thumb {
	background: linear-gradient(
		to bottom,
		var(--text1),
		var(--text2)
	); /* Gradient using CSS variables */
	border-radius: 5px; /* Rounded corners for a sleeker look */
}

::-webkit-scrollbar-track {
	background: transparent; /* Transparent background for the track */
}
.dark-mode ::-webkit-scrollbar-track {
	background: var(--bg1);
}
h1:focus {
	outline: none;
}
#app {
	min-height: 100vh;
}
.page {
	position: relative;
	display: flex;
	flex-direction: column;
	font-family: "Merriweather";
	font-style: normal;
	color: var(--text1);
	min-height: 100vh;
	overflow-x: hidden;
	padding-top: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
}

h1 {
	font-style: normal;
	font-weight: 700;
	font-size: 2.2rem;
	color: var(--highlight);
}
h2 {
	font-style: normal;
	font-weight: 700;
	font-size: 2rem;
	color: var(--highlight);
}
h3 {
	font-style: normal;
	font-weight: 700;
	font-size: 1.8rem;
	color: var(--highlight);
}
h4 {
	font-style: normal;
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--highlight);
}
h5 {
	font-style: normal;
	font-weight: 700;
	font-size: 1.2rem;
	color: var(--highlight);
}
h6 {
	font-style: normal;
	font-weight: 700;
	font-size: 1.1rem;
	color: var(--highlight);
}
p {
	color: var(--text2);
	font-weight: 500;
	font-size: 1.2rem;
	font-style: normal;
	margin: 0;
}
input,
textarea {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 20px;
	min-width: 300px;
	background: var(--bg2);
	box-shadow:
		0px 4px 8px 3px rgba(0, 0, 0, 0.15),
		0px 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 15px;
	border: none;
	font-family: "Merriweather";
	font-style: normal;
	font-weight: 400;
	font-size: 1.3rem;
	height: fit-content;
	color: var(--text2);
	box-sizing: border-box;
	cursor: url("/Assets/Cursors/handwriting.cur"), auto;
}
a {
	cursor: url("/Assets/Cursors/link.cur"), auto;
	font-size: 1.2rem;
}
.link {
	box-shadow: none;
	background: transparent;
	color: var(--link);
	padding: 0;
	display: inline;
	font-size: 1.2rem;
}
textarea {
	min-height: 200px;
	width: 100%;
}
input:focus {
	outline: none;
	border-bottom: 2px solid var(--accent1-hover);
}
input:disabled {
	opacity: 0.8;
	cursor: url("/Assets/Cursors/no.cur"), auto;
}
a,
.btn-link {
	color: #0071c1;
}
.blazored-toast,
.blazored-toast-component {
	border-radius: 10px !important;
}
.btn-primary {
	color: #fff;
	background-color: #1b6ec2;
	border-color: #1861ac;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
	box-shadow:
		0 0 0 0.1rem white,
		0 0 0 0.25rem #258cfb;
}

.valid.modified:not([type="checkbox"]) {
	outline: 1px solid #26b050;
}

.invalid {
	outline: 1px solid red;
}

.validation-message {
	color: var(--error);
	font-weight: 600;
}
.validation-errors {
	width: 100%;
	margin: 0;
}

#blazor-error-ui {
	background: lightyellow;
	bottom: 0;
	box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
	display: none;
	left: 0;
	padding: 0.6rem 1.25rem 0.7rem 1.25rem;
	position: fixed;
	width: 100%;
	z-index: 1000;
	box-sizing: border-box;
}
#blazor-error-ui a {
	box-shadow: none;
	background: transparent;
}

#blazor-error-ui .dismiss {
	cursor: pointer;
	position: absolute;
	right: 0.75rem;
	top: 0.5rem;
}

.blazor-error-boundary {
	background:
		url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=)
			no-repeat 1rem/1.8rem,
		#b32121;
	padding: 1rem 1rem 1rem 3.7rem;
	color: white;
}

.blazor-error-boundary::after {
	content: "An error has occurred.";
}

.loading-progress {
	position: relative;
	display: block;
	width: 8rem;
	height: 8rem;
	margin: 20vh auto 1rem auto;
}

.loading-progress circle {
	fill: none;
	stroke: #e0e0e0;
	stroke-width: 0.6rem;
	transform-origin: 50% 50%;
	transform: rotate(-90deg);
}

.loading-progress circle:last-child {
	stroke: #1b6ec2;
	stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
	transition: stroke-dasharray 0.05s ease-in-out;
}

.loading-progress-text {
	position: absolute;
	text-align: center;
	font-weight: bold;
	inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

.loading-progress-text:after {
	content: var(--blazor-load-percentage-text, "Loading");
}

code {
	color: #c02d76;
}

.highlight {
	color: var(--highlight) !important;
}
button:disabled {
	opacity: 0.8;
	cursor: url("/Assets/Cursors/no.cur"), auto;
}
button,
a {
	/* Frame 15 */

	/* Auto layout */
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px 15px;
	border: none;
	gap: 10px;
	width: fit-content;
	height: fit-content;
	font-weight: 600;
	font-size: 1.3rem;
	/* accent2 */
	background: var(--accent2);
	border-radius: 10px;
	color: var(--text-dark);
	box-shadow: 2px 2px 1px 1px rgba(0, 0, 0, 0.15);
	cursor: url("/Assets/Cursors/link.cur"), auto;
}
button:hover {
	background: var(--accent2-hover);
	box-shadow: 2.5px 2.5px 1px 1px rgba(0, 0, 0, 0.2);
}
button::before {
	content: attr(data-original);
}

button.coming-soon,
a.coming-soon {
	position: relative;
	background: var(--text2) !important;
	color: var(--text-dark) !important;
	cursor: url("/Assets/Cursors/no.cur"), auto;
	opacity: 0.5;
	border: none;
	font-weight: bold;
	white-space: nowrap;
	overflow: hidden;
}

/* Ribbon Style */
button.coming-soon .ribbon {
	position: absolute;
	top: 20px;
	right: -20px;
	background: var(--text-dark); /* Darker background for contrast */
	color: var(--text1); /* Ensure light text color */
	padding: 5px 15px;
	font-size: 12px; /* Slightly larger font size */
	font-weight: bold;
	text-transform: uppercase;
	text-align: center; /* Center the text on the ribbon */
	transform: rotate(45deg);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.5px; /* Improve readability */
}
a.coming-soon .ribbon {
	position: absolute;
	top: 15px;
	right: -20px;
	background: var(--text-dark); /* Darker background for contrast */
	color: var(--text1); /* Ensure light text color */
	padding: 5px 15px;
	font-size: 10px; /* Slightly larger font size */
	font-weight: bold;
	text-transform: uppercase;
	text-align: center; /* Center the text on the ribbon */
	transform: rotate(45deg);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
	letter-spacing: 0.5px; /* Improve readability */
}

/* Optional Hover Effect */
button.coming-soon:hover,
a.coming-soon:hover {
	opacity: 0.8;
}

.flex-column {
	display: flex;
	flex-direction: column;
	gap: 50px;
	width: 100%;
	align-items: center;
	padding: 50px;
	box-sizing: border-box;
}
.flex-row {
	display: flex;
	flex-direction: row;
	gap: 50px;
	width: 100%;
	box-sizing: border-box;
}
.wrap {
	flex-wrap: wrap;
}
.header-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	width: 100%;
}
.header-text h1 {
	color: var(--highlight);
}

.header-text h5 {
	color: var(--text2);
}

.welcome-image {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100dvh;
	left: 0;
	display: flex;
	align-items: center;
	flex-direction: row;
	z-index: 4;
}

.welcome-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.welcome-image .overlay {
	position: absolute;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	height: 50%;
	min-height: fit-content;
	gap: 40px;
	color: var(--text-dark);
	justify-content: space-between;
	align-self: flex-end;
}

.overlay .overlay-bottom {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding-bottom: 50px;
	gap: 25px;
	width: 80%;
}
.overlay .overlay-bottom button {
	font-weight: 700;
	font-size: 2rem;
	padding: 15px 25px;
}
.welcome-image .overlay h1 {
	font-style: normal;
	font-family: "Roboto Slab", serif;
	font-size: 4.8rem;
	text-align: center;
	animation: popout 4s ease-out forwards; /* Apply animation */
	opacity: 0.3; /* Start invisible */
	transform: scale(0.7); /* Start smaller */
	color: var(--text-dark);
	display: flex;
	align-items: flex-end;
}
.dark-mode .welcome-image .overlay h1 {
	color: var(--text2);
}
.welcome-image p {
	font-family: "Merienda One";
	font-weight: 400;
	color: var(--text-dark);
	text-align: center;
}
.dark-mode .welcome-image p {
	color: var(--text1);
}
#about-section {
	scroll-margin-top: 50px; /* Primary solution for modern browsers */
}
#comments-section {
	scroll-margin-top: 50px; /* Primary solution for modern browsers */
}
.about,
.book {
	display: flex;
	padding: 50px;
	gap: 50px;
	box-sizing: border-box;
}
.about.margin-absolute {
	margin-top: calc(100vh + 50px);
}
.about h1 {
	color: var(--text1);
}
.about h6 {
	font-family: "Merienda One";
	font-style: normal;
	font-weight: 400;
	color: var(--text2);
}

.about.reverse {
	flex-direction: row-reverse;
}
.about.no-margin {
	margin: 0;
}
.author-image {
	display: flex;
	flex-direction: column;
	width: 45%;
	gap: 30px;
	height: 400px;
}
.author-image.fit-content {
	width: min-content;
	height: fit-content;
}
.author-image.fit-content img {
	width: fit-content;
	height: 500px;
}
.about .fit-content + .content {
	width: auto;
}
.author-image img,
.author-image picture {
	display: flex;
	width: 100%;
	height: 100%;
	box-shadow:
		0px 6px 10px 4px rgba(0, 0, 0, 0.15),
		0px 2px 3px rgba(0, 0, 0, 0.3);
	border-radius: 25px;
	object-fit: cover;
}

picture img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* .about.image-small .author-image{
    width:35%;
}
.about.image-small .content{
    width:65%;
} */
.about .content {
	width: 55%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 75px;
	padding-bottom: 50px;
}
.about .content .text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.about .content .text .header-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.actions {
	display: flex;
	justify-content: flex-start;
	width: 100%;
	align-self: flex-end;
	gap: 25px;
}
.actions a,
.book-page a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 20px 15px;
	border: none;
	gap: 10px;
	width: fit-content;
	min-height: fit-content;
	height: auto;
	font-weight: 600;
	font-size: 1.3rem;
	/* accent2 */
	background: var(--accent2);
	border-radius: 10px;
	color: var(--text-dark);
	cursor: url("/Assets/Cursors/link.cur"), auto;
	text-decoration: none;
	box-sizing: border-box;
}
.actions a:hover,
.book-page a:hover {
	background: var(--accent2-hover);
}

/*The Book */
.book {
	margin: 0;
	gap: 0;
}
.book-image {
	display: flex;
	flex-direction: column;
	width: auto;
	gap: 50px;
}
.book-image img {
	width: auto;
	height: 550px;
	border-radius: 25px;
	object-fit: cover;
}
.book .content {
	width: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 75px;
	padding-bottom: 50px;
	padding-top: 25px;
}
.book .content .text {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.book h6 {
	color: var(--text2);
}
.insights-section h1 {
	color: var(--text1);
}
.insights {
	display: flex;
	justify-content: space-between;
	padding: 0 5px;
	gap: 30px;
}
.quotes {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	width: 50%;
	gap: 30px;
	box-sizing: border-box;
	height: auto;
	align-items: center;
	justify-content: space-between;
	align-content: center;
}
.quote {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 1 45%;
	cursor: pointer;
}
.quote p {
	font-family: "Courgette";
	font-style: normal;
	background: var(--bg2);
	padding: 40px;
	/* M3/Elevation Dark/4 */
	box-shadow:
		0px 6px 10px 4px rgba(0, 0, 0, 0.15),
		0px 2px 3px rgba(0, 0, 0, 0.3);
	border-radius: 25px;
}
.quote.active p {
	background: var(--light-accent);
	font-size: 1.3rem;
	color: var(--text-dark);
	box-shadow:
		0px 6px 10px 4px rgba(0, 0, 0, 0.2),
		0px 2px 3px rgba(0, 0, 0, 0.3);
}
.book-page {
	width: 50%;
	padding: 0px 0px 5px 7px;
	min-height: 700px;
	height: fit-content;
	background: var(--bg2);
	/* book shadow */
	box-shadow:
		-2px 2px 10px 2px rgba(0, 0, 0, 0.25),
		inset -8px 0px 10px rgba(68, 68, 68, 0.2);
	border-radius: 5px;
	display: flex;
}
.book-page .page-inner {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: space-between;
	padding: 40px;
	gap: 10px;
	width: 100%;
	min-height: 100%;

	/* bg2 */
	background: var(--bg2);
	/* book shadow */
	box-shadow:
		-2px 2px 10px 2px rgba(0, 0, 0, 0.25),
		inset -8px 0px 10px rgba(68, 68, 68, 0.2);
	border-radius: 5px;
	align-self: stretch;
	flex-grow: 1;
}
.book-page .book-text {
	display: flex;
	flex-direction: column;
	gap: 10px;
	justify-content: center;
	align-items: center;
}

.book-page p {
	font-family: "Courgette";
	font-style: normal;
}

/* Inspiration */

/* Home */
.inspiration {
	gap: 15px;
}
.inspiration h6 {
	color: var(--text1);
	font-size: 0.9rem;
	text-align: center;
}
.inspiration-hero {
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
}
.inspiration-hero img {
	width: 100%;
	height: 400px;
	object-fit: cover;
	object-position: top;
}
.inspiration-links {
	gap: 15px;
	justify-content: center;
	flex-wrap: wrap;
}
.inspiration-links button {
	flex: 1 1 20%;
}
.inspiration-links button::before {
	display: none;
}

/* Vedanta */
.intro {
	display: block; /* Default block behavior */
	width: 100%;
	overflow: hidden; /* Clear the floated elements */
}

/* .intro img, .intro iframe {
	float: left; 
	width: 40%; /* 
	height: fit-content; 
	margin-right: 25px; 
	object-fit: cover; 
	background: var(--bg2);
	border-radius: 25px; 
	box-shadow: 0px 4px 8px 3px rgba(0, 0, 0, 0.15),
		0px 1px 3px rgba(0, 0, 0, 0.3);
}

.intro-text {
	display: inline;
	overflow: hidden; 
} */

.intro-text p {
	margin: 0;
}

/* Contact */
.contact {
	padding: 10px;
	gap: 10px;
	width: 50%;
	align-items: flex-start;
}
.contact h3,
.contact h6 {
	color: var(--text2);
}
.contact-info {
	padding: 0 !important;
	gap: 10px;
	align-items: flex-start;
}
.contact-info a {
	box-shadow: none;
	background-color: transparent;
	color: var(--link);
	padding: 0;
	text-decoration: none;
}
.contact-info a:hover {
	text-decoration: underline;
}
.contact-info .info {
	padding: 0;
	gap: 10px;
	align-items: center;
}
.contact-info a::before {
	content: attr(data-original);
}
.contact-info .info svg {
	width: 36px;
	height: 36px;
	color: var(--text2);
}
.contact-info .info a,
.contact-info .info p {
	color: var(--link);
}
.qa {
	gap: 0;
	align-items: flex-end;
	padding: 0;
}
.qa input {
	padding: 20px 35px;
	gap: 10px;
	background: var(--bg2);
	box-shadow: 2px -4px 2px rgba(0, 0, 0, 0.25);
	border-radius: 15px 15px 0px 0px;
}
.search-input {
	position: relative;
}
#search-icon {
	position: absolute;
	width: 50px;
	height: 50px;
	top: 10px;
	right: 10px;
	fill: var(--text2);
}
.qa-container {
	display: flex;
	flex-direction: row;
	padding: 25px;
	gap: 25px;
	width: 100%;
	height: fit-content;
	background: var(--bg2);
	/* container shadow */
	box-shadow: inset 6px 4px 4px rgba(0, 0, 0, 0.25);
	border-radius: 20px 0px 20px 20px;
	/* align-items: stretch; */
	box-sizing: border-box;
	min-height: 450px;
}
.questions {
	display: flex;
	flex-direction: column;
	width: 55%;
	gap: 10px;
	padding: 10px;
}
.question-container {
	box-shadow:
		0px 6px 10px 4px rgba(0, 0, 0, 0.15),
		0px 2px 3px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	height: fit-content;
}
.answer-container {
	max-height: 0; /* Start with the answer collapsed */
	overflow: hidden; /* Hide anything beyond max-height */
	transition: max-height 0.8s ease-in-out; /* Smooth transition for expanding/collapsing */
	height: auto;
}

.question-container.active {
	box-shadow: inset 6px 4px 2px rgba(0, 0, 0, 0.25);
}
.question {
	padding: 20px;
	width: 100%;
	/* bg2 */
	background: var(--bg2);
	/* M3/Elevation Light/4 */
	border-radius: 15px;
	display: flex;
	gap: 20px;
	align-items: center;
	box-sizing: border-box;
	cursor: url("/Assets/Cursors/link.cur"), auto;
}
.question-container {
	background: var(--bg2);
}
.question.active {
	background: var(--accent1);
	box-shadow: inset 6px 4px 2px rgba(0, 0, 0, 0.25);
}
.question svg {
	fill: var(--text2);
	width: 40px;
	height: 40px;
}
.question.active svg {
	fill: var(--text-dark);
}
.question h4 {
	width: 100%;
	color: var(--text2);
}

.answer {
	display: flex;
	flex-direction: column;
	width: 45%;
	max-width: -webkit-fill-available;
	height: auto;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	min-height: fit-content;
}
.answer .actions {
	justify-content: center;
}
.answer .unselected {
	height: 50%;
	text-align: center;
	font-weight: 600;
	align-items: flex-end;
}
.answer p {
	min-height: 50%;
	display: flex;
}

.question.active h4 {
	color: var(--text-dark);
}
.qa-container button {
	min-width: 200px;
}
#down-arrow,
#up-arrow {
	display: none;
}

.welcome-image .overlay .small-screen {
	display: none;
}

/* Blog */
.more-button {
	box-shadow: none;
	background: transparent;
	color: var(--link);
	width: fit-content;
	font-size: 1.2rem;
	align-self: flex-end;
}
.more-button:hover {
	text-decoration: underline;
	box-shadow: none;
	background: transparent;
}
.blog-page h1,
.blog-page h3,
.blog-page h2 {
	color: var(--text1);
	text-align: center;
}
.more-button svg {
	width: 18px;
	height: 18px;
	fill: var(--link);
}
.blog-text h2 {
	padding-bottom: 15px;
}
.hero-blogs {
	width: 70%;
	padding: 0 50px;
}

.main-blog {
	display: block;
}
.main-blog img {
	width: 50%;
	height: fit-content;
	object-fit: cover;
	float: left;
	border-radius: 20px;
	box-shadow:
		0px 4px 8px 3px rgba(0, 0, 0, 0.15),
		0px 1px 3px rgba(0, 0, 0, 0.3);
	margin: 10px;
}
.main-blog .options {
	display: flex;
	width: 100%;
	justify-content: flex-end;
}

.blog-hero {
	gap: 25px;
}
.blog-controls {
	width: 30%;
	padding: 0;
	gap: 30px;
	position: relative;
}
.blog-controls .search-input {
	width: 100%;
}
.blog-controls-small {
	justify-content: center;
}
.search-items {
	display: flex;
	flex-direction: column;
	background: var(--bg2);
	position: absolute;
	top: 70px;
	width: 98%;
	align-items: center;
	box-sizing: border-box;
	border-radius: 0 0 15px 15px;
	transition: max-height 0.5s ease-in-out;
	max-height: 0;
}
.search-items.searched {
	max-height: 10000px;
	padding: 25px;
	box-shadow: -2px 2px 2px 1px rgba(0, 0, 0, 0.2);
}
.search-items h6 {
	color: var(--text2);
	font-weight: 550;
	font-size: 1.4rem;
	padding: 15px;
}
.search-items h6:hover {
	color: var(--text-dark);
}
.search-item {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 5px;
	cursor: url("/Assets/Cursors/link.cur"), auto;
}
.search-item:hover {
	background: var(--accent1-hover);
}
.search-items h6:hover {
	background: var(--accent1-hover);
}
.blog-controls .search-input input {
	width: 100%;
}
.blog-controls .contact-form {
	width: 100%;
}
.blog-controls button {
	width: 100%;
}
.blogs {
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	gap: 20px;
	height: 500px;
	overflow: hidden;
}
.blogs .blog {
	height: 100%;
}
.blogs .blog img {
	height: calc(100% - 125px);
}
.blog {
	display: flex;
	flex-direction: column;
	flex: 1 1 45%;
	align-items: center;
	gap: 15px;
}
.blog img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 20px;
}
.other-blogs {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	gap: 50px;
	position: relative;
	width: 100%;
	height: 600px;
}
.other-blogs .blogs {
	position: absolute;
	top: 90px;
	overflow-x: visible;
	box-sizing: border-box;
}
.other-blogs .blog {
	flex: 0 0 auto;
	width: 350px;
}
.no-blogs {
	width: 100%;
	text-align: center;
	display: flex;
	gap: 25px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 100px;
	height: fit-content;
}
.blog-controls .search-input-small {
	background: var(--bg2);
	border-radius: 15px 0 0 15px;
	padding: 10px;
	position: fixed;
	right: 0;
	top: 200px;
	display: none;
	align-items: center;
	width: fit-content;
	height: 70px;
	box-sizing: border-box;
}
.blog-controls .search-input-small #search-icon {
	position: relative;
	top: 0;
	right: 0;
}
.search-input-small input {
	border-radius: 0;
	max-width: 0;
	padding: 0;
	min-width: 0;
	background: transparent;
	box-shadow: none;
	transition: max-width 0.8s ease-in-out;
}
.search-input-small.open {
	padding: 0;
	padding-left: 10px;
}
.search-input-small.open input {
	max-width: 1000px;
	padding: 20px;
	width: 340px;
}
.search-input-small.open #search-icon {
	position: relative;
	animation-delay: 0.8s;
}
#search-icon {
	transition: all 0.2s ease-in-out;
	stroke: var(--text2);
	fill: none;
}
#search-circle,
#search-handle {
	transition: all 0.2s ease-in-out;
}
#cross-line1,
#cross-line2 {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.2s ease-in-out;
}
.search-input-small.open #search-circle,
.search-input-small.open #search-handle {
	opacity: 0;
	transform: scale(0.8);
}
.search-input-small.open #cross-line1,
.search-input-small.open #cross-line2 {
	opacity: 1;
	transform: scale(1);
}

.contact-form-small,
.buy-book-small {
	display: none;
}
.contact-form-small {
	justify-content: center;
	align-items: center;
	padding: 35px 40px;
	background: var(--light-accent);
	box-shadow: inset 4px 4px 2px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
	width: 50%;
}
.contact-form-small h4 {
	color: var(--text-dark);
}

/* Blog Inner */
.blog-inner img {
	width: 40%;
	height: 400px;
	object-fit: cover;
	box-shadow:
		0px 4px 8px 3px rgba(0, 0, 0, 0.15),
		0px 1px 3px rgba(0, 0, 0, 0.3);
	border-radius: 20px;
}
.content-section img,
.content-section iframe {
	float: left; /* Float the image to the left */
	width: 40%; /* Image takes up 40% of the width */
	height: fit-content; /* Fixed height for the image */
	margin-right: 25px; /* Space between the image and text */
	object-fit: cover; /* Maintain image proportions */
	background: var(--bg2);
	border-radius: 25px; /* Rounded edges to match the shape */
	box-shadow:
		0px 4px 8px 3px rgba(0, 0, 0, 0.15),
		0px 1px 3px rgba(0, 0, 0, 0.3);
}

.content-section.text-left img,
.content-section.text-left iframe {
	float: right;
	margin-left: 25px;
	margin-right: 0;
}
.content-section img,
.content-section iframe {
	float: left;
	margin-right: 25px;
	margin-left: 0;
	margin-bottom: 5px;
}
.content-section h2 {
	margin-bottom: 15px;
	font-size: 1.7rem;
	text-align: center;
}
.content-text p {
	font-size: 1.4rem;
}
.content-section.first-section img,
.content-section.first-section iframe {
	float: left;
	margin-right: 25px;
	margin-left: 0;
}

.buy-book {
	display: flex;
}
.buy-book a {
	text-decoration: none;
	width: 100%;
	font-weight: 550;
	box-sizing: border-box;
}
.buy-book,
.buy-book-small {
	flex-direction: column;
	align-items: center;
}
.blog-header {
	flex-direction: column;
	gap: 0;
}
.blog-header a {
	align-self: flex-start;
	position: relative;
}

.buy-book-small a {
	width: 100%;
	font-weight: 550;
	box-sizing: border-box;
	text-decoration: none;
}
.blog-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.blog-content h2 {
	color: var(--text1);
}
.blog-content-inner {
	display: flex;
	gap: 25px;
	justify-content: space-between;
}

/* 
@media screen and (max-width:1500px) {
    .welcome-image .overlay h1{
        font-size: 3.2rem;
    }
} */

/* .comments-section {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
} */
.comments-section .flex-row {
	gap: 20px;
}
.comments {
	flex-grow: 1;
}
.comments p {
	text-align: center;
	padding-top: 25px;
}

@media screen and (max-width: 1400px) {
	.flex-column {
		padding: 50px 25px;
	}
	.quotes {
		width: 55%;
	}
	.book-page {
		width: 45%;
	}
	.blog-page .contact-form {
		display: none;
	}
	.buy-book {
		display: none;
	}
	.blog-hero {
		gap: 0;
	}
	.blog-controls .search-input {
		display: none;
	}
	.blog-controls .search-input-small {
		display: flex;
	}
	.blog-controls {
		width: 0;
		padding: 0 !important;
	}
	.hero-blogs {
		width: 100%;
		padding: 0 25px;
	}
	.search-items {
		position: fixed;
		width: 395px;
		top: 273px;
		right: 0;
	}
	.contact-form-small,
	.buy-book-small {
		display: flex;
	}
	.welcome-image .overlay h1 {
		font-size: 4rem;
	}
}

@media screen and (max-width: 1300px) {
	.blog {
		gap: 20px;
	}
	.main-post {
		width: calc(60% - 10px);
	}
	.blog .contact-form {
		width: calc(40% - 10px);
	}
}

@media screen and (max-width: 1250px) {
	.welcome-image .overlay h1 {
		font-size: 3.5rem;
	}

	.overlay .overlay-bottom button {
		font-size: 30px;
	}
	.about {
		gap: 40px;
	}
	.author-image {
		gap: 25px;
		width: 50%;
	}

	.insights {
		gap: 35px;
	}
	.quotes {
		flex-direction: column;
		width: 35%;
		flex-wrap: nowrap;
	}
	.quote {
		width: 100%;
	}
	.book-page {
		width: 65%;
	}

	.answer {
		display: none;
	}
	.question-container.active {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}
	.question-container.active .answer-container {
		max-height: 2000px;
		padding: 0 25px 25px 25px;
	}

	.questions {
		width: 100%;
	}
	.question.active {
		border-radius: 15px 15px 0 0;
	}
	.question.active #down-arrow {
		display: none;
	}
	#down-arrow,
	#up-arrow {
		display: block;
	}
	#right-arrow {
		display: none;
	}
}

@media screen and (max-width: 1100px) {
	/* .welcome-image .overlay h1{
        font-size: 2.5rem;
    }   */
	.intro img {
		width: 55%;
	}
	/* #ch1{
        flex-direction: column-reverse;
    }
    #ch1 .author-image{
        width: 60%;
        align-self: flex-end;
    }
    #ch1 .content{
        width: 100%;
        padding: 0;
    } */
}

@media screen and (max-width: 1024px) {
	.welcome-image .overlay h1 {
		font-size: 3rem;
	}
	.overlay .overlay-bottom button {
		font-size: 25px;
	}

	.insights {
		flex-direction: column-reverse;
	}
	.quotes {
		flex-direction: row;
		width: 100%;
		flex-wrap: wrap;
	}
	.quote {
		width: unset;
	}
	.book-page {
		width: 100%;
		height: fit-content;
		min-height: 0;
	}
	.book-page .page-inner {
		min-height: 0;
		height: fit-content;
		gap: 50px;
	}
	.about,
	.about.reverse {
		flex-direction: column;
	}
	.author-image,
	.author-image.fit-content {
		width: 100%;
		height: fit-content;
	}
	.author-image img,
	.author-image.fit-content img {
		width: 100%;
		height: 400px;
	}
	.about .content {
		width: 100%;
		padding: 0;
	}

	.contact {
		padding: 0 !important;
	}
	.contact,
	.contact-form {
		width: 80%;
	}
	.header-text {
		text-align: center;
	}
	.main-post {
		width: 100%;
	}
	.blog .contact-form {
		width: 60%;
	}
	.inspiration-links button {
		flex: 1 1 45%;
	}
	.welcome-image .overlay {
		height: 60%;
	}
	.content-section img,
	.content-section iframe {
		width: 50%;
	}
}
@media screen and (max-width: 980px) {
	.blog-controls-small {
		flex-direction: column;
	}
	.buy-book-small {
		width: 60%;
	}
}

@media screen and (max-width: 900px) {
	.welcome-image .overlay h1 {
		font-size: 2.7rem;
	}
	.comments-options {
		flex-direction: column;
	}
	.contact-contents {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
}
@media screen and (max-width: 860px) {
	.book {
		flex-direction: column;
	}
	.book-image img {
		width: 70%;
		height: fit-content;
	}
	.actions {
		justify-content: space-between;
	}
	.blog .contact-form {
		width: 100%;
	}
	.intro {
		display: flex;
		flex-direction: column;
		gap: 25px;
	}
	.intro img {
		width: 100%;
	}
	.blog-controls-small {
		flex-direction: column;
	}
	.contact-form-small {
		width: 70%;
	}
}

@media screen and (max-width: 768px) {
	.welcome-image .overlay h1 {
		display: none;
		font-size: 3.5rem;
	}
	.welcome-image .overlay .small-screen {
		display: flex !important;
	}
	.welcome-image p {
		font-size: 1.2rem;
	}
	.qa {
		padding: 0;
	}
	.qa-container {
		padding: 20px;
	}
	.main-blog {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}
	.main-blog img {
		width: 100%;
	}
	.main-blog .blog-text {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 5px;
	}
	.hero-blogs {
		padding: 25px 10px;
		padding-bottom: 0;
	}
	.contact,
	.contact-form {
		width: 90%;
	}
	.blog-page {
		padding: 50px 15px;
	}
	.other-blogs .blogs {
		padding: 15px;
	}
	.other-blogs .blogs {
		top: 75px;
	}
}

@media screen and (max-width: 690px) {
	.qa-container {
		background: transparent;
		box-shadow: none;
		padding: 0;
	}
	.questions {
		padding: 5px 0;
	}
	.buy-book-small,
	.contact-form-small {
		width: 100%;
	}
	.buy-book-small img {
		width: 100%;
	}
}

@media screen and (max-width: 620px) {
	.book-image img {
		width: 100%;
	}
	.welcome-image .overlay h1 {
		font-size: 2.8rem;
	}
	.welcome-image p {
		font-size: 1.15rem;
	}
	h1 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.5rem;
	}
	h4 {
		font-size: 1.3rem;
	}
	h5 {
		font-size: 1rem;
	}
	/* p, a{
        font-size: 1.4rem;
    } */
	/* .contact, .contact-form, .header-text{
        width: 100%;
    } */
	.search-input {
		width: 100%;
	}
	.qa input {
		width: 100%;
		font-size: 1.3rem;
	}
	#search-icon {
		width: 55px;
		height: 55px;
		top: 20px;
	}
	.question svg {
		width: 36px;
		height: 36px;
	}
	.post-title {
		flex-direction: column;
		align-items: flex-end;
	}
	.main-post {
		gap: 10px;
	}
	.blog-page {
		padding: 50px 0;
	}
	.blog-controls-small {
		padding: 25px;
	}
	.header-text {
		width: 90%;
	}
	.hero-blogs {
		padding: 25px;
	}
	.hero-blogs .blogs {
		flex-direction: column;
	}
	.hero-blogs .blogs {
		height: fit-content;
	}
	.content-section img,
	.content-section iframe {
		width: 100%;
		margin: 0 0 15px 0;
	}
}

@media screen and (max-width: 580px) {
	.actions {
		flex-direction: column;
		gap: 10px;
	}
	.actions button,
	.actions a {
		width: 100%;
	}
	.about .content {
		gap: 40px;
	}
	.overlay .overlay-bottom {
		width: 95%;
	}
	.blog-page {
		gap: 25px;
	}
	.inspiration-links button {
		flex: 1 1 100%;
	}
}
@media screen and (max-width: 520px) {
	.about,
	.book {
		padding: 25px;
	}
	.contact-info a::before {
		content: attr(data-small);
	}
	input,
	textarea {
		min-width: 0;
		width: 100%;
	}
	.blog h1 {
		font-size: 1.8rem;
	}
	.welcome-image .overlay h1 {
		font-size: 2.5rem;
	}
	.blog-text h2 {
		font-size: 1.8rem;
	}
}
@media screen and (max-width: 464px) {
	p {
		font-size: 1.1rem;
	}
}
@media screen and (max-width: 420px) {
	.flex-column {
		padding: 50px 10px;
	}
	.welcome-image .overlay h1 {
		font-size: 2rem;
	}
	.hero-blogs {
		padding: 0 10px;
	}
	.other-blogs .blog {
		width: 325px;
	}
}

@media screen and (max-width: 400px) {
	h1 {
		font-size: 1.8rem;
	}
	p {
		font-size: 1rem;
	}
	button,
	.actions a,
	.book-page a {
		font-size: 1.2rem;
		padding: 15px;
	}
	.search-input-small.open input {
		width: 100%;
	}
	.search-items {
		width: 355px;
	}
	.other-blogs .blogs {
		height: 400px;
		padding: 5px;
	}
	.other-blogs .blog {
		width: 280px;
	}
}

@media screen and (max-width: 360px) {
	.search-items {
		width: 100%;
	}
}

@media screen and (max-width: 350px) {
	.welcome-image .overlay h1 {
		font-size: 1.7rem;
	}
}

@keyframes popout {
	0% {
		opacity: 0;
		transform: scale(0.7);
	}
	100% {
		opacity: 1;
		transform: scale(1); /* Full size */
	}
}
