/* ===========================
   BASE STYLE
=========================== */
body {
    margin: 0;
    padding: 0;
    background: #0e0d0d;
    font-family: "Playfair Display", serif;
    color: #d6b26a;
    font-size: 18px; /* <= УВЕЛИЧЕНИЕ ШРИФТА ВЕЗДЕ */
}

h1, h2, h3, h4 {
    font-family: "Bodoni Moda", serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* ===========================
   HEADER
=========================== */
header {
    background:  #0c0c0c;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    flex-wrap: wrap;
}

/* LOGO size— desktop: 120px */
.logo img {
    padding-left: 25px;
    padding-top: 25px;
    height: 120px;
    width: auto;
    transition: 0.3s ease;
}

/* LOGO size Tablet */
@media (max-width: 1024px) {
    .logo img {
        height: 65px;}
    
}

/* LOGO size Mobile */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

/* MENU — Desktop */
.menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: none;
}

.menu ul li a {
    color: #d6b26a ;
    padding: 8px 8px;
    border-radius: 6px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 18px;
    white-space: nowrap;
}

.menu ul li a:hover {
    background: rgba(255,255,255,0.25);
}

/* Active */
.menu ul li a.active {
    font-weight: bold;
    border-bottom: 3px solid #d6b26a;
}

/* ==== ACTIVE MENU UNDERLINE ==== */

/* ====== PREMIUM ACTIVE UNDERLINE ====== */
.menu ul li.current-menu-item a {
    position: relative;
    color: #d6b26a !important;
    font-weight: bold;
}

.menu ul li.current-menu-item a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%);
    width: 80%;
    height: 3px;
    background: #d6b26a;
    border-radius: 0 0 20px 20px;
}



/* RDV button */
.rdv-btn {
    background:  #d6b26a;
    color: #2b2b2b !important;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 18px;
}

/* Language */
.lang {
    color: #d6b26a;
    font-size: 18px;
    cursor: pointer;
    margin-left: 12px;
}
.lang:hover { opacity: 0.7; }

/* Burger */
.burger {
    display: none;
    font-size: 32px;
    cursor: pointer;
}

/* Mobile language (old) — скрываем */
.lang-mobile { display: none; }

/* ===========================
   FOOTER (CLASSIC)
=========================== */
footer {
    background: #0c0c0c;
    color: #d6b26a;
    padding: 40px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-right img {
    width: 36px;
    opacity: 0.9;
    transition: 0.2s;
}


.footer-left h3,
.footer-left p {
    margin: 0;
}




footer a {
    text-decoration: none !important;
    
}


/* MAP */
.fullwidth-map {
    width: 100%;
    padding: 30px 0 40px;
    background: #0c0c0c;
    display: flex;
    justify-content: center;
}

.fullwidth-map iframe {
    width: 100%;
    max-width: 1100px;
    height: 320px;
    border: 4px solid #d6b26a;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* ===========================
   INDEX PAGE
=========================== */
.page {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
}

.welcome {
    text-align: center;
    margin-bottom: 60px;
}

.welcome h1 {
    font-size: 40px;
    letter-spacing: 2px;
}

.services-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 30px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
    padding: 0 20px;
}

.card {
    text-align: center;
}

.photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
    border: 2px solid #bfa06a;
}

.card-title {
    font-size: 20px;
    margin: 12px 0;
}

.btn {
    padding: 8px 20px;
    border-radius: 5px;
    background:  #bfa06a;
    text-decoration: none;
    color: #000;
    font-size: 14px;
}


/*cards link color*/

/* Золотой цвет текста */
.card-title {
  color: #d6b26a; /* золото */
  text-align: center;
  margin-top: 15px;
  font-weight: 500;
}

/* Убираем синие ссылки */
.card-link {
  text-decoration: none;
  color: inherit;
}

/* Кнопка */
.btn-gold {
  background-color: #d6b26a;
  color: #000;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
}

/* Hover эффект */
.btn-gold:hover {
  background-color: #d6b26a;
  color: #000;
}

/* Hover для фото */
.card-link img {
  transition: transform 0.3s ease;
}

.card-link:hover img {
  transform: scale(1.03);
}



/* ===========================
   ACTUALITÉ
=========================== */
.actualite {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.actu-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
}

.actu-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #2b2b2b33;
}

.actu-img {
    width: 180px;
    height: 140px;
    border-radius: 8px;
    object-fit: cover;
    border: 2px solid #d6b26a;
}

