/* Police principale : élégante & douce */
body {
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: #444;
  background-color: #fffdf8;
  line-height: 1.6;
}

/* Container */
.container {
  width: 70%;
  max-width: 1100px;
  margin: auto;
}

/* Header */
header {
  background: #f9f5f0;
  top: 0;
  z-index: 1000;
  height : 200px;
}

.logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin: 0;
  color: #7a5c58;
}
.logo img {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  text-decoration: none;
  color: #7a5c58;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #c09c90;
}

/* Hero section */
.hero {
	background-image: url('../images/banniere2.jpg');

  background-size: cover;
  background-position: center;
  padding: 8rem 1rem;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

.hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-button {
  background: #e6cfc3;
  color: #5a3f3f;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #d8bfb3;
}

/* Intro */
.intro {
  padding: 4rem 1rem;
  background-color: #fffdf8;
}

.intro-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Optionnel : si tu veux réduire encore la taille sur les petits écrans */
@media screen and (max-width: 480px) {
  .intro-image img {
    max-width: 90%;
    border-radius: 15px;
  }
}

.intro-text {
  flex: 1;
  min-width: 300px;
  text-align: justify;
}

.intro-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #7a5c58;
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-text {
    padding-top: 1rem;
  }
}

/* Contact banner */
.contact-banner {
  background-color: #f9f5f0;
  padding: 4rem 1rem 2rem;
  text-align: center;
}

.contact-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: #7a5c58;
  margin-bottom: 0.5rem;
}

.contact-banner p {
  font-size: 1.1rem;
  color: #5a4c48;
}

/* Contact form */
.contact-form-section {
  background: #fffdf8;
  padding: 3rem 1rem;
}

.contact-form-container {
  max-width: 600px;
  margin: auto;
}

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

.contact-form label {
  font-weight: 500;
  color: #7a5c58;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd5cf;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  background-color: #fff;
  color: #444;
}

.contact-form button {
  background-color: #e6cfc3;
  color: #5a3f3f;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #d8bfb3;
}



/* Footer */
footer {
  background: #f9f5f0;
  text-align: center;
  padding: 2rem 1rem;
  color: #7a5c58;
  font-size: 0.9rem;
  border-top: 1px solid #e4ded8;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  header.hide-on-scroll {
    transform: translateY(-100%);
    transition: transform 0.3s ease;
  }

  header.show-on-scroll {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
}
.service-card {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.service-card.reverse {
  flex-direction: row-reverse;
}

.card-content {
  flex: 1 1 50%;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.95);
}

.card-content h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #694b7d;
}

.card-content h3 {
  font-size: 1.2rem;
  color: #a376b3;
  margin-bottom: 1rem;
}

.card-content p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #444;
  text-align: justify;
}
.servicetarif {
	color: #694b7d !important;
	font-weight: bold;	
	font-size: 1.1rem;
}


.service-btn {
  background-color: #bba1cc;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  align-self: start;
  transition: background 0.3s ease;
}

.service-btn:hover {
  background-color: #a487b9;
}

.card-image {
 width: 200px;
 height : 200px;
  border-radius: 50%;
  object-fit: cover;
  float : right;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .service-card {
    flex-direction: column;
  }

  .card-image {
	min-width : 200px;
    min-height: 200px;
  }

  .card-content {
    padding: 0.5rem;
  }
}


/* Responsive */
@media screen and (max-width: 768px) {
  .service-card {
    flex-direction: column;
  }

  .service-card.reverse {
    flex-direction: column;
  }

  .card-image {
    min-height: 200px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .service-block,
  .service-block.reverse {
    flex-direction: column;
  }

  .service-text,
  .service-img {
    padding: 0.5rem;
    text-align: center;
  }

  .service-text h2 {
    font-size: 1.7rem;
  }

  .service-btn {
    font-size: 1rem;
  }

  .service-img img {
    width: 180px;
    height: 180px;
  }


}
.rdv-btn {
  background-color: #bba1cc;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 1.5rem;
  text-decoration: none;
  align-self: start;
  transition: background 0.3s ease;
}

.rdv-btn {
    font-size: 0.7rem;
  }

.cgu-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background-color: #fffaf7;
  color: #5e4a47;
  font-family: 'Cormorant Garamond', serif;
}

