/*
Theme Name: Kadence Child
Template: kadence
Version: 1.0
*/

/* CSS POUR PIED DE PAGE */
.site-footer {
	background: #edf4ea;
	color: #2f4f35;
}

.site-footer .site-middle-footer-inner-wrap {
	display: grid;
	grid-template-columns: 1.2fr 1fr 1fr;
	gap: 60px;
	align-items: start;
	padding-top: 55px;
	padding-bottom: 35px;
}

.site-footer img {
	max-width: 140px;
	height: auto;
	margin-bottom: 20px;
}

.site-footer h2,
.site-footer h3,
.site-footer .widget-title {
	color: #1f2a3a;
	margin-bottom: 16px;
}

.site-footer p {
	line-height: 1.6;
	margin-bottom: 8px;
}

.site-footer a {
	color: #2f4f35;
	text-decoration: none;
	font-weight: 600;
}

.site-footer a:hover {
	text-decoration: underline;
}

.site-footer .menu {
	display: flex;
	flex-direction: column;
	gap: 2px;
	align-items: center;
}

.site-footer .social-button,
.site-footer .kadence-svg-iconset {
	background: #f7faf6;
	border-radius: 18px;
}

.site-footer .site-bottom-footer-inner-wrap {
	padding-top: 20px;
	padding-bottom: 25px;
	text-align: center;
}

/* Pour le bloc contattaci et seguici */
.footer-contact-social {
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

.footer-contact-social h3 {
	font-size: 1.2rem;
	text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 800;
	color: #1f2a3a;
	margin-bottom: 12px;
}

.footer-icon-row {
	display: flex;
	justify-content: center;
	gap: 14px;
}

.footer-icon-row a {
	width: 58px;
	height: 58px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 18px;
	background: #edf4ea;
	border: 1px solid #b8c9b0;
	color: #2f4f35 !important;
	text-decoration: none;
	font-weight: 800;
	font-size: 1.7rem;
	transition: all 0.2s ease;
}

.footer-icon-row a:hover {
	background: #dce8d3;
	transform: translateY(-2px);
}

/* Descendre la 3eme colonne */
.footer-contact-social {
	margin-top: 20px;
}

/* Remonter le copyright */
.site-footer .site-bottom-footer-inner-wrap {
	padding-top: 8px;
	padding-bottom: 18px;
}

/* Reduire la largeur du texte a gauche */
.footer-about {
	max-width: 320px;
	margin: 0 auto;
}

/* Reduire l'espace vertical du footer */
.site-footer {
	padding-top: 50px;
	padding-bottom: 25px;
}

/* CSS POUR CPT ANIMALE */
.animal-page {
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 20px;
}

.animal-hero {
	text-align: center;
	margin-bottom: 50px;
}

.animal-hero h1 {
	font-size: clamp(2.4rem, 5vw, 4rem);
	margin-bottom: 10px;
}

.animal-arrival {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 25px;
}

.animal-main-photo img {
	width: 100%;
	max-height: 520px;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: 0 10px 35px rgba(0,0,0,0.12);
}

.animal-card {
	background: #fff;
	border-radius: 24px;
	padding: 35px;
	margin: 45px 0;
	box-shadow: 0 6px 25px rgba(0,0,0,0.06);
}

.animal-card h2,
.animal-adoption h2,
.animal-share h2 {
	margin-top: 0;
	font-size: 2rem;
}

.animal-text {
	font-size: 1.1rem;
	line-height: 1.8;
}

.animal-gallery {
	margin: 40px 0;
}

.animal-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 18px;
}

.animal-grid div {
	background: #f7f7f7;
	border-radius: 16px;
	padding: 18px;
}

.animal-grid strong {
	display: block;
	font-size: 0.85rem;
	text-transform: uppercase;
	opacity: 0.65;
	margin-bottom: 5px;
}

