@font-face {
	font-family: 'Hallo-Almond';
	src: url('./assets/font/Hallo-Almond.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
  }
  @font-face {
	font-family: 'Avenir';
	src: url('./assets/font/Avenir-Roman.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
  }
  * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  body {
	font-family: 'Avenir', sans-serif;
	background-color: #f4eee6;
	color: #1c1c1c;
  }
  header {
	background-color: #2e3c2f;
	color: white;
	padding: 1rem 2rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: sticky;
	top: 0;
	z-index: 1000;
	flex-wrap: wrap;
  }
  header h1 {
	font-family: 'Hallo-Almond', serif;
	font-size: 1.5rem;
  }
  nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
  align-items: center;
  @media (max-width: 768px) {
    flex-direction: column;
  }
  }
  nav a {
	margin: 0.5rem 1rem;
	color: white;
	text-decoration: none;
	position: relative;
	font-size: 1rem;
  }
  nav a::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 0;
	width: 0;
	height: 2px;
	background: #f5a623;
	transition: 0.3s ease;
  }
  nav a:hover::after {
	width: 100%;
  }
  nav a.button {
	background-color: #f5a623;
	padding: 0.5rem 1rem;
	border-radius: 25px;
  }
  .hero {
    position: relative;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #2e3c2f;
    font-family: 'Hallo-Almond', serif;
    padding: 0 20px;
    overflow: hidden;
  }
  .hero-image {
	left: 100px;
    bottom: 100px;
    position: absolute;
    width: 40vw;
    height: 70vh;
    background-image: url('assets/ImagePlaceholder.png'); 
    background-size: cover;
    background-position: center;
    z-index: 100; 
    
  }
  .hero h1 {
    font-size: 150px;
    font-weight: bold;
    margin: 0;
    text-transform: uppercase;
	  position: relative;
    bottom: 240px;
    z-index: 200;
	  color: #fff;
    letter-spacing: 0.2rem;
  }

  .repeat-text {
    position: absolute;
    font-size: 150px;
    font-weight: bold;
    letter-spacing: 0.2rem;
    color: #f5a623;
    opacity: 0.2;
    line-height: 0.9;
    text-transform: uppercase;
    z-index: 1;
    user-select: none;
  }

  .partner-notice {
    position: absolute;
    bottom: 120px;
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.9;
    max-width: 500px;
    z-index: 200; 
    padding: 12px 20px;
    border-radius: 3px;
	text-align: left;
	left: 10px;
	color: #fff;
	font-family: 'Avenir', sans-serif;
  }

  .scroll-indicator {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
	z-index: 4;
  }

 .black-bar {
    height: 200px;
    width: 100%;
    background-color: #000;
	z-index: -100;
  }
  .scroll-down {
	top: 200px;
	background-color: #f5a623;
	padding: 0.75rem 1.5rem;
	border-radius: 50px;
	font-weight: bold;
	cursor: pointer;
	animation: bounce 2s infinite;
	z-index: 200;
	position: relative;
	color: #fff;
	font-family: 'Avenir', sans-serif;
  }
  @keyframes bounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(10px); }
  }
  section {
	padding: 4rem 2rem;
  }
  section h1 {
	font-family: 'Hallo-Almond', serif;
	font-size: 90px;
	margin-bottom: 1rem;
  }
  .about-container {
    margin: 4rem;
    
    
    @media (max-width: 768px) {
      padding-right: 0;
    }
  }
  .tags span {
	display: inline-block;
	background: #1c1c1c;
	color: #fff;
	padding: 0.4rem 0.8rem;
	margin: 0.2rem;
	border-radius: 15px;
	font-size: 0.9rem;
  }
  ul {
	list-style: none;
	padding-left: 1rem;
  }
  ul li::before {
	content: '★ ';
	color: #f5a623;
	margin-right: 0.5rem;
  }
  footer {
	text-align: center;
	padding: 2rem;
	background: #2e3c2f;
	color: white;
  }

  @media (max-width: 768px) {
	header {
	  flex-direction: column;
	  text-align: center;
	}
	nav {
	  flex-direction: column;
	  align-items: center;
	}
	.hero h1, .repeat-text {
	  font-size: 4rem;
    
	}
  .repeat-text {
    top: 100px;
    line-height: 1.2;
    font-weight: 100;
    text-shadow:
    1px 1px 0 #f5a623,
    -1px 1px 0 #f5a623,
    1px -1px 0 #f5a623,
    -1px -1px 0 #f5a623,
    1px 0px 0 #f5a623,
    0px 1px 0 #f5a623,
    -1px 0px 0 #f5a623,
    0px -1px 0 #f5a623;
  }
  .hero-image {
    width: 80vw;
    height: 50vh;
    left: auto;
    
  }
  .partner-notice {
    bottom: 10px;
    
  }
	section {
	  padding: 2rem 1rem;
	}
	section h3 {
	  font-size: 1.5rem;
	}
  }

