:root {
  /* 🎨 Palette pastel */
  --beige-doux: #F6EEE8;
  --terracotta-pastel: #D9A79C;
  --vert-sauge-clair: #C6D2C0;
  --gris-taupe: #4B4B4B;
  --blanc-casse: #FFFDF8;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--beige-doux) url('/Assets/images/background.png') no-repeat center/cover;
  color: var(--gris-taupe);
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(246, 238, 232, 0.3); /* beige doux semi-transparent */
  mix-blend-mode: multiply;
  z-index: -1;
}


header {
  text-align: center;
  padding: 30px;
}

.logo {
  width: 180px;
}

main {
  max-width: 900px;
  margin: auto;
  padding: 20px;
}

.presentation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  text-align: left;
  background-color: rgba(255, 253, 248, 0.9); /* beige translucide */
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 30px;
  
}

.portrait {
  width: 280px;
  border-radius: 20px;
}

.texte h1 {
  color: var(--terracotta-pastel);
  font-weight: 500;
}

.liens a {
  margin-right: 15px;
  text-decoration: none;
  color: var(--vert-sauge-clair);
  font-weight: 500;
}

.liens a:hover {
  color: var(--terracotta-pastel);
}

.bouton {
  display: inline-block;
  background-color: var(--terracotta-pastel);
  color: var(--blanc-casse);
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
  
}

.bouton:hover {
  background-color: var(--vert-sauge-clair);
  color: var(--gris-taupe);
}

footer {
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: var(--gris-taupe);
  opacity: 0.7;
}

/* Galerie */
.galerie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.galerie img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.galerie img:hover {
  transform: scale(1.03);
}

.retour {
  display: block;
  text-align: center;
  margin: 40px auto;
  width: fit-content;
}
.ambiance {
  margin-top: 60px;
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(255, 253, 248, 0.9); /* beige translucide */
  border-radius: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.ambiance h2 {
  color: var(--terracotta-pastel);
  margin-bottom: 15px;
  font-weight: 500;
}
.contact {
  margin-top: 80px;
  padding: 60px 30px;
  text-align: center;
  background-color: rgba(255, 253, 248, 0.8);
  border-radius: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact h2 {
  color: var(--terracotta-pastel);
  margin-bottom: 15px;
  font-weight: 500;
  font-size: 1.8rem;
}

.contact p {
  color: var(--gris-taupe);
  line-height: 1.6;
  font-size: 1rem;
  margin-bottom: 20px;
}

.contact a {
  color: var(--vert-sauge-clair);
  text-decoration: none;
  font-weight: 500;
}

.contact a:hover {
  color: var(--terracotta-pastel);
}

.map iframe {
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* ===== Page Prendre RDV : mise en page propre ===== */

.rdv-page{
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 6rem 1rem;
}

.rdv-card{
  width: 100%;
  max-width: 560px;
  padding: 2.5rem 2rem;
  border-radius: 6px;
  background: rgba(255,255,255,0.90);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.rdv-card h1{
  text-align: center;
  margin-bottom: 0.5rem;
}

.rdv-card p{
  text-align: center;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.rdv-card form{
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.rdv-card label{
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.rdv-card input,
.rdv-card textarea{
  font-family: inherit;
  padding: 0.7rem 0.8rem;
  border: 1px solid #bbb;
  border-radius: 4px;
}

.rdv-card textarea{
  resize: vertical;
  min-height: 120px;
}

.rdv-card button{
  margin-top: 0.5rem;
  padding: 0.9rem;
  border: none;
  background: #000;
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rdv-card button:hover{
  opacity: 0.85;
}