.animal-compat {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.animal-compat div {
	padding: 14px 20px;
	border-radius: 999px;
	font-weight: 700;
}

.animal-compat .yes {
	background: #e7f7ec;
	color: #167a35;
}

.animal-compat .no {
	background: #fdeaea;
	color: #b32626;
}

.animal-adoption {
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border: 1px solid rgba(95,127,90,0.18);
	border-radius: 32px;
	padding: 45px;
	margin: 55px 0;
	text-align: center;
	box-shadow: 0 10px 32px rgba(0,0,0,0.05);
}

.animal-button {
	display: inline-block;
	margin-top: 15px;
	padding: 15px 28px;
	border-radius: 999px;
	background: #2f4f35;
	color: #fff !important;
	text-decoration: none;
	font-weight: 700;
	box-shadow: 0 4px 14px rgba(0,0,0,0.08);
	transition: all 0.2s ease;
}

.animal-button:hover {
	background: #3f6647;
	transform: translateY(-2px);
}
.animal-share {
	text-align: center;
	margin: 40px 0;
}

.animal-share a,
.animal-share button {
	display: inline-block;
	margin: 8px;
	padding: 12px 20px;
	border-radius: 999px;
	border: 1px solid #ddd;
	background: #fff;
	cursor: pointer;
	text-decoration: none;
}

@media (max-width: 700px) {
	.animal-card {
		padding: 24px;
	}

	.animal-main-photo img {
		max-height: 380px;
	}

	.animal-compat {
		display: grid;
		grid-template-columns: 1fr;
	}
}

.animal-share {
	text-align: center;
	margin: 60px 0;
}

.animal-share h2 {
	margin-bottom: 25px;
}

.share-btn {
	background: #dce8d3;
	color: #2f4f35 !important;
	border: none;
}

.share-btn:hover {
	background: #c8dcc0;
	transform: translateY(-2px);
}
.copy-link {
	background: #dce8d3;
	color: #2f4f35 !important;
}

.copy-link:hover {
	background: #c8dcc0;
}

.animal-share a.copy-link {
	background: #dce8d3 !important;
	color: #2f4f35 !important;
	border-color: #dce8d3 !important;
}

/* REGLAGES ARTICLES */

/* Reduire la largeur du texte */
.single-post .entry-content {
	max-width: 780px;
	margin: auto;
}

/* Mettre une barre 'condividi questa pagina' */
.article-share {
	text-align: center;
	margin: 70px 0 30px;
	padding: 45px 20px;
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border-radius: 32px;
	border: 1px solid rgba(95,127,90,0.18);
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.article-share h2 {
	margin-bottom: 28px;
	color: #2f4f35;
}

.article-share-buttons {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px;
}

.article-share .share-btn {
	display: inline-block;
	padding: 14px 24px;
	border-radius: 999px;
	background: #dce8d3;
	color: #2f4f35 !important;
	text-decoration: none;
	font-weight: 700;
	transition: all 0.2s ease;
	box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.article-share .share-btn:hover {
	background: #c8dcc0;
	transform: translateY(-2px);
}

/* PAGE "ADOTTARE UN ANIMALE" */

/* Police pour les titres */
body.page-adottare-un-animale h1,
body.page-adottare-un-animale h2 {
	font-family: 'Playfair Display', serif;
	letter-spacing: -0.02em;
}

/* Resserer la typographie */
.adoption-page-content {
	max-width: 900px;
	margin: 0 auto;
}

.adoption-page-content p {
	margin-top: 0 !important;
	margin-bottom: 10px !important;
	line-height: 1.65;
}

.adoption-page-content h1,
.adoption-page-content h2,
.adoption-page-content h3 {
	margin-top: 34px !important;
	margin-bottom: 8px !important;
}

.adoption-page-content ul {
	margin-top: 4px !important;
	margin-bottom: 14px !important;
}

.adoption-page-content li {
	margin-bottom: 4px !important;
}

/* Animations au survol */
.adoption-card,
.adoption-photo img,
.adoption-final,
.adoption-buttons a {
	transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.adoption-card:hover,
.adoption-photo img:hover,
.adoption-final:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 36px rgba(0,0,0,0.08);
}

.adoption-buttons a:hover {
	transform: translateY(-3px);
}

/* Faire varier le fond de la page */
body.page-adottare-un-animale {
	background: #f7faf6;
}

body.page-adottare-un-animale .site-main {
	background: #f7faf6;
}

/* Encadres visuels */
.adoption-card {
	background: #ffffff;
	border-radius: 28px;
	padding: 34px;
	margin: 38px 0;
	box-shadow: 0 8px 28px rgba(0,0,0,0.06);
	border: 1px solid rgba(95,127,90,0.16);
}

.adoption-card h2,
.adoption-card h3 {
	border-bottom: 1px solid rgba(95,127,90,0.18);
	padding-bottom: 12px;
}

/* Ajouter des separateurs */
.adoption-card h2 {
	border-bottom: 1px solid rgba(95,127,90,0.15);
	padding-bottom: 12px;
}

/* Boutons avec liens pour adopter */
.adoption-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	justify-content: center;
	margin: 45px 0 20px;
}

.adoption-buttons a {
	padding: 15px 26px;
	border-radius: 999px;
	background: #dce8d3;
	color: #2f4f35 !important;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(0,0,0,0.07);
	transition: all 0.2s ease;
}

.adoption-buttons a:hover {
	background: #c8dcc0;
	transform: translateY(-2px);
}

/* Mise en page section adotta con il cuore */
.adoption-final {
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border: 1px solid rgba(95,127,90,0.18);
	border-radius: 36px;
	padding: 60px 34px;
	margin: 70px 0 45px;
	text-align: center;
	box-shadow: 0 10px 32px rgba(0,0,0,0.06);
}

.adoption-final-kicker {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 800;
	font-size: 0.85rem;
	color: #5f7f5a;
	margin-bottom: 12px !important;
}

.adoption-final h2 {
	max-width: 720px;
	margin: 0 auto 18px !important;
	color: #2f4f35;
	font-size: clamp(1.8rem, 4vw, 3rem);
}

.adoption-final blockquote {
	position: relative;
	font-family: 'Playfair Display', serif;
	font-size: clamp(2.4rem, 6vw, 4.8rem);
	font-weight: 700;
	line-height: 1.05;
	color: #2f4f35;
	margin: 34px auto;
	max-width: 900px;
	border: none;
	padding: 20px 30px;
}

.adoption-final blockquote::before,
.adoption-final blockquote::after {
	position: absolute;
	font-size: 5rem;
	color: rgba(95,127,90,0.22);
	font-family: Georgia, serif;
	line-height: 1;
}

.adoption-final blockquote::before {
	content: "“";
	top: -20px;
	left: -10px;
}

.adoption-final blockquote::after {
	content: "”";
	right: -10px;
	bottom: -45px;
}

.adoption-final {
	background: radial-gradient(circle at top left, #f5faf2, #edf4ea 45%, #ffffff);
}

.adoption-final p:last-child {
	max-width: 620px;
	margin: 0 auto !important;
	font-size: 1.15rem;
}

/* Mise en page section emotionnelle */
.adoption-emotional-end {
	background: #edf4ea;
	border-radius: 32px;
	padding: 50px 30px;
	text-align: center;
	margin: 60px 0 35px;
}

.adoption-emotional-end .small-text {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 0.85rem;
	font-weight: 700;
	color: #5f7f5a;
}

.adoption-emotional-end h2 {
	font-size: clamp(2rem, 5vw, 3.4rem);
	margin: 12px 0;
	color: #2f4f35;
}

.adoption-emotional-end p {
	max-width: 650px;
	margin-left: auto;
	margin-right: auto;
}

/* Mise en page photos */
.adoption-photo {
	margin: 45px 0;
}

.adoption-photo img {
	width: 100%;
	max-height: 360px;
	object-fit: cover;
	border-radius: 28px;
	box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

/* PAGE FARE UNA DONAZIONE */
/* Encadre introduction */
.donation-highlight {
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border-left: 5px solid #7c9a72;
	padding: 34px;
	border-radius: 28px;
	margin: 50px 0;
	box-shadow: 0 10px 28px rgba(0,0,0,0.05);
	text-align: center;
}

.donation-highlight h2 {
	margin-bottom: 14px;
	color: #2f4f35;
}

.donation-highlight p {
	font-size: 1.1rem;
	margin: 0 !important;
}

/* Encadre depenses */
/* Encadré dépenses */

.donation-expenses {
	background: #ffffff;
	border: 1px solid rgba(95,127,90,0.18);
	border-radius: 32px;
	padding: 40px;
	margin: 60px 0;
	box-shadow: 0 10px 28px rgba(0,0,0,0.05);
}

.donation-expenses h2 {
	text-align: center;
	margin-bottom: 35px;
	color: #2f4f35;
}

.donation-expenses-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 24px;
}

.donation-expense-item {
	background: #f7faf6;
	border-radius: 24px;
	padding: 24px;
	text-align: center;
	border: 1px solid rgba(95,127,90,0.12);
}

.donation-expense-item h3 {
	margin-bottom: 12px;
	color: #2f4f35;
}

.donation-expense-item p {
	margin: 0 !important;
	line-height: 1.6;
}


/* Encadré final émotionnel */

.donation-final {
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border: 1px solid rgba(95,127,90,0.18);
	border-radius: 36px;
	padding: 60px 34px;
	margin: 70px 0 45px;
	text-align: center;
	box-shadow: 0 10px 32px rgba(0,0,0,0.06);
}

.donation-final-kicker {
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: 800;
	font-size: 0.85rem;
	color: #5f7f5a;
	margin-bottom: 12px !important;
}

.donation-final h2 {
	max-width: 720px;
	margin: 0 auto 20px !important;
	color: #2f4f35;
	font-size: clamp(2rem, 4vw, 3.2rem);
}

.donation-final p {
	max-width: 700px;
	margin: 0 auto 24px !important;
	font-size: 1.1rem;
	line-height: 1.8;
}

.donation-final blockquote {
	font-family: 'Playfair Display', serif;
	font-size: clamp(2rem, 5vw, 4rem);
	line-height: 1.1;
	color: #2f4f35;
	margin: 35px auto 0;
	max-width: 850px;
	border: none;
}

/* POST EVENTO PIZZA 7 MARZO 2026 */

/*Encadre au debut */
.event-highlight {
	background: linear-gradient(135deg, #edf4ea, #ffffff);
	border-left: 5px solid #7c9a72;
	padding: 28px;
	border-radius: 24px;
	margin: 35px 0;
	font-size: 1.15rem;
	box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

/* Citation Gilda e Sofia hanno sentito tutto il vostro affetto */
.event-quote {
	font-family: 'Playfair Display', serif;
	font-size: 2rem;
	line-height: 1.3;
	text-align: center;
	color: #2f4f35;
	margin: 60px auto;
	max-width: 750px;
	font-style: italic;
}

/* Foogallery */
.foogallery {
	margin: 50px 0 !important;
}

.foogallery img {
	border-radius: 24px !important;
	box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.foogallery.fg-carousel .fg-item-inner {
	border-radius: 24px !important;
	overflow: hidden;
}

.foogallery.fg-carousel .fg-image {
	height: 420px !important;
	object-fit: cover !important;
}

/* Encadre merci a la fin */
.event-thanks {
	text-align: center;
	padding: 50px 30px;
	margin-top: 60px;
	background: #edf4ea;
	border-radius: 30px;
}