.cgu-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #7a5c58;
  text-align: center;
}

.cgu-section {
  margin-bottom: 2.5rem;
}

.cgu-section h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #9c7169;
  border-bottom: 1px solid #e8dad3;
  padding-bottom: 0.5rem;
}

.cgu-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.cgu-section a {
  color: #b38882;
  text-decoration: underline;
}
.cgv-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  background-color: #fffaf7;
  color: #5e4a47;
  font-family: 'Cormorant Garamond', serif;
}

.cgv-title {
  font-size: 2.5rem;
  margin-bottom: 2.5rem;
  color: #7a5c58;
  text-align: center;
}

.cgv-section {
  margin-bottom: 2rem;
}

.cgv-section h2 {
  font-size: 1.5rem;
  color: #9c7169;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid #e8dad3;
  padding-bottom: 0.4rem;
}

.cgv-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #5c4a44;
}

.cgv-section a {
  color: #b38882;
  text-decoration: underline;
}
.site-footer {
  background-color: #f5e9e4;
  padding: 2rem 1.5rem;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: #5c4a44;
  border-top: 1px solid #e0d3cd;
 
  margin-top: 4rem;
}

.footer-container {
  max-width: 960px;
  margin: 0 auto;
}

.footer-links {
  margin-top: 0.5rem;
}

.footer-links a {
  margin: 0 0.8rem;
  text-decoration: none;
  color: #a0756d;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #7a5c58;
}

	.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial {
  background: var(--light);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 86, 27, 0.1);
  position: relative;
}

.testimonials-page {
  padding: 4rem 1.5rem;
  background-color: #fffaf7;
  font-family: 'Cormorant Garamond', serif;
  color: #5c4a44;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-title {
  text-align: center;
  font-size: 2.5rem;
  color: #7a5c58;
  margin-bottom: 1rem;
}

.testimonials-intro {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #8b6c65;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: #fdf4f1;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 10px rgba(120, 98, 94, 0.1);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  color: #9c7169;
}
.testimonial-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

