/*
 * Baby Bottles Campaign — Custom Styles
 * Add this via Appearance > Additional CSS, or enqueue via functions.php
 */

/* ---- Give Now nav button (green pill) ---- */
.is-style-give-now-btn a {
	background-color: #71A233 !important;
	color: #ffffff !important;
	padding: 8px 20px !important;
	border-radius: 4px !important;
}
.is-style-give-now-btn a:hover {
	background-color: #5c8a28 !important;
}

/* ---- Hero cover — eliminate top/bottom gap ---- */
.wp-block-cover.alignfull:first-child {
	margin-top: 0 !important;
}

/* ---- Green section image fill (How will it help) ---- */
@media (min-width: 782px) {
	#the-impact {
		min-height: 600px;
	}
	#the-impact > .wp-block-column:first-child img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		display: block;
	}
	#the-impact > .wp-block-column:first-child figure {
		height: 100%;
		margin: 0;
	}
}

/* ---- Footer contact links ---- */
.footer-contact p {
	margin: 6px 0;
	font-size: 15px;
	line-height: 1.6;
}
.footer-contact a:hover {
	color: #71A233 !important;
}

/* ---- Smooth scroll for anchor links ---- */
html {
	scroll-behavior: smooth;
}

/* ---- Button hover transition ---- */
.wp-element-button,
.wp-block-button__link {
	transition: background-color 0.2s ease, transform 0.1s ease;
}
.wp-element-button:hover,
.wp-block-button__link:hover {
	transform: translateY(-1px);
}

/* ---- Mobile adjustments ---- */
@media (max-width: 781px) {
	.wp-block-cover {
		min-height: 400px !important;
	}
	#locations .wp-block-columns {
		gap: 32px;
	}
}

/* ---- Heading bottom spacing ---- */
.wp-block-heading {
	margin-bottom: 16px;
}
