/* === Base styles === */
@font-face {
  font-family: 'Barlista';
  src: url('fonts/Barlista.woff2') format('woff2'),
       url('fonts/Barlista.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IstanbulTypeThin';
  src:  url('fonts/Istanbul-Type-100-Thin.woff') format('woff');
  font-weight: 100;
  font-style: normal;
}


body {
  background: #fff5e8;      /* soft cream */
  color: #4a2223;           /* warm deep brown */
  font-family: 'IstanbulTypeThin', sans-serif;
  font-weight: 100;
  margin: 0;
  padding-top: 10px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

p {
  line-height: 1.6;
}

/* ========================= */
/* Header layout */
/* ========================= */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 130px; /* or whatever your header height is */
  z-index: 1000;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 170px;
}


/* First row: address - logo - phone */
.site-header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background:#fff5e8;
}


/* Logo block (centered in top row) */
.logo-block {
  text-align: center;
  line-height: 1;
}

.logo {
  font-family: 'Barlista', cursive;
  font-size: 1.5rem;  
  font-weight: normal;
  margin: 5px;
  color: #4a2223;
}

.subtitle {
  font-family: 'IstanbulTypeThin', sans-serif;
  font-weight: 100;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #4a2223;
  margin-bottom: 20px;
  margin-top: 0px;
}

/* ========================= */
/* Navigation bar */
/* ========================= */
/* Main nav left */
.main-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* keep items left-aligned */
  
}
.main-nav ul {
  display: block;
  list-style: none;
  margin: 0;
  padding-top: 10px;
  
  padding-left: 10px !important;
}
.main-nav li a {

 text-decoration: none;
  font-size: 1rem;
  color: #4a2223;
  line-height: 0.8;
}
.main-nav a:hover {
  background-color: #f2dcd3; /* soft tint */
  color: #b56676;
  transform: translateX(5px); /* small movement for feedback */
}
.main-nav a {
  display: block;
  width: 100%;
  padding: 8px 8px;
  font-family: 'IstanbulTypeThin', sans-serif;
  font-weight: 100;
  font-size: 1rem;
  color: #4a2223;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* ========================= */
/* Navigation bar#2 */
/* ========================= */
.nav2 {
  margin-top: 0px;
  margin-bottom: 0; 
  font-weight: normal;
}

.nav2 ul {
  list-style: none;
  padding: 10px;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
  background:#fff5e8;
  
  
}

.nav2 a {
  text-decoration: none;
  font-family: 'IstanbulTypeThin', sans-serif;
  font-weight: 100;
  font-size: 1rem;
  color: #b56676;
  position: relative;
  padding-bottom: 0;
  font-weight: bold;
  
}




/* Hover underline effect */
.nav2 a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #b56676;
  transition: width 0.3s;
}

.nav2 a:hover::after,
.nav2 a.active::after {
  width: 100%;
}
.header-actions {
  text-align: center;
  margin-top: 10px;
  
}
.header-actions br {
	
}
.btn-reserver {
  background: #b46b6f;
  color: #fff;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: normal;
  font-size: 1.2rem;
  
}
.btn-reserver:hover {
  background: #8c4f53;
}

.address {
  margin-top: 13px;
  
}
.address a {
  color: #4a2223;
  text-decoration: none;
  font-size: 0.7rem;
  line-height: 1;  
}

.address a:hover {
  text-decoration: underline;
}

/* ========================= */
/* Hero image */
/* ========================= */
.hero {
  position: relative;
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  margin-top: 130px; /* same as header height */
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 80px; /* Adjusted for header height */
  left: 0;
  width: 100%;
  height: calc(100% - 80px); /* Prevents overlay from going under header */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  box-sizing: border-box;  
}