.testimonial-button {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  font-size: 1.1rem;
  font-family: 'Cormorant Garamond', serif;
  background-color: #e9cfc7;
  color: #5e4a47;
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-button:hover {
  background-color: #d8b7af;
  transform: translateY(-2px);
}

.container {
  max-width: 700px;
  margin: auto;
  padding: 2rem;
}

.rendezvous-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rendezvous-form input,
.rendezvous-form textarea,
.rendezvous-form select {
  padding: 0.7rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
}

.rendezvous-form button {
  padding: 0.8rem;
  background-color: #cbb1d2;
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.rendezvous-form button:hover {
  background-color: #b497c0;
}

.confirmation {
  background-color: #d4edda;
  color: #155724;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}


.calendar {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fffafc;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  font-family: 'Quicksand', sans-serif;
}

.calendar-header {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #b06c9f;
  font-weight: bold;
}
.calendar-header a{
	color: #b06c9f;
	text-decoration: none;
}

.calendar-days,
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.calendar-days div {
  text-align: center;
  font-weight: 600;
  color: #6b4c68;
  padding: 0.5rem 0;
  background: #f4e9f4;
  border-radius: 12px;
}

.calendar-dates div {
  background-color: #fff;
  border-radius: 12px;
  border: 1px solid #e6d5ec;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
  min-height: 100px;
  height: 100px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  transition: 0.3s;
}

.calendar-dates div:hover {
  background-color: #fef2f8;
  box-shadow: 0 2px 8px rgba(176, 108, 159, 0.1);
}

.calendar-dates div a {
  display: block;
  margin-top: 4px;
  padding: 2px 6px;
  background-color: #dcbbe5;
  color: #472c4c;
  text-decoration: none;
  font-size: 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  text-align: center;
}

.calendar-dates div a:hover {
  background-color: #c99bd6;
}


/* Responsive */
@media (max-width: 768px) {
  .calendar {
    padding: 0.5rem;
  }

  .calendar-days div,
  .calendar-dates div {
    font-size: 0.55rem;
  }

  .calendar-dates div {
    min-height: 90px;
    height: 90px;
  }

  .calendar-dates div a {
    font-size: 0.5rem;
    padding: 2px 4px;
  }
}

.booking-section {
  padding: 3rem 1rem;
  background: #fffdf8;
}

.booking-header {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  margin-bottom: 1.5rem;
  text-align: center;
}

.booking-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #694b7d;
  margin: 0 0 .5rem;
}

.booking-header .info {
  color: #8b6c65;
  margin: 0;
}

.booking-calendar {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: .5rem;
}

.booking-nav a {
  background: #e6cfc3;
  color: #5a3f3f;
  padding: .6rem 1.2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  transition: background .3s;
}

.booking-nav a:hover {
  background: #d8bfb3;
}

.booking-nav a.disabled {
  opacity: .3;
  pointer-events: none;
}

.booking-nav strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: #7a5c58;
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .5rem;
}

.booking-col {
  background: #fdf4f1;
  border-radius: .8rem;
  padding: .8rem .4rem;
  min-height: 150px;
}

.booking-day {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  color: #694b7d;
  font-weight: bold;
  padding-bottom: .5rem;
  margin-bottom: .6rem;
  border-bottom: 1px solid #e8dad3;
}

.booking-day .date {
  display: block;
  font-size: .85rem;
  color: #8b6c65;
  font-weight: normal;
  margin-top: 2px;
  font-family: 'Raleway', sans-serif;
}

.hour-block {
  margin-bottom: .4rem;
}

.hour-btn {
  width: 100%;
  border: none;
  background: #e4d0ec;
  color: #694b7d;
  padding: .5rem;
  border-radius: .5rem;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  transition: background .3s, color .3s;
}

.hour-btn:hover {
  background: #bba1cc;
  color: white;
}

.hour-slots {
  display: none;
  margin-top: .4rem;
}

.hour-slots.open {
  display: block;
}

.slot {
  display: block;
  background: #f5e9f5;
  color: #5a3f5a;
  text-decoration: none;
  text-align: center;
  padding: .4rem;
  margin-bottom: .3rem;
  border-radius: .4rem;
  font-size: .85rem;
  transition: background .3s, color .3s;
}

.slot:hover {
  background: #bba1cc;
  color: white;
}

.booking-empty {
  text-align: center;
  color: #c9b5b0;
  font-style: italic;
  padding: 1rem 0;
  font-size: .8rem;
}

/* Responsive calendrier */
@media (max-width: 768px) {
  .booking-section { padding: 1.5rem .5rem; }
  .booking-grid { gap: .3rem; }
  .booking-col { padding: .5rem .2rem; min-height: 110px; }
  .booking-day { font-size: .8rem; }
  .booking-day .date { font-size: .7rem; }
  .hour-btn { font-size: .75rem; padding: .3rem; }
  .slot { font-size: .7rem; padding: .3rem; }
  .booking-nav strong { font-size: 1rem; }
  .booking-nav a { padding: .4rem .8rem; font-size: .85rem; }
}

@media (max-width: 480px) {
  .booking-header { padding: 1rem; }
  .booking-header h2 { font-size: 1.5rem; }
  .booking-calendar { padding: .8rem; }
  .booking-day { font-size: .7rem; }
  .hour-btn { font-size: .65rem; padding: .25rem; }
  .slot { font-size: .65rem; }
}
.booking-form-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
  max-width: 600px;
  margin: 0 auto;
}

.booking-form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #694b7d;
  margin: 0 0 1.5rem;
  text-align: center;
}

.booking-recap {
  background: #fdf4f1;
  padding: 1rem 1.2rem;
  border-radius: .8rem;
  margin-bottom: 1.5rem;
  color: #5c4a44;
  font-size: 1rem;
  line-height: 1.6;
}

.booking-recap strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: #7a5c58;
  margin-bottom: .3rem;
}

.booking-change-link {
  display: inline-block;
  margin-top: .5rem;
  color: #bba1cc;
  text-decoration: none;
  font-size: .9rem;
  transition: color .3s;
}

