@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

body
{
	margin:0;
	padding:0;
	font-family: 'Manrope', sans-serif;
	font-weight: 400;
}

h1, h2, h3{
  font-weight: 700;
}

header
{
	width: 100%;
	background-color: #000;
	height: 66px;
	color: #fff;
	overflow: auto;
}

.slogan
{
	width: 100%;
	padding-top: 45px;
	padding-bottom: 45px;
	text-align: center;
	font-size: 31px;
	font-weight: bold;
	background-color: #be0a1d;
	color: #fff;
	margin-top: -4px;
}

.container
{
	width: 96%;
	margin-left: 2%;
	margin-right: 2%;
	box-sizing: border-box;
}

.logo
{
	float:left;
	width: 30%;
	padding-top: 8px;
	padding-left: 11px;
}

.logo img
{
	width:48%;
}

.menu
{
	float:left;
	padding-top: 22px;
	width: 50%;
}

.menu ul
{
	margin: 0;
	list-style: none;
}

.menu ul li
{
	float: left;
	color: #fff;
	margin-right: 40px;
}

.hero{
  position: relative;
  min-height: 75vh;
  background-image: url("/images/cimetiere.png"); /* ← TON IMAGE */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

/* Overlay sombre pour lisibilité */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.55);
}

/* Contenu */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: auto;
  padding: 40px;
  color: #fff;
  text-align: center
}

.hero-content h1{
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 10px;
}

.hero-content p{
  font-size: 20px;
  max-width: 600px;
  margin-bottom: 25px;
}

.hero-btn{
  display: inline-block;
  padding: 14px 22px;
  background: #ffffff;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.section{
  padding: 80px 0;
}

.wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.section h2{
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 20px;
}

.section p{
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

/* ABOUT */
.section-about{
  background: #f7f7f7;
}

.section-about .intro{
  max-width: 720px;
  margin-bottom: 40px;
}

.about-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-grid h3{
  margin-bottom: 8px;
}

/* PROJECT */
.section-projects{
  background: #ffffff;
}

.project-card{
  background: #111;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
}

.project-card p{
  color: #ddd;
}

/* CONTACT */
.section-contact{
  background: #f0f0f0;
}

.contact-mail a{
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */
.footer{
  background: #0d0d0d;
  color: #aaa;
  padding: 40px 0;
  font-size: 14px;
}

.footer a{
  color: #aaa;
  text-decoration: none;
}

.footer-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
}

.about-card{
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 22px;
}

.about-icon{
  width: 150px;
  height: 150px;
  margin: 0 auto 24px auto; /* centre + espace dessous */
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
}

/* SVG à l'intérieur */
.about-icon svg{
  width: 64px;
  height: 64px;
}

.about-card h3{
  margin: 0 0 10px 0;
}