.overlay-center { 
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overlay-text p {
  font-family: 'IstanbulTypeThin', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #b56676;
  font-weight: bold;
  padding: 10px 15px;
  max-width: 100%;
}
.overlay-text {
  margin-left: auto;
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 400px;
  text-align: right;
  font-family: 'Barlista', cursive;
  color: #4a2223;
}

.overlay-text h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.overlay-text p {
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.overlay-center .btn-reserver {
background-color: #fff5e8; /* pale rose */
  color: #4a2223; /* soft brown text */
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.overlay-center .btn-reserver:hover {
  
  transform: scale(1.08); /* gentle enlarge */
  background-color: #fff5e8; /* slightly deeper rose */
  box-shadow: 0 8px 18px rgba(181, 102, 118, 0.25);
  color: #4b1e1e;
}


/*.overlay-center .btn-reserver {
background: #fff5e8;
  color: #4a2223;
  padding: 16px 36px;
  border: none;
  border-radius: 30px;
  font-size: 1.3rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.overlay-center .btn-reserver:hover {
  
  background-color: #c97a88;
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(181, 102, 118, 0.3);
}*/


/* centers inline text */


.intro {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff5e8;
  color: #4a2223;
}

.intro .welcome-text {
  font-family: 'Barlista';
  font-size: 2.4rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.intro h1 {
  font-family: 'IstanbulTypeThin';
  font-size: 1.3rem;
  font-weight: 600;
  color: #4a2223;
  margin-bottom: 10px;
  line-height: 1.3;
}

.intro .tagline {
  font-family: 'Barlista';
  font-size: 2.1rem;
  color: #b56676;
  margin-bottom: 20px;
}

.intro .description {
  max-width: 700px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'IstanbulTypeThin';
  
}



	

/* Prestations section */
.prestations {
  padding: 20px 20px;
  background-color: #fff5e8;
  font-family: 'IstanbulTypeThin';
}

.prestations h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #fff5e8;
  font-family: 'IstanbulTypeThin';
  font-size:30px;
  background: #b46b6f;
}

/* Massage list */
.massage-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between items */
}

/* Each massage item */
.massage-item {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
}

/* Alternate background colors */
.massage-item:nth-child(odd) {
  background-color: #fff8ef; /* light cream */
}

.massage-item:nth-child(even) {
  background-color: #fff8ef; /* slightly darker shade */
}

.vertical-stack {
  display: flex;
  flex-direction: column; /* Stack children vertically */
}

/* Massage images */
.massage-item img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px; /* change to 50% if you want them round */
}

/* Text styles */
.massage-info h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #4a2223;
}

.massage-info p {
  margin: 5px 0;
}

/* Prices inline */
.price {
  margin-top: 10px;
}

.price span {
  display: inline-block;
  margin-right: 20px;
  font-weight: bold;
  color: #b46b6f;
}
.massage-buttons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.massage-buttons a {
  text-decoration: none;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 25px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-align: center;
  font-family: 'IstanbulTypeThin';
}

/* “Appeler” style */
.btn-call {
  background-color: transparent;
  border: 2px solid #b46b6f;
  color: #b46b6f;
}
.btn-call:hover {
  background-color: #b46b6f;
  color: #fff;
  transform: scale(1.05);
}

/* “Réserver en ligne” style */
.btn-book {
  background-color: #b46b6f;
  color: #fff;
  border: 2px solid #b46b6f;
}
.btn-book:hover {
  background-color: #8c4f53;
  border-color: #8c4f53;
  transform: scale(1.05);
}

@media (max-width: 600px) {
  .massage-buttons {
    flex-direction: column;
    align-items: stretch;
  }
}



/* Popup */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.popup-content {
  background: #fff5e8;
  color: #4a2223;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  margin: 15% auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  font-family: 'IstanbulTypeThin';
  font-weight: bold;
  
}
.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 1.5rem;
  cursor: pointer;
}


/*.massage-item {
  scroll-margin-top: 120px; /* adjust depending on your header height */*/

/*reserver button on massage item */
.section-reserver {
  display: inline-block;
  margin-top: 10px;
  background-color: #b56676;
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s;
}

