/**
 * Dona Main Styles - Elegant Design
 *
 * @package Dona
 * @version 2.1.0
 */

/* Navigation Buttons - Override any previous styles */
.dona-button {
	display: inline-block;
	padding: 14px 32px;
	border: 2px solid transparent;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dona-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	text-decoration: none !important;
}

.dona-button:active {
	transform: translateY(0);
}

/* Primary Button - Gold gradient for "Retour à l'accueil" */
.dona-button-primary {
	background: linear-gradient(135deg, #C9A961 0%, #B89D52 100%) !important;
	border-color: #A88B4A !important;
	color: #1a1a1a !important;
}

.dona-button-primary:hover {
	background: linear-gradient(135deg, #B89D52 0%, #A88B4A 100%) !important;
	border-color: #967A3E !important;
	color: #000 !important;
}

/* Secondary Button - Light beige for "Une autre peinture" */
.dona-button-secondary {
	background: #FFF8F0 !important;
	border-color: #D4B76A !important;
	color: #333333 !important;
}

.dona-button-secondary:hover {
	background: #FAF6E8 !important;
	border-color: #B89D52 !important;
	color: #1a1a1a !important;
}

/* Success Button - Green gradient */
.dona-button-success {
	background: linear-gradient(135deg, #6BA96D 0%, #5A8E5C 100%) !important;
	border-color: #4A7A4C !important;
	color: #fff !important;
}

.dona-button-success:hover {
	background: linear-gradient(135deg, #5A8E5C 0%, #4A7A4C 100%) !important;
	border-color: #3A6A3C !important;
	color: #fff !important;
}

/* Block button */
.dona-button-block {
	display: block;
	width: 100%;
}

/* Navigation container */
.dona-navigation {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-top: 30px;
	flex-wrap: wrap;
}

/* Responsive */
@media screen and (max-width: 768px) {
	.dona-button {
		padding: 12px 24px;
		font-size: 15px;
	}

	.dona-navigation {
		flex-direction: column;
	}

	.dona-navigation .dona-button {
		width: 100%;
	}
}
