/*
Theme Name: Jasette, Manucure & soins beauté
Description: Site web pour Jasette, salon de manucure et soins beauté.
Author: Simon Gariépy
Version: 1.0.0
*/

:root {
  --beige: #fdf5f2;
  --text: #5c5c5c;
  --text2: #c4bcb6;
  --accent: #d9bfa9;
  --white: #ffffff;
  --accent2: #cbb9b1;
  --accent3: #a5704e;
  --font-title: 'Great Vibes', serif;
  --font-body: 'Cormorant Garamond', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--beige);
  scroll-behavior: smooth;
  padding-top: 90px;
}


/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--beige);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 1000;
}

.navbar .logo {
  font-family: var(--font-title);
  font-size: 2rem;
  color: var(--text);
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}

/* MAIN NAV LINKS */
nav {
  display: flex;
  gap: 30px;
  transition: transform 0.3s ease;
}

nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  font-family: var(--font-title);
}

nav a:hover {
  color: var(--accent);
}

/* BURGER MENU */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* SECTIONS */
.section {
  padding: 100px 20px;
  /* max-width: 1300px; */
  margin: auto;
  text-align: center;
}

.accueil {
  background-color: var(--beige);
  min-height: 100vh;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-direction: column;
}

.accueil h1 {
  font-family: var(--font-body);
  font-size: 7.5rem;
  color: var(--text);
}

.accueil p {
  margin-top: 20px;
  color: var(--text);
}

#slogan {
  font-size: 3.5rem;
  font-family: var(--font-body);
  margin-bottom: 15px;
  font-style: bold;
}

h2 {
  font-family: var(--font-title);
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.service-card h3 {
  font-family: var(--font-title);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: var(--accent);
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  margin-top: 30px;
  transition: background 0.3s;
}

.btn:hover {
  background: #c8a993;
}

/* FOOTER */
footer {
  background: var(--beige);
  padding: 20px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 40px;
  font-family: var(--font-body);
  width: 100%;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }

  nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--beige);
    padding: 40px 0 60px;
    text-align: center;
    /* gap: 22px; */
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    /* z-index: 1; */
    max-height: 80vh; /* increased so all items fit */
    overflow-y: auto;
  }
  nav a {
  font-size: 1rem;
}

  .burger {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
    flex-shrink: 0;
  }

  .navbar {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    min-height: 75px;
  }

  .navbar .logo {
    font-size: 1.8rem;
    line-height: 1.3;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 80%;
  }

  .section {
    padding: 100px 30px;
  }

  .accueil h1 {
    font-size: 2rem;
  }
}



.logo-image {
  max-width: 600px;
  height: auto;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
}

#description {
  font-size: 2.5rem;
  font-family: var(--font-body);
  line-height: 1.6;
  margin-top: 150px;
  color: var(--text2);
}

#link {
  color: var(--accent);
  text-decoration: underline;
  font-weight: bold;
  font-size: 3rem;
}

@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.section.oil {
  height: auto;
  width: 90%;
  background-color: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 60px 40px;
  flex-wrap: wrap;
}

.section.oil .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 60px;
  flex-wrap: wrap;
}

.section.oil .left,
.section.oil .right {
  flex: 1;
  min-width: 300px;
}

.section.oil .left img {
  width: 100%;
  max-width: 600px;
  border-radius: 20px;
  object-fit: cover;
}

.section.oil .right p {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 2.5rem;
  line-height: 1.6;
}