.booking-change-link:hover {
  color: #694b7d;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.booking-form label {
  font-weight: 500;
  color: #7a5c58;
  margin-bottom: -.5rem;
}

.booking-form input,
.booking-form textarea {
  padding: .8rem;
  border: 1px solid #ddd5cf;
  border-radius: 8px;
  font-family: 'Raleway', sans-serif;
  font-size: 1rem;
  background-color: #fff;
  color: #444;
  width: 100%;
  box-sizing: border-box;
}

.booking-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: 'Raleway', sans-serif;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: #bba1cc;
}

.booking-form button {
  background-color: #bba1cc;
  color: white;
  border: none;
  padding: .9rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .3s;
  margin-top: .5rem;
  font-family: 'Raleway', sans-serif;
}

.booking-form button:hover {
  background-color: #a487b9;
}

.booking-error {
  background: #f8d7da;
  color: #721c24;
  padding: .8rem 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  font-size: .95rem;
}

.booking-success {
  text-align: center;
  padding: 1rem;
}

.booking-success h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #694b7d;
  margin: 0 0 1rem;
}

.booking-success p {
  color: #5c4a44;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.booking-success .cta-button {
  margin-top: 1rem;
  display: inline-block;
}

/* Responsive formulaire */
@media (max-width: 600px) {
  .booking-form-card {
    padding: 1.2rem;
  }
  .booking-form-title {
    font-size: 1.6rem;
  }
  .booking-success h2 {
    font-size: 1.6rem;
  }
}
/* ============================================
   ADMINISTRATION
   À ajouter à la fin de style.css
   ============================================ */

