/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
  line-height: 1.6;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
  font-size: 22px;
  font-weight: bold;
  color: #0060B1;
}

.logo .tc {
  color: #1190EB;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.menu a:hover {
  color: #1190EB;
}

.menu .contact {
  background: #555;
  color: #fff;
  padding: 8px 18px;
  border-radius: 25px;
  transition: background 0.3s;
}

.menu .contact:hover {
  background: #333;
}

/* HERO */
.hero {
	position: relative;
  padding: 50px 60px;
/*	background: lightgray; */
}
.content{
	position: relative;
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	height: auto;
/*	background: gray; */
}

.hero-left {
	position: relative;
	width: 40%;
	top: 30px;
  display: flex;
  justify-content: center;
}

.student-bg {
	width: 25vw;
  /*background: #2563eb20; */ /* bleu clair transparent */
	/* padding: 20px; */
  border-radius: 20px;
}

.student-img {
  max-width: 100%;
  border-radius: 10px;
/*  box-shadow: 0 4px 10px rgba(0,0,0,0.2); */
}

.hero-right h1 {
  font-size: 3rem;
  color: #fff;
  margin: 0 auto 15px auto;
}

.hero-right {
	position: relative;
	width: 60%;
	top: 2vw;
/*	background-color: coral; */
}

.titre_bienvenue {
	position: relative;
  display: inline-block;
  background: #0060B1;
  color: white;
	left: 50%;
  transform: translate(-50%);
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.departements_text{
	position: relative;
	width: 33vw;
	height: auto;
/* background-color: salmon; */
	margin: 0 auto;
  text-align: center;
}

.hero-right h2 {
  color: #555;
  margin-bottom: 20px;
	font-size: 1.3rem;
}

.hero-right .carte {
	position: relative;
  max-width: 430px;
  display: block;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
	left: 50%;
	transform: translate(-50%);
}

.cta {
	position: relative;
  display: inline-block;
  background: #0060B1;
  color: white;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
	left: 50%;
  transform: translate(-50%);
}

.cta:hover {
  background: #1190EB;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-left {
    order: -1; /* Passe l’image au-dessus du texte */
  }
}