@keyframes slideIn {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.oil-image {
  opacity: 0;
  transform: translateX(-100px);
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.oil-image.visible {
  animation: slideIn 1.2s ease-out forwards;
}


/* SECTION JULIE */
.section.julie {
  width: 90%;
  margin: 0 auto;
  background-color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 80px 60px;
  flex-wrap: wrap;
}

.section.julie .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px; /* more spacing between sides */
  flex-wrap: wrap;
}

.section.julie .left,
.section.julie .right {
  flex: 1;
  min-width: 400px;
}

.section.julie .left img {
  width: 100%;
  max-width: 650px;
  border-radius: 25px;
  object-fit: cover;
}

.section.julie .right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section.julie .right img.portrait {
  width: 280px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

.section.julie .right p {
  font-size: 2rem; /* was 1.5rem */
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: var(--font-body);
  color: var(--accent);
}

.section.julie .right button {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 12px 35px;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s;
}

.section.julie .right button:hover {
  background-color: #c8a993;
}


@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.julie-image {
  opacity: 0;
  transform: translateX(100px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  object-fit: cover;
}

.julie-image.visible {
  animation: slideInRight 3s ease-out forwards;
}

.img-button {
  width: 320px;
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
  display: block;
  margin-top: 20px;
  border-radius: 0;
}

.img-button:hover {
  transform: scale(1.05);
}

.menu-ongles {
  background-color: var(--beige);
  width: 90%;
  margin: 100px auto;
  padding: 60px 40px;
  text-align: center;
}

.menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
}

.menu-title-img {
  max-width: 520px;
  width: 100%;
  /* height: auto; */
  /* object-fit: contain; */
}

.menu-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 80px;
}

.menu-item {
  background: none;
  border: none;
  padding: 0;
  max-width: 320px;
  text-align: left;
}

.menu-item h3 {
  font-family: var(--font-title);
  color: var(--accent3);
  font-size: 2rem; /* increased */
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.menu-item p {
  font-family: 'Pompiere', cursive;
  font-size: 1.45rem; /* increased */
  color: #6e6e6e;
  line-height: 1.5;
  margin-bottom: 8px;
}

.menu-item .price {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.55rem; /* increased */
  margin-top: 4px;
}

/* Small nail art options (no box) */
.menu-subgroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 80px;
  align-items: center;
  margin-bottom: 60px;
}

.menu-item.small {
  text-align: left;
  max-width: 360px;
}

.menu-item.small h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.menu-item.small p {
  font-size: 1.35rem;
  color: #6e6e6e;
}

/* Center logo between sections */
.menu-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  /* margin: 60px 0 80px 0; */
}

.menu-logo img {
  width: 260px;  /* bigger logo */
  height: auto;
  opacity: 0.9;
}

/* French & Douceur */
.menu-container .medium h3 {
  font-size: 1.9rem;
}

.menu-container .medium p {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.menu-container .medium .price {
  font-size: 1.5rem;
  margin-top: 2px;
}

/* BIJOUX — side-by-side images with text center */
.menu-bijoux {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 40px;
  position: relative;
}

.bijoux-img {
  width: 110px; /* slightly larger gems */
  height: auto;
  opacity: 0.9;
}

.bijoux-text {
  display: flex;
  flex-direction: row;
  gap: 120px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 850px;
}

.bijoux-group {
  text-align: center;
  max-width: 260px;
}

.bijoux-group h4 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 2rem; /* bigger titles */
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.bijoux-group p {
  font-family: 'Pompiere', cursive;
  font-size: 1.45rem; /* larger text */
  color: #6d6d6d;
  line-height: 1.5;
}

.bijoux-group .price {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--accent);
  font-size: 1.55rem;
  margin-top: 6px;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-ongles {
    padding: 40px 20px;
  }

  .menu-title-img {
    max-width: 320px;
  }

  .menu-container,
  .menu-subgroup,
  .menu-bijoux {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .menu-item,
  .menu-item.small,
  .menu-item.medium {
    text-align: center;
    max-width: 100%;
  }

  .menu-item h3,
  .bijoux-group h4 {
    font-size: 1.8rem;
  }

  .menu-item p,
  .bijoux-group p {
    font-size: 1.3rem;
  }

  .menu-item .price,
  .bijoux-group .price {
    font-size: 1.45rem;
  }

  .menu-logo img {
    width: 200px;
  }

  .bijoux-img {
    width: 80px;
  }

  .bijoux-text {
    flex-direction: column;
    gap: 40px;
  }
}



/* RESPONSIVE */
@media (max-width: 900px) {
  .menu-ongles {
    padding: 40px 20px;
  }

  .menu-title-img {
    max-width: 320px;
  }

  .menu-container,
  .menu-subgroup,
  .menu-bijoux {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .menu-item,
  .menu-item.small,
  .menu-item.medium {
    text-align: center;
    max-width: 100%;
  }

  .menu-item p,
  .menu-item.small p,
  .menu-item.medium p {
    font-size: 1.3rem;
  }
}


/* Alexia section uses same base layout as Julie */
.section.julie#alexia {
  margin-top: 100px;
}

/* Demo image for Alexia */
#demo-ongles-alexia {
  width: 100%;
  max-width: 700px;
  border-radius: 20px;
  object-fit: cover;
}