.actu-content { flex: 1; }

.actu-date {
    font-size: 14px;
    color: #d6b26a;
    letter-spacing: 1.5px;
}

.actu-heading { font-size: 22px; }

/* ===========================
   A PROPOS
=========================== */
.apropos-luxe {
    width: 100%;
    max-width: none;      /* ❗ снимаем ограничение */
    margin: 60px 0;
    padding: 60px 0 60px 0;      /* отступы от краёв экрана */
}

.apropos-row {
    display: flex;
    gap: 50px;
    align-items: center;   /* вертикальное выравнивание текста и фото */
    margin-bottom: 40px;   /* отступ до нижнего текста */
    width: 100%;
}

.apropos-text-side {
    flex: 1;
    max-width: none;     
}

.apropos-text-side h2 {
    margin-bottom: 20px;
}


.apropos-text { flex: 1; }
.apropos-photo{
  display: flex;
  justify-content: center;
  flex: 0 0 360px;     /* фиксируем ширину колонки под фото */
  flex-shrink: 0;
}


.apropos-photo img {
    width: 330px;
    height: 420px;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    border: 2px solid #d6b26a;
}
/*photo ES center*/
.apropos-photo img {
  display: block;
  margin: 0 auto;
}

.apropos-text-bottom {
    width: 100%;
    max-width: none;
    margin: 0 0 60px;
    line-height: 1.75;
}

/* ===========================
   A PROPOS — TYPOGRAPHY FIX
=========================== */

.apropos-luxe p {
    line-height: 1.75;
    margin-bottom: 22px;
    
}

.apropos-luxe h2 {
    margin-bottom: 28px;
    font-size: 34px;
}

.apropos-luxe h3 {
    margin-top: 42px;
    margin-bottom: 18px;
    font-size: 24px;
}

.apropos-text-side p {
    margin-bottom: 24px;
}


