/*
Theme Name: Eksell Child
Theme URI: https://minupandit.com
Description: Child theme for Eksell – Minu Pandit
Author: Amar Vyas, based on Eksell Theme by Anders Noren
Template: eksell
Version: 1.0
Text Domain: minupanditdotcom
*/

/* ---------------------------------
   GLOBAL SPACING REDUCTIONS
---------------------------------- */

/* Reduce spacing between blocks */
.wp-block,
.entry-content > * {
	margin-bottom: 1.25em; /* default is much higher */
}

/* Images inside content */
.entry-content img,
.wp-block-image {
	margin: 1em 0;
}

/* Galleries tighter spacing */
.wp-block-gallery {
	gap: 8px;
	margin-bottom: 1.5em;
}

/* ---------------------------------
   IMAGE WIDTH IN PAGES / GALLERIES
---------------------------------- */

/* Pages: allow images to breathe more */
.page .entry-content img,
.page .wp-block-image img {
	max-width: 115%;
	margin-left: -7.5%;
}

/* Mobile safety */
@media (max-width: 768px) {
	.page .entry-content img,
	.page .wp-block-image img {
		max-width: 108%;
		margin-left: -4%;
	}
}

/* ---------------------------------
   BACK TO TOP BUTTON
---------------------------------- */

#back-to-top {
	position: fixed;
	bottom: 24px;
	right: 24px;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: #000;
	color: #fff;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 9999;
	opacity: 0.75;
}

#back-to-top:hover {
	opacity: 1;
}

/* ---------------------------------
   FOOTER – DARKER BEIGE / YELLOW
---------------------------------- */

.site-footer {
	background-color: #e6d3a3; /* warm beige / parchment */
	color: #3a2f1f;
	padding-top: 2.5rem;
	padding-bottom: 2.5rem;
}

.site-footer a {
	color: #3a2f1f;
	text-decoration: none;
	border-bottom: 1px solid rgba(58,47,31,0.25);
}

.site-footer a:hover {
	color: #000;
	border-bottom-color: rgba(0,0,0,0.4);
}

/* Footer widgets spacing tighter */
.site-footer .widget {
	margin-bottom: 1.25rem;
}

/* ---------------------------------
   TIGHTER CONTENT SPACING
---------------------------------- */

/* Paragraph spacing */
.entry-content p {
	margin-bottom: 0.85em;
}

/* Images */
.entry-content img,
.wp-block-image {
	margin-top: 0.75em;
	margin-bottom: 0.75em;
}

/* Headings closer to images */
.entry-content h2,
.entry-content h3,
.entry-content h4 {
	margin-bottom: 0.6em;
}

/* Text after images */
.wp-block-image + p {
	margin-top: 0.6em;
}

/* Galleries */
.wp-block-gallery {
	margin-top: 1em;
	margin-bottom: 1.25em;
	gap: 6px;
}

@media (max-width: 768px) {

	.entry-content p {
		margin-bottom: 0.7em;
	}

	.entry-content img,
	.wp-block-image {
		margin-top: 0.6em;
		margin-bottom: 0.6em;
	}

	.wp-block-gallery {
		gap: 4px;
		margin-bottom: 1em;
	}
}