/* Alexia portrait image */
#alexia .right img.portrait {
  width: 220px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
}

/* Adjust text size to stay readable */
#alexia .right p {
  font-family: var(--font-body);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--accent);
}

/* Button styling (your image button) */
#alexia .img-button {
  width: 320px;
  cursor: pointer;
  margin-top: 25px;
  border-radius: 0;
  transition: transform 0.3s ease;
}

#alexia .img-button:hover {
  transform: scale(1.03);
}


/* MENU CILS */
.menu-cils {
  background-color: var(--beige);
  width: 90%;
  margin: 100px auto;
  padding: 60px 40px;
  text-align: center;
}

.menu-cils .menu-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
}

.menu-cils .menu-title-img {
  max-width: 420px;
  width: 80%;
  height: auto;
  object-fit: contain;
}

/* Content grid */
.menu-cils-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

/* Columns */
.cils-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  flex: 1;
  min-width: 250px;
}

.cils-center {
  flex: 1;
  min-width: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cils-image {
  width: 100%;
  max-width: 520px; /* was 420px — now bigger */
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.cils-image:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}


/* Text styling */
.cils-item h3 {
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 6px;
}

.cils-item p {
  font-family: 'Pompiere', cursive;
  font-size: 1.45rem;
  color: #6e6e6e;
  line-height: 1.4;
  margin-bottom: 4px;
}

.cils-item .price {
  display: block;
  font-family: 'Playfair Display', serif;
  color: var(--accent);
  font-weight: 600;
  font-size: 1.6rem;
  margin-top: 2px;
}

/* Note at bottom */
.cils-note {
  font-family: var(--font-body);
  font-size: 1.5rem;
  color: #8b7b72;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 900px) {
  .menu-cils-content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .cils-image {
    max-width: 320px;
  }

  .cils-item h3 {
    font-size: 1.8rem;
  }

  .cils-item p {
    font-size: 1.3rem;
  }

  .cils-item .price {
    font-size: 1.45rem;
  }

  /* 🎯 Décalage fin au pixel près */
  #julie {
    position: relative;
    left: 50%;
    transform: translateX(calc(-50% - 4px)); /* ajuste ici la valeur */
  }
}

/* CONTACT SECTION — larger, elegant and proportional */
.section.contact {
  background-color: var(--beige);
  padding: 160px 20px; /* more breathing space */
  text-align: center;
}

.section.contact h2 {
  font-family: var(--font-body);
  font-size: 3rem; /* bigger title */
  color: var(--text);
  margin-bottom: 25px;
}

.section.contact p {
  font-family: var(--font-body);
  font-size: 2rem; /* much larger text */
  color: var(--text);
  margin-bottom: 15px;
  line-height: 1.6;
}

.section.contact strong {
  color: var(--accent);
  font-weight: 600;
  font-size: 2rem;
}

.section.contact .btn,
.section.contact .img-button {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 1.6rem;
  font-family: var(--font-body);
  padding: 16px 50px;
  border-radius: 35px;
  margin-top: 35px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.section.contact .btn:hover,
.section.contact .img-button:hover {
  background: #c8a993;
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section.contact {
    padding: 100px 20px;
  }

  .section.contact h2 {
    font-size: 2.4rem;
  }

  .section.contact p {
    font-size: 1.6rem;
  }

  .section.contact strong {
    font-size: 1.7rem;
  }

  .section.contact .btn,
  .section.contact .img-button {
    font-size: 1.4rem;
    padding: 14px 35px;
  }
}

@media (max-width: 900px) {
  body, html {
    width: 100%;
    overflow-x: hidden;
  }

  .section,
  .content,
  .section.oil,
  .section.julie,
  .section.menu-ongles,
  .section.menu-cils,
  .section.contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    width: 100%;

  }

  .section img,
  .content img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 900px) {

  body {
    font-size: 90%;
  }

  .section p,
  .section h1,
  .section h2,
  .section h3 {
    line-height: 1.4;
  }
}

