/* === SECTION PROJETS === */
.projects-section {
  background: #f9f9f9;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  font-size: 36px;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: 700;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 50px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.project-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.project-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #1F2A44;
}

.project-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.btn-project {
  display: inline-block;
  background: #1F2A44;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.btn-project:hover {
  background: #fff;
  color: #1F2A44;
  border: 2px solid #1F2A44;
}


  .copyright {
	background-color: #222;
	color: white;
	display: flex;
	justify-content: space-between;
	padding: 15px 30px;
	font-size: 14px;
	width: 100%;
	position: relative;
  }


.wrapper {
  min-height: 100vh;    
  display: flex;
  flex-direction: column;
}

/* Le contenu pousse le footer vers le bas */
.wrapper > * {
  flex: 1 0 auto;
}

/* Footer collé en bas */
.footer {
  background-color: transparent;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  margin-top: auto;          /* pousse le footer vers le bas */
  box-sizing: border-box;
}

