
/*
Theme Name: Leonie Portfolio V3
Author: OpenAI
Version: 3.0
Description: Portfolio WordPress artistique pour Léonie Pruniaux
*/

:root{
  --bg:#fff8fb;
  --rose:#e7bfd2;
  --rose-dark:#b76b92;
  --violet:#6d5b8c;
  --text:#2d2431;
  --muted:#746776;
  --card:rgba(255,255,255,0.75);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(231,191,210,0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(109,91,140,0.15), transparent 35%),
    var(--bg);
  line-height:1.7;
}

.container{
  width:min(1180px,90%);
  margin:auto;
}

a{
  text-decoration:none;
  color:inherit;
}

header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(255,255,255,0.55);
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:1.2rem 0;
}

.logo-placeholder{
  width:160px;
  height:50px;
  border:2px dashed rgba(183,107,146,0.4);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:0.8rem;
  color:var(--muted);
  background:rgba(255,255,255,0.5);
}

.menu{
  display:flex;
  gap:2rem;
  font-weight:600;
}

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  padding-top:7rem;
}

.hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}

.hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:5rem;
  line-height:1;
  margin-bottom:1.5rem;
  color:var(--violet);
}

.hero p{
  max-width:560px;
  color:var(--muted);
  margin-bottom:2rem;
  font-size:1.08rem;
}

.btns{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.btn{
  padding:1rem 1.6rem;
  border-radius:999px;
  transition:0.3s ease;
  font-weight:600;
}

.btn-primary{
  background:linear-gradient(135deg,var(--rose-dark),var(--violet));
  color:white;
}

.btn-secondary{
  background:white;
  border:1px solid rgba(0,0,0,0.08);
}

.btn:hover{
  transform:translateY(-3px);
}

.hero-visual{
  height:580px;
  border-radius:36px;
  background:
  linear-gradient(rgba(109,91,140,0.3),rgba(109,91,140,0.3)),
  url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1200&auto=format&fit=crop');
  background-size:cover;
  background-position:center;
  box-shadow:0 30px 80px rgba(109,91,140,0.18);
}

section{
  padding:6rem 0;
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:4rem;
  margin-bottom:1rem;
  color:var(--violet);
}

.section-text{
  max-width:720px;
  margin-bottom:3rem;
  color:var(--muted);
}

.about{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:3rem;
}

.card{
  background:var(--card);
  border-radius:30px;
  padding:2.2rem;
  backdrop-filter:blur(10px);
  box-shadow:0 20px 40px rgba(0,0,0,0.04);
}

.skills{
  display:flex;
  flex-wrap:wrap;
  gap:1rem;
  margin-top:2rem;
}

.skill{
  background:white;
  padding:0.8rem 1rem;
  border-radius:999px;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2rem;
}

.contact-box{
  background:var(--card);
  padding:2rem;
  border-radius:28px;
}

footer{
  padding:3rem 0;
  border-top:1px solid rgba(0,0,0,0.06);
}

.footer-flex{
  display:flex;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
}

.legal{
  max-width:700px;
  color:var(--muted);
  font-size:0.95rem;
}

@media(max-width:900px){

  .hero-grid,
  .about,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:3.6rem;
  }

  .menu{
    display:none;
  }
}