@media (max-width: 900px) {
  .section.julie,
  .section.julie#alexia {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0;
    box-sizing: border-box;
  }

  .section.julie .content,
  .section.julie#alexia .content {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .section.julie img,
  .section.julie#alexia img {
    display: block;
    margin: 0 auto;
    width: 90%;
    height: auto;
  }

  html,
  body {
    overflow-x: hidden !important;
  }
}

.menu-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px auto;
  text-align: center;
}

.menu-logo img {
  display: block;
  margin: 0 auto;
  max-width: 240px;
  height: auto;
}

#description {
  font-size: 1.8rem;
  line-height: 1.5;
  max-width: 800px;
  margin: 100px auto 0 auto;
  text-align: center;
}

/* Ajustement mobile */
@media (max-width: 900px) {
  #description {
    font-size: 1.4rem;
    line-height: 1.4;
    width: 90%;
    margin-top: 80px;
  }
}

@media (max-width: 900px) {
  .logo-image {
    max-width: 140px;
    left: 50%;
    transform: translateX(-150%);
  }
}

/* ✨ Slogan plus raffiné et équilibré */
#slogan {
  font-size: 2.5rem; /* avant 3.5rem */
  /* font-family: "Pompiere", cursive; */
  margin-bottom: 10px;
  font-weight: 400;
  color: var(--text);
  text-align: center;
}

/* Sur mobile, encore plus compact */
@media (max-width: 900px) {
  #slogan {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 8px;
  }
}

/* Mobile version */
@media (max-width: 900px) {
  #link {
    font-size: 1.8rem;
  }
}

nav {
  display: flex;
  gap: 30px;
  align-items: center;
  transition: all 0.3s ease;
}

/* liens du menu
nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.3s;
} */

nav a:hover,
nav a.active {
  color: var(--accent);
}

/* --- BURGER --- */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger span {
  width: 25px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(7px);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-7px);
}

/* --- MOBILE --- */
@media (max-width: 900px) {
  nav {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--beige);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
  }

  nav.open {
    height: 200px; /* ajuster selon nb de liens */
    opacity: 1;
    padding: 20px 0;
  }

  .burger {
    display: flex;
  }
}

/* --- DESKTOP --- */
@media (min-width: 901px) {
  nav {
    display: flex !important;
    position: static;
    height: auto !important;
    opacity: 1 !important;
    background: none;
    box-shadow: none;
  }

  .burger {
    display: none !important;
  }
}