/* --- Menu Burger --- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}
.burger span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #f5a623;
  border-radius: 2px;
  transition: 0.3s;
}

@media (max-width: 768px) {
  .burger {
    display: flex;
  }
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100vw;
    background: #2e3c2f;
    z-index: 1000;
    padding: 2rem 0;
    text-align: center;
  }
  nav.open {
    display: flex;
  }
  nav a {
    margin: 1rem 0;
    font-size: 1.3rem;
  }
  header {
    position: sticky;
    flex-direction: row;
  }
}

.burger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Résumé en deux colonnes --- */
.resume-grid {
  background-color: #2e3c2f;
  color: #fff;
  display: flex;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.resume-col {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.block {
  background: #2e3c2f;
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}
.block h2 {
  font-family: 'Hallo-Almond', serif;
  color: #f5a623;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.edu-item, .exp-item {
  margin-bottom: 1.2rem;
}
.edu-date, .exp-date {
  color: #f5a623;
  font-weight: bold;
  margin-right: 1rem;
}
.edu-title, .exp-title {
  font-weight: bold;
}
.tags {
  margin-top: 1rem;
}
.tags span {
  display: inline-block;
  background: #f5a623;
  color: #2e3c2f;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin: 0.2rem 0.4rem 0.2rem 0;
  font-size: 1rem;
  font-weight: 500;
}
.skills-list {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}
.skills-list strong {
  color: #fff;
  font-size: 1.1rem;
}
.icons span {
  display: inline-block;
  background: #fff;
  color: #2e3c2f;
  border-radius: 6px;
  padding: 0.2rem 0.6rem;
  margin: 0.1rem;
  font-weight: bold;
}
.languages .lang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.languages .lang-list > div {
  min-width: 120px;
}
@media (max-width: 900px) {
  .resume-grid {
    flex-direction: column;
  }
}
/* Suppression des anciennes règles inutiles */
.education, .experience, .skills {
  background: none;
  color: inherit;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
  box-shadow: none;
}
.skills{
  margin-top: 300px;
}
.education h3, .experience h3, .skills h3 {
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  margin-bottom: 0;
}
.education p, .experience p, .skills p {
  margin-bottom: 0;
}
.about-flex {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.experience.block{
  background-color: #f5a623;
  margin: 10px;
  span{
    color: #000;
  }
  
}
.contact.block {
  margin: 0 0 20px 0;
  z-index: 100;
  flex: 0 0 320px;
  background-color: rgba(255, 255, 255, 0);
  color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin-bottom: -500px;
  .bg{
    background-color: #2e3c2f;
  }
  .black{
    margin: -10px 0 20px 0;
    background-color: #000;
    padding: 2rem;
  }
}
@media (max-width: 900px) {
  .about-flex {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact.block {
    max-width: 100%;
    width: 100%;
    margin-bottom: 1rem;
  }
}