/* Modern Dark Theme & Glassmorphism */

/* Global Background */
body {
	background: linear-gradient(180deg, #0f5281 0%, #03111b 100%) !important;
	background-attachment: fixed !important; /* Pour que le dégradé couvre tout le scroll */
	color: #ffffff;
	font-family: "Poppins", sans-serif; /* Si disponible, sinon hérite */
	min-height: 100vh;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
	color: #ffffff;
	font-weight: 700;
}

h1 {
	font-size: 2.5rem;
	margin-bottom: 1.5rem;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

h2 {
	color: #eb5a3a; /* Orange du thème */
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	padding-bottom: 10px;
	margin-bottom: 20px;
	font-size: 1.5rem;
}

h3 {
	font-size: 1.2rem;
	color: #eb5a3a;
	margin-top: 1.5rem;
}

/* Glassmorphism Container */
.glass-container {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 15px;
	padding: 25px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

/* Lists & Items */
.list-group {
	background: transparent !important;
}

.list-group-item {
	background: rgba(255, 255, 255, 0.03) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	margin-bottom: 5px;
	border-radius: 8px !important;
}

.list-group-item b {
	color: #ccc;
}

/* Badges */
.badge-info,
.bg-info {
	background-color: #4da6ff !important;
	color: #fff;
}

/* Buttons */
.btn-primary {
	background-color: #eb5a3a !important;
	border-color: #eb5a3a !important;
	color: #fff !important;
	border-radius: 25px;
	padding: 10px 20px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #d44d30 !important;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(235, 90, 58, 0.3);
}

/* Images */
.round-image {
	border-radius: 50%;
	border: 3px solid #eb5a3a;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Form Elements */
textarea.form-control {
	background: rgba(0, 0, 0, 0.2) !important;
	border: 1px solid rgba(255, 255, 255, 0.1) !important;
	color: #fff !important;
	border-radius: 10px;
}

textarea.form-control:focus {
	background: rgba(0, 0, 0, 0.3) !important;
	box-shadow: none;
	border-color: #eb5a3a !important;
}

/* Utility */
.text-muted {
	color: #aaa !important;
}

hr {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