.accueil {
  background-color: var(--beige);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.reveal-text {
  font-family: 'Cookie', cursive;
  font-size: 7.5rem;
  color: var(--text);
  opacity: 0;
  animation: fadeLetters 2.5s ease forwards;
}

@keyframes fadeLetters {
  0% {
    opacity: 0;
    letter-spacing: 20px;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    letter-spacing: normal;
    transform: scale(1);
  }
}

.logo-image {
  max-width: 600px;
  height: auto;
  opacity: 0;
  animation: fadeIn 1.2s ease 2s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section.valeurs {
  width: 90%;
  margin: 120px auto;
  color: var(--text);
  background-color: var(--beige);
  font-family: var(--font-body);
  text-align: left;
  line-height: 1.6;
}

/* Bloc principal */
.valeurs .intro {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  padding-bottom: 60px;
  /* border-bottom: 1px solid #e6dcd5; */
}

.valeurs-logo {
  width: 180px;
  height: auto;
  flex-shrink: 0;
}

.valeurs .texte {
  max-width: 600px;
  font-size: 1.5rem;
}

.valeurs .fondements {
  margin-top: 60px;
  padding: 40px 0;
  /* background-color: #fff8f5; */
  text-align: center;
  border-radius: 20px;
}

.valeurs .fondements h2 {
  font-family: var(--font-title);
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--accent);
}

.valeurs .fondements ul {
  font-weight: bold;
  list-style-type: disc;
  margin: 0 auto 40px auto;
  text-align: left;
  display: inline-block;
  font-size: 1.4rem;
  color: var(--text);
}

.valeurs .fondements li {
  margin-bottom: 10px;
}

/* ✅ bouton bien centré sous le texte */
.valeurs .fondements a {
  display: flex;
  justify-content: center;
  width: 100%;
}

.btn-img {
  width: 380px;
  height: auto;
  transition: transform 0.3s ease;
}

.btn-img:hover {
  transform: scale(1.05);
}


/* Responsive */
@media (max-width: 900px) {
  .valeurs .intro {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .valeurs .texte {
    font-size: 1.3rem;
  }

  .valeurs-logo {
    width: 140px;
  }

  .valeurs .fondements ul {
    font-size: 1.2rem;
  }

  .btn-img {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .logo-image {
    display: block;
    max-width: 140px;
    margin: 10px auto 0 auto;
    /* position: relative; */
    left: 50%;
    transform: translateX(-200%);
  }
}


.menu-item,
.menu-item.small,
.menu-item.medium {
  text-align: left;
}

.menu-item h3 {
  font-family: var(--font-title);
  color: var(--accent3);
  font-size: 2rem;
  margin-bottom: 10px;
}

.menu-item p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 6px;
  font-weight: bold
}

.menu-item .price {
  display: block;
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.sub {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.sub .price {
  display: inline;
  font-family: var(--font-body);
  color: var(--accent);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1;
}


.desc {
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text2);
  font-weight: bold;
}

.desc .price {
  display: inline;
  margin-left: 4px;
  font-family: var(--font-body);
  color: var(--text2);
  font-weight: 500;
  font-size: 1.5rem;
}

.menu-footer {
  display: flex;
  justify-content: center; 
  align-items: flex-start;
  gap: 140px; 
  margin-top: 60px;
  flex-wrap: nowrap;
}

.menu-footer .menu-container {
  max-width: 320px;
  text-align: left;
}

.menu-footer .menu-logo {
  flex: 0 0 auto;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.menu-footer .menu-logo img {
  width: 180px;
  height: auto;
  opacity: 0.9;
}
/* --- Responsive: stack menus and logo vertically on mobile --- */
@media (max-width: 900px) {
  .menu-footer {
    flex-direction: column; /* stack vertically */
    align-items: center;
    gap: 40px; /* spacing between each block */
    text-align: center;
  }

  .menu-footer .menu-container {
    max-width: 100%;
    text-align: center;
  }

  .menu-footer .menu-logo img {
    width: 160px; /* smaller logo for mobile */
  }
}

.sub {
  display: flex;
  flex-direction: column; /* puts price below text */
  align-items: flex-start; /* text stays left */
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text2);
  font-family: var(--font-body);
  font-weight: bold;
  margin-bottom: 10px;
}

.sub .price {
  align-self: center; /* centers the price under text */
  font-family: var(--font-body);
  color: var(--text2);
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 4px;
}

.desc {
  display: flex;
  flex-direction: column; /* stacks text and price vertically */
  align-items: flex-start; /* keeps description left */
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--text2);
  font-weight: bold;
  margin-bottom: 10px;
}

.desc .price {
  align-self: center; /* centers the price below text */
  margin-top: 6px;
  font-family: var(--font-body);
  color: var(--text2);
  font-weight: 600;
  font-size: 1.5rem;
}

.menu-nailart {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px 100px;
  justify-items: center;
  align-items: start; /* ✅ aligns top edges evenly */
  margin: 60px auto 100px auto;
  max-width: 1100px;
}


.menu-item {
  text-align: center;
  max-width: 360px;
  position: relative;
}

/* For bottom row: image + text side by side */
.menu-item.with-left-img,
.menu-item.with-right-img {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Left image goes on left */
.menu-item.with-left-img {
  flex-direction: row;
}

/* Right image goes on right */
.menu-item.with-right-img {
  flex-direction: row-reverse;
}

/* Jewel image style */
.bijoux-img {
  width: 90px;
  height: auto;
  opacity: 0.9;
  flex-shrink: 0;
}

/* Text container next to image */
.menu-item .text {
  text-align: left;
}

/* Text styling */
.menu-item h3 {
  font-family: var(--font-title);
  color: var(--accent3);
  font-size: 2rem;
  margin-bottom: 10px;
}

.menu-item p {
  font-family: var(--font-body);
  font-size: 1.4rem;
  color: var(--text2);
  line-height: 1.5;
}

.menu-item .price {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  color: var(--text2);
  font-weight: 600;
  font-size: 1.5rem;
  margin-top: 6px;
}

/* ✅ Responsive: stack vertically */
@media (max-width: 900px) {
  .menu-nailart {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .menu-item.with-left-img,
  .menu-item.with-right-img {
    flex-direction: column;
  }

  .bijoux-img {
    width: 80px;
  }

  .menu-item .text {
    text-align: center;
  }
}

/* 💅 FINAL FIX — Alexia section layout identical to Julie but smaller */
#alexia.section.julie {
  width: 90%;
  margin: 0 auto;
  background-color: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  padding: 80px 60px;
  flex-wrap: wrap;
}

#alexia .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px;
  flex-wrap: wrap;
}

/* Columns */
#alexia .left,
#alexia .right {
  flex: 1;
  min-width: 400px;
}

/* Main image */
#alexia .left img {
  width: 100%;
  max-width: 600px;
  border-radius: 25px;
  object-fit: cover;
}