.section-reserver:hover {
  background-color: #a14b63;
  transform: scale(1.05);
}
/*header fixed */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #fff5e8;
  border-bottom: 1px solid #fff5e8;
}
/*and add a top margin to the first section (like .hero) so it doesn’t go under the header */
/* .hero { */
  /* margin-top: 140px; /* same as your header height */ */
/* } */
/*ajust the space between the sections */
.header {
  background-color: #fff6ee; /* your header background */
  border-bottom: 1px solid rgba(181, 102, 118, 0.15); /* soft subtle line */
  margin-bottom: 0; /* remove gap under header */
  padding-bottom: 0;
}

/* .hero { */
  /* margin-top: 0; /* remove any top gap */ */
  /* padding-top: 0; */
  /* background-color: #fff6ee; /* same as header background */ */
/* } */

/* header { */
  /* position: fixed; */
  /* top: 0; */
  /* left: 0; */
  /* width: 100%; */
  /* background-color: #fff6ee; */
  /* z-index: 1000; */
 
/* } */

Add space under the fixed header
/* .hero { */
  /* margin-top: 160px; /* adjust this depending on your header height */ */
/* } */

/* optional: make sure there’s no unwanted margin */

.body {
  margin: 0;
  padding: 0;
  background-color: #fff6ee; /* same color as header */
}
/* logo click */
.site-logo {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.site-logo:hover {
  opacity: 0.8;
}

.gallery {
  text-align: center;
  padding: 20px 20px;
  font-family: 'IstanbulTypeThin';
  color:#b56676;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
  border-radius: 12px;
}

.carousel-inner img {
  width: 100%;
  display: none;
  transition: opacity 0.4s;
  border-radius: 12px;
}

.carousel-inner img.active {
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.35);
  border: none;
  color: white;
  font-size: 2rem;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 6px;
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }


/* maps */

.map-container {
  width: 100%;
  max-width: 600px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin:  auto;
  padding: 20px 20px;
}
.map-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: flex-start;
  margin: 6rem auto;
  max-width: 1200px;
}

/* Left: Image gallery */
.image-gallery {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.image-gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
.
/* Center: Map */
.map-container {
  flex: 2;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* Right: Contact info */
.contact-info {
  flex: 1;
  background-color: #fff8ef;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: sans-serif;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #b56676;
}

.contact-info a {
  color: #b56676;
  text-decoration: none;
}
.contact-photo {
  width: 100px;          /* Taille du cercle */
  height: 100px;
  margin: 0 auto 1rem;  /* Centrer + espace en bas */
}

.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;              /* Rend la photo ronde */
  border: 1px solid #b56676;       /* Jolie bordure assortie à ta charte */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Effet propre */
}

/* Booking modal — namespaced, higher z-index, flex centered */


.sb-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
}

.sb-modal[aria-hidden="false"] {
  display: flex;
}

.sb-panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 980px;
  height: calc(88vh - 64px); /* 🔥 full screen height */
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.sb-body {
  height: calc(88vh - 64px); /* 🔥 taller iframe area */
  overflow: auto;
}

.sb-container {
  width: 100%;
  height: calc(88vh - 64px);
}

.sb-container iframe {
  width: 100%;
  height: calc(88vh - 64px);
  border: 0;
}
.about {
  padding: 30px 20px;
  background: #fff8ef;
  font-family: 'IstanbulTypeThin';
}

.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap; /* Responsive */
}

.about-photo {
  width: 300px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.about-text {
  flex: 1;
  color: #4a2223;
}

.about-list {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.about-list li {
  margin-bottom: 8px;
  font-weight: 500;
}



/* ========================= */
/* Responsive adjustments */
/* ========================= */

/* On small screens, hide address and phone */
@media (max-width: 800px) {
  .site-header-top .address,
  .site-header-top .phone {
    display: none;
  }

  /* Make sure logo stays centered */
  .site-header-top {
    justify-content: center;
  }
  .text_image{
	  font-size:20px;
	  position: right;
  }
  
  @media (max-width: 768px) {
  .hero-image {
    height: auto;
  }
}



