@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
:root{
     --ink:    #0e0e0e;   /* Noir principal (texte, bordures) */
  --cream:  #f5f0e8;   /* Fond beige crème */
  --muted:  #a09880;   /* Gris chaud (textes secondaires) */
  --accent: #c8a96e;   /* Or/doré (highlights, cadre photo) */
  --line:   rgba(14,14,14,.12); /* Bordures subtiles */
}
body
{
    box-sizing: border-box;
    margin: 0;
    background-color: #f5f0e8;
    font-family: "Garamond";

}
header{
    height:80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
}
header div h1 a{
    font-family: "Cormorant";
    color: var(--ink);
    font-weight: 100;
    text-decoration: double;
}
.header_list_content ul{
    list-style: none;
    display: flex;
    gap:3.5rem;
}
.header_list_content ul li a{
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--muted);
    font-family: "Mono";
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .3s;
    transition-behavior: normal;
    transition-duration: 0.3s;
    transition-timing-function: ease;
    transition-delay: 0s;
    transition-property: color;
}
.header_list_content ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .35s;
}
#hero{
    min-height: 80vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0rem 4rem;
    gap: 4rem; 
    max-width: 1400px; 
    margin: 0 auto;
}
#hero-projects{
  width: 800px;
  background-color:#f5f2ed;
  float: left;
  margin: 50px 20%;
  padding: 10px 20px;
  border-left:2px solid var(--accent) ;
}
#hero-projects h1{
  text-align: center;
  font-family: 'Garamond';
  font-style: italic;
  color: #c8a96e;
  font-size: 3rem;
  text-transform: uppercase;
}
dl { display: flex; 
  flex-direction: column; 
  gap: .6rem; 
}

.item {
  background: #ede7d9;
  padding: .9rem 1.2rem;
}
dt {
   font-size: 17px; 
   text-transform: uppercase; 
   color: #c8a96e; 
   font-weight: bolder;
   
  }
dd
 { font-size: 15px; 
  color: #a09880;
  font-weight: bold;
  margin: 0; 
}
.hero-tag{
    font-family: "Montserrat";
    letter-spacing: .15em;
    color:var(--accent);
    font-weight: 500;
    font-size: 1.2rem;
    text-transform: uppercase;
}
.hero-tag i{
    font-size: 30px;
}
.hero-title{
    font-size: 50px;
    font-weight: 300;
}
.hero-title span{
    font-style: italic;
    color: #c8a96e;
    font-size: 70px;
}
.typed-cursor {
  font-weight: 300;
  animation: blink 0.7s infinite;
  font-size: 50px;
}
.hero-subtitle{
    font-family: "Cormorant";
    font-size: 25px;
    color: #a09880;
}
.hero-image img{
    width: 450px;
    height: 450px;
    border-radius: 50%;
    object-fit: cover;
}
.hero-buttons{
    margin-top: -50px;
    font-family: 'Poppins';
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.btn {
  color:var(--ink);
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 500;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.btn:hover {
  color: white;
  gap: 5px;
}

.btn::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color:var(--ink);
  z-index: -1;
  transition: all 1s;
}

.btn:hover::before {
  width: 160%;
}
.btn_button {
  color:var(--cream);
  text-transform: uppercase;
  text-decoration: none;
  border:none;
  padding: 10px 20px;
  font-size: 17px;
  cursor: pointer;
  font-weight: 500;
  background: var(--ink);
  position: relative;
}

footer {
  width: 100%;
  height: 80px;
  border-top: 1px solid var(--line);
  margin-top: 50px;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer ol {
  display: flex;  
  gap: 5rem; 
  list-style: none;   
  margin: 0;            
  padding: 0;           
}

footer ol li a {
  font-family: 'Garamond';
  text-decoration: none;
  color: var(--muted);
  font-size: 1rem;
  font-weight: bold;
}