/* Portrait */
#alexia .right img.portrait {
  width: 250px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 25px;
}

/* Text */
#alexia .right {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#alexia .right p {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-family: var(--font-body);
  color: var(--accent);
}

/* Button */
#alexia .img-button {
  width: 320px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: block;
  margin-top: 20px;
  border-radius: 0;
}

#alexia .img-button:hover {
  transform: scale(1.05);
}

/* 📱 Mobile version */
@media (max-width: 900px) {
  #alexia.section.julie {
    padding: 50px 0;
  }

  #alexia .content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
  }

  #alexia .left,
  #alexia .right {
    min-width: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #alexia .left img {
    max-width: 80%;
    height: auto;
  }

  #alexia .right img.portrait {
    width: 200px;
  }

  #alexia .right p {
    font-size: 1.6rem;
  }

  #alexia .img-button {
    width: 260px;
  }
}

#alexia.section.julie {
  width: 100% !important;
  max-width: 1300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  position: relative !important;
  left: 0 !important;
  transform: none !important;
}

@media (max-width: 900px) {
  #julie .left img,
  #alexia .left img {
    max-width: 90%;
    height: auto;
  }

  #julie .right img.portrait,
  #alexia .right img.portrait {
    width: 180px;
  }

  #julie .right p,
  #alexia .right p {
    font-size: 1.5rem;
  }
}

/* 🧷 Keep CILS layout identical to desktop until <900px */
.menu-cils-content {
  display: flex;
  justify-content: center;
  align-items: center; /* ✅ center vertically */
  flex-wrap: nowrap;
  gap: 60px; /* a bit more breathing space */
}


.cils-col {
  flex: 1;
  min-width: 260px;
  max-width: 320px; /* keeps consistent width with desktop */
  text-align: center;
}

.cils-center {
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(10px); /* adjust up/down by a few px if needed */
}


.cils-image {
  width: 100%;
  max-width: 380px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}

/* 🪶 When below 900px, stack columns vertically (mobile) */
@media (max-width: 900px) {
  .menu-cils-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  .cils-col,
  .cils-center {
    max-width: 100%;
  }

  .cils-image {
    max-width: 320px;
  }
}


.menu-item.with-left-img,
.menu-item.with-right-img {
  display: flex;
  align-items: center; /* centers text vertically relative to image */
  justify-content: center; /* centers both items horizontally */
  text-align: center;
  gap: 2rem; /* adjust spacing between image and text */
}

.menu-item.with-left-img .text,
.menu-item.with-right-img .text {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers each line inside the text div */
  justify-content: center;
}

/* ✅ FINAL OVERRIDE — menu logo section */
.menu-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 60px auto;
  text-align: center;
}

.menu-logo .menu-title-img2 {
  width: 1260px; /* ⬆️ make this bigger, try 280px–300px */
  max-width: 100%;
  height: auto;
  opacity: 0.95;
  transition: transform 0.3s ease;
}

/* Responsive — shrink logo a bit on small screens */
@media (max-width: 900px) {
  .menu-logo .menu-title-img2 {
    width: 180px;
  }
}