.btn-diplomes {
    display: inline-block;
    background: #d6b26a;
    color: black;
    padding: 12px 21px;
    border-radius: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-top: 15px;
    margin-bottom: 25px;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-diplomes:hover {
    background: #deb157d4;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}


/* ===========================
   SERVICES (MAINS & PIEDS)
=========================== */

.hands-page {
  padding: 40px 20px 60px;
}

/* Section générale */
.services-section {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.services-section .section-title {
  font-size: 2rem;
  margin-bottom: 25px;
  text-align: left;
  letter-spacing: 1px;
}

/* ===========================
   GRILLE DES CARTES
=========================== */

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  justify-content: center;
}

/* Carte “premium” */
.grid-card {
  width: 100%;
  background: #ffffff22;
  border-radius: 18px;
  overflow: hidden;
  border: 2px solid #d6b26a;

  /* PREMIUM shadow */
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);

  cursor: pointer;

  display: flex;
  flex-direction: column;

  /* 💫 Animation d’apparition */
  opacity: 0;
  transform: translateY(15px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Survol premium */
.grid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* Image */
.card-image-wrapper {
  width: 100%;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.card-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.25s ease;
}

/* Zoom léger au survol */
.grid-card:hover img {
  transform: scale(1.06);
}

/* Texte */
.grid-card h3 {
  font-size: 1.15rem;
  margin: 14px 16px 6px;
  font-weight: 600;
}

.card-short {
  margin: 0 16px 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.85;
}

/* ===========================
   MODALES
=========================== */

.modal {
  display: none;
  position: fixed;
  inset: 0;

  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);

  z-index: 1000;

  justify-content: center;
  align-items: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

/* Fenêtre */
.modal-content {
background: #2b2b2b;
  border: 2px solid #d6b26a;
  max-width: 840px;
  width: 100%;
  border-radius: 22px;
  padding: 26px;
  position: relative;

  /* Animation premium */
  opacity: 0;
  transform: scale(0.95);
  animation: popIn 0.35s ease forwards;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

@keyframes popIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Images dans la modale */
.modal-photos {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.modal-photos img {
  flex: 1 1 48%;
  min-width: 150px;
  border-radius: 14px;
  object-fit: cover;
  height: 360px;
}

/* Typographie */
.modal-content h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.modal-content p {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.55;
}

/* ===========================
   BOUTON DE FERMETURE (FIXÉ)
=========================== */

.modal-close {
  position: absolute;
  top: 12px;
  right: 14px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  cursor: pointer;

  font-size: 22px;
  line-height: 1;

  background: #d6b26a;
  border-radius: 50%;
  backdrop-filter: blur(6px);

  transition: 0.25s ease;

  /* 💥 Фикс перекрытия всех элементов */
  z-index: 9999;
  pointer-events: auto;
}

.modal-close:hover {
  background:   #d6b26ab8;
  transform: scale(1.12);
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .grid-card {
    width: 100%;
  }

  .card-image-wrapper {
    height: 150px;
  }

  .modal-content {
    padding: 20px;
  }

  .modal-photos {
    flex-direction: column;
  }

  .modal-photos img {
    width: 100%;
    max-height: 240px;
  }

}




/* ===========================
   PRIX
=========================== */
.pricing {
    max-width: 1100px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.price-category {
    background: #ffffff22;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.price-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}


@media (max-width: 768px) {


  .price-item{
    display: block;
  }
}




/* ===========================
   MOBILE < 768px
=========================== */
@media (max-width: 795px) {

    /* BURGER ON */
    .burger { display: block; }

    /* Desktop language hidden */
    .lang { display: none; }

    /* Mobile menu hidden by default */
    .menu { display: none; }

    /* Menu open */
   @media (max-width: 795px) {

    #burger {
        color: #bfa06a;
          }

  .menu.open {
    position: absolute;
    top: 120px;              /* расстояние от хедера */
    left: 50%;
    transform: translateX(-50%);
    background: #2b2b2b;
    padding: 40px 0;
    width: 100%;
    max-width: 400px;        /* чтобы меню было аккуратным */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    z-index: 50;             /* ниже хедера, выше контента */
  }

  .menu.open ul {
    flex-direction: column;
    gap: 28px;
    text-align: center;
  }

  .menu.open ul li a {
   
    font-size: 24px;
  }
}


    footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .cards { grid-template-columns: 1fr; }
    .photo { height: 220px; }

    .actu-item { flex-direction: column; }
    .actu-img { width: 100%; height: 200px; }

    .apropos-row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .service-row { grid-template-columns: 1fr; }
    .service-photos img { width: 100%; }
}

/* ===========================
   TABLET < 1024px
=========================== */
@media (max-width: 1024px) {
    header { padding: 12px 10px; }
    .menu ul li a {
        font-size: 16px;
        padding: 6px 10px;
    }
}

/* ===========================
         PAGE RDV
=========================== */


.rdv-section {
    text-align: center;
    padding: 60px 20px;
}

.rdv-title {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.rdv-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color:  #d6b26a;
}

.rdv-card {
    max-width: 600px;
    margin: auto;
    padding: 40px;
    border-radius: 20px;
    background: #ffffff22;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.rdv-btn-big {
    display: block;
    padding: 15px 20px;
    margin-bottom: 15px;
    background: #d6b26a;
    color: black;
    border-radius: 12px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
     border: 4px solid #6e5015;
}

.rdv-btn-big:hover {
    background: #c9a15c;
}
.qr-block {
    text-align: center;
    margin: 35px 0 25px;
}

.qr-text {
    color: #d6b26a;
    margin-bottom: 18px;
    font-size: 17px;
    font-weight: 500;
}

.qr-box {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
    padding: 18px;
}

.qr-box.qr-gold {
    background: #d6b26a;
    border: 4px solid #6e5015;
    transition: 0.3s ease;
}

.qr-box.qr-gold:hover {
    box-shadow: 0 0 15px #c9a15c;
}

.qr-img {
    width: 230px;
    max-width: 90%;
    display: block;
}

.qr-note {
    color: #d6b26a;
    font-size: 16px;
    margin-top: 12px;
}

.rdv-contact {
    margin-top: 30px;
    text-align: left;
}

.rdv-contact h3 {
    margin-bottom: 10px;
    color: #d6b26a;
}
/* Заменяем синий на золотой в блоке контактов */
.rdv-contact a {
    color: #d6b26a !important;
    text-decoration: none;
    transition: 0.3s;
}

.rdv-contact a:hover {
    color: #f2d9a2 !important; /* светлее при наведении */
    text-decoration: underline;
}
/*a propos razmetka mobile*/
@media (max-width: 768px) {
    .apropos-luxe {
        padding: 20px 0 20px 0;
    }

    .apropos-row {
        flex-direction: column;
        text-align: center;
    }

    .apropos-photo {
        margin-bottom: 20px;
    }

    .apropos-text-bottom {
        text-align: center;
    }
}