/* --- Page de connexion --- */
.admin-login-body {
  background: linear-gradient(135deg, #f5e9e4 0%, #e4d0ec 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 1rem;
  font-family: 'Raleway', sans-serif;
}

.admin-login-form {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 1.2rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 8px 24px rgba(105, 75, 125, .15);
  text-align: center;
}

.admin-login-form h1 {
  font-family: 'Cormorant Garamond', serif;
  color: #694b7d;
  font-size: 2rem;
  margin: 0 0 .3rem;
}

.admin-login-sub {
  color: #8b6c65;
  font-size: .95rem;
  margin: 0 0 1.5rem;
  font-style: italic;
}

.admin-login-form input {
  width: 100%;
  padding: .9rem;
  margin-bottom: 1rem;
  border: 1px solid #ddd5cf;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 1rem;
  font-family: 'Raleway', sans-serif;
}

.admin-login-form input:focus {
  outline: none;
  border-color: #bba1cc;
}

.admin-login-form button {
  width: 100%;
  padding: .9rem;
  background: #bba1cc;
  color: #fff;
  border: none;
  border-radius: 2rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  transition: background .3s;
}

.admin-login-form button:hover {
  background: #a487b9;
}

.admin-login-err {
  color: #721c24;
  background: #f8d7da;
  padding: .6rem;
  border-radius: 6px;
  font-size: .9rem;
  margin-bottom: 1rem;
}

/* --- Bandeau admin --- */
.admin-body {
  background: #fffdf8;
  margin: 0;
  font-family: 'Raleway', sans-serif;
  color: #5c4a44;
}

.admin-bar {
  background: #694b7d;
  color: #fff;
  padding: 1rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.admin-bar-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.admin-bar h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin: 0;
  color: #fff;
}

.admin-bar h1 span {
  font-size: 1rem;
  color: #e4d0ec;
  font-style: italic;
  font-weight: normal;
}

.admin-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.admin-nav a {
  color: #e4d0ec;
  text-decoration: none;
  padding: .4rem .9rem;
  border-radius: 2rem;
  transition: background .3s, color .3s;
  font-size: .95rem;
}

.admin-nav a:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.admin-nav a.active {
  background: #fff;
  color: #694b7d;
  font-weight: 600;
}

.admin-nav a.logout {
  margin-left: auto;
  color: #f5e9e4;
  font-size: .85rem;
}

.admin-nav a.logout:hover {
  color: #fff;
}

/* --- Contenu principal --- */
.admin-wrap {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.admin-card {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.admin-card h2 {
  font-family: 'Cormorant Garamond', serif;
  color: #694b7d;
  font-size: 1.6rem;
  margin: 0 0 1.2rem;
}

.admin-msg {
  background: #d4edda;
  color: #155724;
  padding: .9rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: .95rem;
}

.admin-empty {
  color: #8b6c65;
  font-style: italic;
  text-align: center;
  padding: 1rem 0;
}

/* --- Formulaire inline --- */
.admin-form-inline {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: end;
  background: #fdf4f1;
  padding: 1.2rem;
  border-radius: .8rem;
}

.admin-field {
  display: flex;
  flex-direction: column;
}

.admin-field label {
  font-size: .85rem;
  color: #7a5c58;
  margin-bottom: .3rem;
  font-weight: 500;
}

.admin-field input {
  padding: .6rem .8rem;
  border: 1px solid #ddd5cf;
  border-radius: 6px;
  font-size: .95rem;
  font-family: 'Raleway', sans-serif;
  background: #fff;
}

.admin-field input:focus {
  outline: none;
  border-color: #bba1cc;
}

.admin-field-buttons {
  flex-direction: row;
  gap: .5rem;
  align-items: end;
}

.admin-btn {
  background: #bba1cc;
  color: #fff;
  border: none;
  padding: .65rem 1.3rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: .95rem;
  font-family: 'Raleway', sans-serif;
  text-decoration: none;
  display: inline-block;
  transition: background .3s;
}

.admin-btn:hover {
  background: #a487b9;
}

.admin-btn-cancel {
  background: #c9b5b0;
}

.admin-btn-cancel:hover {
  background: #a8938d;
}

/* --- Tableau --- */
.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: .9rem .8rem;
  border-bottom: 1px solid #f0e6e0;
  text-align: left;
  font-size: .95rem;
  vertical-align: top;
}

.admin-table th {
  background: #f5e9e4;
  color: #694b7d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: #fdf8f5;
}

.admin-passe {
  opacity: .55;
}

.admin-info {
  font-size: .85rem;
  color: #8b6c65;
}

.admin-actions a {
  color: #bba1cc;
  text-decoration: none;
  margin-right: .8rem;
  font-weight: 500;
  transition: color .3s;
}

.admin-actions a:hover {
  color: #694b7d;
}

.admin-actions a.del {
  color: #c9736b;
}

.admin-actions a.del:hover {
  color: #a8463e;
}

/* --- Responsive admin --- */
@media (max-width: 700px) {
  .admin-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-nav {
    width: 100%;
  }

  .admin-nav a.logout {
    margin-left: auto;
  }

  .admin-card {
    padding: 1.2rem;
  }

  .admin-form-inline {
    flex-direction: column;
    align-items: stretch;
  }

  .admin-field,
  .admin-field-buttons {
    width: 100%;
  }

  .admin-field input {
    width: 100%;
    box-sizing: border-box;
  }

  /* Tableau en mode carte sur mobile */
  .admin-table,
  .admin-table thead,
  .admin-table tbody,
  .admin-table tr,
  .admin-table th,
  .admin-table td {
    display: block;
  }

  .admin-table thead {
    display: none;
  }

  .admin-table tr {
    background: #fdf4f1;
    border-radius: .8rem;
    padding: .8rem 1rem;
    margin-bottom: .8rem;
    border: none;
  }

  .admin-table td {
    padding: .3rem 0;
    border: none;
  }

  .admin-table td:before {
    content: attr(data-label) ' : ';
    font-weight: bold;
    color: #694b7d;
    font-family: 'Cormorant Garamond', serif;
  }

  .admin-table tr:hover td {
    background: transparent;
  }
}
/* ============================================
   LIEU DU RENDEZ-VOUS (domicile / cabinet)
   À ajouter à la fin de style.css
   ============================================ */

/* Légende sous le titre du service */
.booking-legende {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #f0e6e0;
  font-size: .9rem;
  color: #8b6c65;
}

.booking-legende span {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}

/* Icône dans les boutons d'heure et créneaux */
.lieu-icone {
  font-size: .9em;
  margin-left: .2rem;
  opacity: .85;
}

.hour-btn .lieu-icone,
.slot .lieu-icone {
  display: inline-block;
  vertical-align: middle;
}

/* Affichage du lieu dans le récapitulatif du formulaire */
.booking-lieu {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 1rem;
  font-size: .9rem;
  font-weight: 500;
  margin-top: .4rem;
}

.booking-lieu-domicile {
  background: #f5e9e4;
  color: #7a5c58;
}

.booking-lieu-cabinet {
  background: #e4d0ec;
  color: #694b7d;
}

/* Responsive */
@media (max-width: 600px) {
  .booking-legende {
    gap: .8rem;
    font-size: .8rem;
  }
}

/* ============================================
   VALIDATION DES RENDEZ-VOUS
   À ajouter à la fin de style.css
   ============================================ */

/* Info "soumis à validation" sur le formulaire client */
.booking-info-validation {
  background: #fef8e8;
  border-left: 3px solid #e6c06e;
  padding: .8rem 1rem;
  border-radius: 0 .5rem .5rem 0;
  margin-bottom: 1.2rem;
  font-size: .9rem;
  color: #7a6530;
}

/* Message "demande envoyée" */
.booking-attente-info {
  background: #fef8e8;
  padding: 1rem;
  border-radius: .8rem;
  color: #7a6530;
  margin: 1rem 0;
  line-height: 1.6;
}

/* Badges de statut dans l'admin */
.admin-badge {
  display: inline-block;
  padding: .3rem .7rem;
  border-radius: 1rem;
  font-size: .85rem;
  font-weight: 600;
  white-space: nowrap;
}

.admin-badge-attente {
  background: #fef8e8;
  color: #7a6530;
}

.admin-badge-confirme {
  background: #d4edda;
  color: #155724;
}

.admin-badge-refuse {
  background: #f8d7da;
  color: #721c24;
}

/* Ligne refusée dans le tableau */
.admin-refuse {
  opacity: .5;
}

/* Colonne actions */
.admin-actions-rdv {
  min-width: 130px;
}

/* Boutons confirmer / refuser */
.admin-btn-confirm {
  background: #5a9a6b;
  color: #fff;
  border: none;
  padding: .5rem .8rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: .85rem;
  font-family: 'Raleway', sans-serif;
  transition: background .3s;
  margin-bottom: .3rem;
}

.admin-btn-confirm:hover {
  background: #478a57;
}

.admin-btn-refuse {
  background: #c9736b;
  color: #fff;
  border: none;
  padding: .5rem .8rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: .85rem;
  font-family: 'Raleway', sans-serif;
  transition: background .3s;
}

.admin-btn-refuse:hover {
  background: #a8463e;
}

/* Petit formulaire de refus qui apparaît */
.admin-refus-form {
  margin-top: .5rem;
  background: #fdf4f1;
  padding: .8rem;
  border-radius: .6rem;
}

.admin-refus-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: .5rem;
  border: 1px solid #ddd5cf;
  border-radius: .4rem;
  font-family: 'Raleway', sans-serif;
  font-size: .85rem;
  resize: vertical;
  margin-bottom: .4rem;
}

.admin-btn-refuse-send {
  background: #c9736b;
  color: #fff;
  border: none;
  padding: .4rem .8rem;
  border-radius: 2rem;
  cursor: pointer;
  font-size: .8rem;
  font-family: 'Raleway', sans-serif;
  transition: background .3s;
}

.admin-btn-refuse-send:hover {
  background: #a8463e;
}

/* Responsive */
@media (max-width: 700px) {
  .admin-btn-confirm,
  .admin-btn-refuse {
    display: block;
    width: 100%;
    margin-bottom: .3rem;
    text-align: center;
  }
}
.admin-login-form label {
  display: block;
  font-size: .9rem;
  color: #7a5c58;
  margin-bottom: .3rem;
  margin-top: .8rem;
}
/* Calendrier mobile : scroll horizontal */
@media (max-width: 600px) {
  .booking-calendar {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .booking-grid {
    min-width: 500px;
  }

  .booking-nav {
    flex-direction: column;
    text-align: center;
    gap: .8rem;
  }
}