/* ✅ FINAL ENFORCED OVERRIDE — Bigger logo in footer */
.menu-footer .menu-logo img.menu-title-img2 {
  width: 300px !important;   /* Force it bigger */
  max-width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  display: block !important;
  margin: 0 auto !important;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
}

.social-links a {
  color: var(--accent);
  background-color: var(--white);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: scale(1.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* Optional: smaller icons on mobile */
@media (max-width: 900px) {
  .social-links a {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

/* ================================
   🎁 PAGE CARTE CADEAU
================================== */
.giftcard {
  display: flex;
  align-items: center;      /* centers left and right vertically */
  justify-content: center;  /* centers them horizontally */
  min-height: 100vh;
  padding-top: 90px;
}


/* LEFT SIDE */
.gift-left {
  position: relative;
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  padding-top: 40px;
}

.gift-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.gift-image {
  border-radius: 20px;
}

.gift-text {
  position: absolute;
  top: 62.5%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 2; */
  text-align: center;
  color: #4b4b4b;
  font-family: 'Cormorant Garamond', serif;
  width: 80%;
  max-width: 500px;
}

.gift-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: #3d3d3d;
  margin-bottom: 5px;
}

.gift-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  color: #3d3d3d;
  margin-bottom: 73px;
}

.desc-gift {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #3d3d3d;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 70px;
}

/* Website link (between the two bottom bars) */
.gift-link {
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 1.1rem;
}

/* RIGHT SIDE */
.gift-right {
  flex: 0.8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  margin-left: -400px;
}

.gift-right-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 70px;
  height: 100%;
}

.cart-heart {
  width: 130px;
  flex-shrink: 0;
  margin-right: 100px;
}

.gift-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.gift-btn {
  background-color: #c9a594;
  color: #3c3c3c;
  font-family: var(--font-body);
  padding: 15px 0;
  border-radius: 40px;
  font-size: 2.2rem;
  text-decoration: none;
  transition: all 0.2s ease;
  text-align: center;
  width: 180px;
  display: block;
}

.gift-btn:hover {
  background-color: #d9bfa9;
  transform: scale(1.05);
}

@media (max-width: 1400px) and (min-width: 768px) {
  .giftcard {
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 80px 60px;
  }

  .gift-text{
    top: 65%;
  }

  /* Scale the whole left card together */
  .gift-left {
    position: relative;
    transform: scale(0.85);
    transform-origin: center left;
    z-index: 1;
  }

  /* Adjust text inside slightly */
  .gift-text h2 {
    font-size: 4rem;
    padding-bottom: 40px;
  }

  .gift-text h3 {
    font-size: 1.8rem;
    margin-bottom: 115px;
  }

  .desc-gift {
    font-size: 1rem;
  }

  .gift-link {
    font-size: 1rem;
  }

  .gift-right {
    /* flex: 1; */
    margin-left: px;
    align-items: right;
    justify-content: end;
  }

  /* Keep right section balanced */
  .gift-right-inner {
    gap: 30px;
  }

  .cart-heart {
    width: 100px;
  }

  .gift-btn {
    width: 160px;
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .giftcard {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 100px 20px 60px;
  }

  .gift-left {
    width: 100%;
    transform: none;
    display: flex;
    justify-content: center;
  }

  .gift-bg {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gift-text{
    top: 64%;
  }

  .gift-text h2 {
    font-size: 2.8rem;
  }

  .gift-text h3 {
    font-size: 1.3rem;
    margin-bottom: 150px;
  }

  .desc-gift {
    font-size: 0.8rem;
  }

  /* bottom section layout */
  .gift-right {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-left: 0px;
  }

  .gift-right-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0px;
  }

  .cart-heart {
    width: 80px;
    height: auto;
    flex-shrink: 0;
    display: block;
  }

  .gift-options {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
  }

  .gift-btn {
    width: 150px;
    font-size: 1.5rem;
    padding: 12px 0;
    text-align: center;
    margin: 0; /* Remove auto margin */
    display: flex; /* Changed from block to flex */
    align-items: center; /* Centers content vertically */
    justify-content: center; /* Centers content horizontally */
  }
}