/* Basics */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.6; color: #3a2b2b; background: #fff; }

:root{
  --rose:#b86b67;
  --rose-dark:#9c5450;
  --rose-soft:#f7e7e6;
  --muted:#6a5554;
  --max:1100px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Header & Nav */
header { background: #fdf8f7; border-bottom: 1px solid #eee; }
.headerbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; }
.logo { height: 48px; width: auto; display: block; }
@media (max-width: 600px){ .logo { height: 40px; } }

nav { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
nav a { text-decoration: none; color: var(--rose); font-weight: 700; }
nav a:hover { color: var(--rose-dark); }

.btn-nav { background: var(--rose); color: #fff !important; padding: 8px 14px; border-radius: 6px; font-weight: 700; }
.btn-nav:hover { background: var(--rose-dark); }

/* HEADER */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo-section {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 12px;
}

.business-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--rose-dark);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

nav a {
  text-decoration: none;
  color: var(--rose-dark);
  font-weight: 500;
}

nav a:hover {
  color: var(--rose);
}

.book-now {
  background: var(--rose-dark);
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  transition: background 0.3s;
}

.book-now:hover {
  background: var(--rose);

}
/* HERO SECTION - TEMPORARY ROSE GOLD BANNER */
.hero {
  background:url("/images/home-banner.png") center center/cover no-repeat; 
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative
}

.hero-text p {
  font-size: 1.4rem;
  font-style: italic;
  margin: 0;
  color: var(--rose)
}

/* Intro */
.intro h2 { color: var(--rose); margin: 22px 0 8px; }
.intro p { color: var(--muted); margin: 0 0 18px; }

/* Footer */
footer { border-top: 1px solid #eee; background: #fdf8f7; color: var(--muted); font-size: 14px; }
footer .container { padding: 16px 0; }
/* =====================
   TREATMENTS PAGE
===================== */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* always 2 columns */
  gap: 20px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;   /* switch to 1 column on small screens */
  }
}
.card { border: 1px solid #eee; border-radius: 8px; padding: 15px; background: #fff; }
.card-header { display: flex; justify-content: space-between; align-items: flex-start; }
.card-header h3 { margin: 0; color: var(--rose); }
.card-header img { width: 120px; height: 80px; object-fit: cover; border-radius: 4px; margin-left: 10px; }

.teaser { margin: 8px 0; color: var(--muted); }
.link { font-size: 0.9rem; color: var(--rose-dark); cursor: pointer; display: inline-block; margin-bottom: 6px; }
.link:hover { text-decoration: underline; }

.full-text { display: none; font-size: 0.9rem; color: var(--muted); margin-top: 8px; }
.btn-soft {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 12px;
  background: var(--rose-soft);
  color: var(--rose-dark);
  border-radius: 4px;
  font-size: 0.85rem;
  text-decoration: none;
}
.btn-soft:hover { background: var(--rose); color: #fff; }
/* =====================
   TREATMENTS PAGE
===================== */
main h2 {
  color: var(--rose);      /* same rose-gold as homepage headings */
  margin-bottom: 10px;
}

main .intro {
  color: var(--muted);     /* soft muted grey */
  margin-bottom: 25px;
  font-style: italic;      /* matches the homepage intro feel */
}

.link {
  font-size: 0.9rem;
  color: var(--rose-dark) !important;   /* force rose-gold shade */
  cursor: pointer;
  display: inline-block;
  margin-bottom: 6px;
  text-decoration: none;
  font-style: italic;                   /* optional – makes it lighter */
}

.link:hover {
  text-decoration: underline;
  color: var(--rose) !important;        /* lighter rose on hover */
}
.card-header img[style*="display: none"] { display: none !important; }

/* =====================
   PRICES PAGE
===================== */

.price-section {
  margin-bottom: 40px;
}

.price-section h3 {
  color: var(--rose);   /* rose-gold headings */
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-table td {
  padding: 10px;
  border-bottom: 1px solid #f0d6de; /* soft rose divider */
  color: var(--muted);  /* softer grey text for treatments */
}

.price-table td:first-child {
  text-align: left;
}

.price-table td:last-child {
  text-align: right;
  font-weight: bold;
  color: var(--rose-dark); /* rose-gold prices */
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);  /* always 2 columns */
  gap: 10px 30px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #f0d6de;
  color: var(--muted);
}

.price-item span:last-child {
  font-weight: bold;
  color: var(--rose-dark);
}

@media (max-width: 768px) {
  .price-grid {
    grid-template-columns: 1fr;  /* single column on mobile */
  }
}
.price-notes {
  margin-top: 40px;
  padding: 20px;
  background: #fdf9fa;        /* soft rose background */
  border: 1px solid #f0d6de;  /* subtle rose border */
  border-radius: 6px;
}

.price-notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-notes li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.price-notes li::before {
  content: "✦ ";
  color: var(--rose-dark);
  font-weight: bold;
}
.price-section h4 {
  color: var(--rose-dark);
  margin: 20px 0 10px;
  font-size: 1.1rem;
}
.testimonial {
  background: #fdf9fa;
  border-left: 4px solid var(--rose-dark);
  margin: 20px 0;
  padding: 15px 20px;
  border-radius: 6px;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--muted);
}

.testimonial .author {
  margin-top: 8px;
  text-align: right;
  font-weight: 500;
  color: var(--rose-dark);
}
.carousel {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.testimonial {
  display: none;
  background: #fdf9fa;
  border-left: 4px solid var(--rose-dark);
  padding: 20px;
  border-radius: 8px;
  min-height: 150px;
}

.testimonial blockquote {
  margin: 0;
  font-style: italic;
  color: var(--muted);
  font-size: 1.1rem;
}

.testimonial .author {
  margin-top: 10px;
  font-weight: 500;
  color: var(--rose-dark);
}

.testimonial.active {
  display: block;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rose-dark);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
}

.carousel .prev {
  left: -50px;
}

.carousel .next {
  right: -50px;
}

.carousel button:hover {
  background: var(--rose);
}
.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--rose); /* rose-gold background */
  color: #fff;             /* white arrow */
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.carousel button:hover {
  background: var(--rose-dark);
}

.carousel .prev {
  left: -60px;
}

.carousel .next {
  right: -60px;
}
.contact-details {
  margin: 20px 0;
  font-size: 1.1rem;
}

.contact-details i {
  color: var(--rose-dark);
  margin-right: 10px;
}

.contact-details a {
  color: var(--muted);
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--rose-dark);
}

.social-links {
  margin-top: 30px;
}

.social-links a {
  display: inline-block;
  margin: 10px 15px 0 0;
  font-size: 1.1rem;
  color: var(--rose-dark);
  text-decoration: none;
}

.social-links a:hover {
  color: var(--rose);
}
.contact-form {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  max-width: 600px;
}

.contact-form label {
  margin: 10px 0 5px;
  font-weight: 500;
  color: var(--rose-dark);
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--rose-dark);
  outline: none;
}

.contact-form button {
  background: var(--rose-dark);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: var(--rose);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 30px;
}

.contact-info h3,
.contact-form-container h3 {
  color: var(--rose-dark);
  margin-top: 12px;
  margin-bottom: 8px;
}

.map {
  margin: 12px 0 18px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
}
.form-note {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}
/* Make section headings rose-gold */
.contact-info h3 {
  color: var(--rose-dark);
}

/* Make the body text (address, hours, parking, etc.) softer */
.contact-info p {
  color: var(--muted);
}

/* Icons (phone, email, etc.) in dark rose gold */
.contact-details i,
.contact-info i {
  color: var(--rose-dark);
}
/* Social icons in brand colours */
.social-links .fa-facebook {
  color: #1877f2; /* official Facebook blue */
}

.social-links .fa-instagram {
  /* Instagram gradient effect */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Facebook link + icon */
.social-links a[href*="facebook.com"] {
  color: #1877f2; /* Facebook blue */
}

.social-links a[href*="facebook.com"]:hover {
  color: #145dbf; /* darker blue on hover */
}

/* Instagram link + icon */
.social-links a[href*="instagram.com"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links a[href*="instagram.com"]:hover {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 25%, #d6249f 50%, #285AEB 75%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-links {
  margin-top: 20px;
}

.social-links a {
  display: inline-block;
  margin: 10px 15px 0 0;
  font-size: 1.2rem;   /* bigger text */
  font-weight: 600;    /* bolder */
  text-decoration: none;
}
.social-links i {
  font-size: 1.4rem;   /* a little bigger than text */
  vertical-align: middle;
  margin-right: 6px;
}
.policy-text h3 {
  color: var(--rose-dark);
  margin-top: 20px;
}

.policy-text p, 
.policy-text li {
  color: var(--muted);
  line-height: 1.6;
}

.policy-text ul {
  margin: 10px 0 20px 20px;
  padding: 0;
  list-style: disc;
}

.policy-thanks {
  margin-top: 20px;
  font-style: italic;
  color: var(--rose-dark);
}
.policy-thanks .star-icon {
  color: var(--rose-dark);
  margin-right: 8px;
  font-size: 1.1rem;
}
.last-updated {
  margin-top: 25px;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--rose-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.book-btn:hover {
  background: var(--rose);

}
/* WHY CHOOSE US */
.why-choose-us ul {
  list-style: none;
  padding: 0;
}

.why-choose-us li::before {
  content: "★";
  color: var(--rose-dark);
  margin-right: 8px;
}

.why-choose-us li {
  color: var(--muted);
  line-height: 1.6;
}

/* ABOUT ME */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  align-items: center;
  margin-top: 15px;
}

.about-img {
  width: 300px; /* fixed box width */
  border-radius: 8px;
  max-height: 300px /* fixed box height */
  object-fit: cover; /* crop instead of stretch */
}

.about-me p {
  color: var(--muted);
  line-height: 1.6;
}
/* POPULAR TREATMENTS */
.popular-treatments .treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.treatment-card {
  background: #fff;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.treatment-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 10px;
}

.treatment-card h3 {
  color: var(--rose-dark);
  margin: 10px 0 6px;
}

.treatment-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 10px;

}

.treatment-card .read-more {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--rose-dark);
  text-decoration: none;/* remove underline */
  font-weight: normal;   /* no bold */
  transition: color 0.3s, border-color 0.3s;
}

.treatment-card .read-more:hover {
  color: var(--rose);
  border-color: var(--rose);
}

.book-btn {
  display: inline-block;
  padding: 10px 20px;
  background: var(--rose-dark);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
}

.book-btn:hover {
  background: var(--rose);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox img {
  max-width: 90%;
  max-height: 70%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.lightbox p {
  color: #fff;
  font-size: 1rem;
  max-width: 80%;
  text-align: center;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}
/* GALLERY */
/* ===== Gallery Styles ===== */
.gallery-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  overflow: hidden;       /* keeps images contained in row */
  margin: 40px auto;
  max-width: 1200px;      /* keeps row neat on large screens */
}

.gallery-item {
  flex: 0 0 30%;          /* ensures 3 images per row */
  max-width: 30%;
  border: 2px solid #ddd; /* soft border */
  padding: 5px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, border 0.3s ease;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.gallery-item.active {
  transform: scale(1.05);           /* gentle pop out */
  border: 3px solid var(--rose-dark); 
  z-index: 2;
}


/* GALLERY CAROUSEL */
.carousel {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.gallery-item {
  flex: 0 0 33.33%; /* 3 items visible */
  text-align: center;
  transition: transform 0.3s ease;
  padding: 10px;
}

.gallery-item.active {
  transform: scale(1.05); /* center pop */
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 8px;
}

.carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  color: var(--rose-dark);
  cursor: pointer;
  z-index: 2000;
  border-radius: 50%;
  padding: 6px 12px;
}

.prev { left: 10px; }
.next { right: 10px; }

.full-text {
  display: none;
}
/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.testimonial {
  min-width: 100%;
  transition: transform 0.5s ease-in-out;
  font-style: italic;
  color: #6a5554; /* softer muted rose for text */
  padding: 1.5rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  color: #b86b67; /* rose gold arrows */
  cursor: pointer;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.testimonial-controls button:hover {
  color: #9c5450; /* darker rose gold on hover */
}

/* ===== Gallery Carousel ===== */
.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 20px;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  min-width: 250px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  max-width: 300px;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}

.gallery-prev,
.gallery-next {
  background: #b86b67;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.gallery-prev {
  left: 0;
}

.gallery-next {
  right: 0;
}
/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  text-align: center;
}

.testimonial {
  position: absolute;
  width: 100%;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  font-style: italic;
  color: var(--rose-dark);
  padding: 1.5rem;
}

.testimonial q {
  quotes: "“" "”" "‘" "’";
  font-size: 1.2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial .reviewer {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
}

.testimonial[style*="translateX(0%)"] {
  opacity: 1;
}

.testimonial-controls {
  text-align: center;
  margin-top: 1rem;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  margin: 0 0.5rem;
  cursor: pointer;
  color: var(--rose-dark);
  transition: color 0.3s ease;
}

.testimonial-controls button:hover {
  color: var(--rose);
}

/* ===== Gallery Carousel ===== */
.gallery-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 20px;
}

.gallery-item {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.7;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
}

.gallery-item.active {
  transform: scale(1.1);
  opacity: 1;
}

.gallery-item p {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: var(--rose-dark);
}

.gallery-prev,
.gallery-next {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--rose-dark);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: color 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  color: var(--rose);
}

.gallery-prev {
  left: -40px;
}

.gallery-next {
  right: -40px;
}
/* Testimonials */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.testimonial {
  min-width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s ease-in-out;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial q {
  font-style: italic;
  display: block;
  margin-bottom: 10px;
}

.testimonial .reviewer {
  font-weight: bold;
  color: var(--rose-dark);
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center; /* vertically align */
  gap: 20px;
  margin-top: 20px;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--rose-dark);
  cursor: pointer;
}

/* Gallery */
.gallery-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.gallery-item {
  flex: 0 0 30%;
  margin: 0 10px;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
}

.gallery-item.active {
  transform: scale(1.1);
  opacity: 1;
  z-index: 2;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--rose-dark);
  cursor: pointer;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.intro {
  color: #9c5450; /* darker rose gold */
  margin-bottom: 20px;
  text-align: left;
}
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 2rem auto;
  text-align: center;
  min-height: 120px;
}

.testimonial {
  position: absolute;
  width: 100%;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0;
  font-style: italic;
  color: var(--rose-dark);
}

.testimonial strong {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  color: var(--rose);
}

.testimonial-controls {
  margin-top: 1rem;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--rose);
  padding: 0 1rem;
}
.testimonial:first-child {
  opacity: 1;
  position: relative;
}
.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.testimonial {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  padding: 30px 40px;
  border-left: 4px solid #b86b67;
  background: #fff;               /* lighter background */
  border-radius: 8px;
  margin: 0 auto;
  max-width: 800px;               /* allow bigger quotes */
  min-height: 180px;              /* stop shrinking for short text */
  position: relative;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
}

.testimonial.active {
  display: block;
  opacity: 1;
}

.testimonial-controls {
  margin-top: 20px;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #9c5450;
}
.testimonial p {
  color: var(--muted);           /* softer muted rose */
  font-style: italic;
  position: relative;
  line-height: 1.75;
  margin: 0;
}

.testimonial p::before {
  content: "“";
  position: absolute;
  left: -12px;
  top: -10px;
  font-size: 2rem;
  color: var(--rose-dark);
}

.testimonial p::after {
  content: "”";
  font-size: 2rem;
  color: var(--rose-dark);
  margin-left: 4px;
}

.testimonial .client {
  display: block;
  margin-top: 14px;
  text-align: right;
  font-weight: 500;              /* not too bold */
  font-size: 0.95rem;
  color: var(--rose-dark);
}
/* Put the arrow buttons back and centre them */
.testimonial-controls{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-top:18px;
}

.testimonial-controls .prev,
.testimonial-controls .next{
  background:none;
  border:1px solid var(--rose-dark);
  color:var(--rose-dark);
  width:36px; height:36px;
  border-radius:50%;
  font-size:1.2rem;
  line-height:34px;        /* centres the chevron vertically */
  text-align:center;
  cursor:pointer;
  transition:all .25s ease;
}

.testimonial-controls .prev:hover,
.testimonial-controls .next:hover{
  background:var(--rose-dark);
  color:#fff;
}
/* Softer quote text colour and add both opening & closing marks */
.testimonial {
  background: var(--rose-soft);   /* instead of #fff */
  border-left: 4px solid var(--rose-dark);
  border-radius: 8px;
  padding: 28px 36px;
  max-width: 800px;
  margin: 0 auto;
  min-height: 180px;
  opacity: 0;
  display: none;
  transition: opacity 0.6s ease;
}

.testimonial p{
  color:#6a5554;                   /* muted rose for text */
  font-style:italic;
  position:relative;
  line-height:1.75;
  margin:0;
}

/* opening quote */
.testimonial p::before{
  content:"“";
  position:absolute;
  left:-16px;
  top:-8px;
  font-size:2rem;
  color:var(--rose-dark);
}

/* closing quote */
.testimonial p::after{
  content:"”";
  margin-left:4px;
  font-size:1.6rem;
  color:var(--rose-dark);
  vertical-align:top;
}

/* client name bottom-right */
.testimonial .client{
  display:block;
  margin-top:14px;
  text-align:right;                /* right aligned as requested */
  font-weight:700;
  color:var(--rose-dark);
}
/* ===================== */
/* Gallery Carousel Track */
/* ===================== */
.gallery-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 2rem auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.gallery-item {
  flex: 0 0 33.33%; /* 3 images per row */
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
  width: 90%;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Pop-out middle image */
.gallery-item.active img {
  transform: scale(1.1);
  border: 3px solid #b86b67; /* rose gold */
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* Arrows */
.gallery-prev, .gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184, 107, 103, 0.8); /* dark rose gold */
  color: #fff;
  border: none;
  padding: 0.8rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }
/* ===================== */
/* Testimonials Carousel */
/* ===================== */
.testimonial-wrapper {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  background: #f7e7e6; /* soft rose background */
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial {
  flex: 0 0 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  font-style: italic;
  color: #6a5554; /* muted rose grey */
}

.testimonial.active {
  opacity: 1;
  position: relative;
}

.testimonial p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.testimonial .client {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  text-align: right;
  color: #9c5450; /* dark rose gold */
}

/* Arrows */
.testimonial-prev, .testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(184, 107, 103, 0.8);
  color: #fff;
  border: none;
  padding: 0.8;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.2rem;
}

.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }

.gallery-item.active {
  transform: scale(1.1);
  border: 3px solid var(--rose-dark); /* dark rose border */
  z-index: 2;
}
/* Gallery Section */
.gallery {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.gallery h2,
.gallery .intro {
  text-align: left;         /* matches other pages */
  color: var(--rose-dark);  /* use your theme color */
  margin-left: 10px;
}

.gallery-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}

.gallery-item {
  flex: 0 0 300px;
  background: #f9f9f9;
  border: 2px solid var(--rose-soft);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  transition: transform 0.3s ease, border 0.3s ease;
}

.gallery-item img {
  max-width: 100%;
  border-radius: 4px;
}

.gallery-item.active {
  transform: scale(1.1);
  border: 3px solid var(--rose-dark);
}

.gallery-item p {
  margin-top: 10px;
  color: var(--muted);
}

/* Arrows */
.chevron-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.gallery-prev {
  left: 10px;
}

.gallery-next {
  right: 10px;
}

.chevron-button i {
  font-size: 18px;
  color: var(--rose-dark);
}
/* Align gallery page like other pages */
.gallery-section { margin: 0 auto; padding: 10px 0; }

.gallery-section h2 { margin-bottom: 10px; color: var(--rose); }

.gallery-section .intro {
  color: var(--muted) !important;   /* fixes the wrong intro colour */
  margin-bottom: 10px;
  text-align: left;
  font-style: italic; 
}

/* Neutralise any old wrapper/outer box styling */
.gallery-wrapper {
  border: none !important;
  background: transparent !important;
}

/* Track + items */
.gallery-track {
  display: flex;
  gap: 20px;                     /* keep in sync with JS "gap" */
  transition: transform 0.5s ease;
  align-items: stretch;
}

.gallery-item {
  flex: 0 0 300px;
  max-width: 300px;
  border: 2px solid #ddd;        /* only the card has a border */
  border-radius: 6px;
  padding: 10px;
  background: #fff;
  text-align: center;
  transition: transform 0.3s ease, border 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Pop-out centre card (one bold border, no extra outer box) */
.gallery-item.active {
  transform: scale(1.05);
  border: 3px solid var(--rose-dark);
  z-index: 2;
}

/* Arrows neatly centred */
.chevron-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}

.gallery-prev { left: 10px; }
.gallery-next { right: 10px; }

.chevron-button i { color: var(--rose-dark); font-size: 18px; }

.gallery-section h2 {
  margin-top: 10px;   /* reduce from default */
}
.gallery-wrapper {
  margin-top: 10px;   /* pulls boxes closer to heading */
}
.gallery-track {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;

}
.gallery-track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.gallery-item {
  flex: 0 0 auto;
  opacity: 0.6;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.gallery-item.active {
  transform: scale(1.2);
  opacity: 1;
  z-index: 2;
}

.gallery-item.left,
.gallery-item.right {
  opacity: 0.8;
}

.gallery-viewport {
  overflow: hidden;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
.gallery-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px; /* adjust for your layout */
  margin: 0 auto;
  overflow: hidden;
}

.gallery-track {
  display: flex;
  width: max-content; /* expand track for all children */
  transition: transform 0.5s ease-in-out;
}

.gallery-item {
  flex: 0 0 33.333%;  /* show 3 items across */
  max-width: 33.333%;
  box-sizing: border-box;
  padding: 10px; /* spacing between */
  text-align: center;
}


.gallery-item img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.gallery-item.active {
  transform: scale(1.15);
  opacity: 1;
  border: 3px solid var(--rose-dark);
  z-index: 2;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--muted);
}

.gallery-prev,
.gallery-next {
  position: relative;
  z-index: 5;
  background: var(--rose-soft);
  border: none;
  color: var(--rose-dark);
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
  background: var(--rose);
}
/* ---- Gallery layout (3 visible, no pop-out) ---- */
.gallery-wrapper {
  position: relative;
  max-width: 1000px; /* adjust if needed */
  margin: 0 auto;
}

.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

.gallery-track {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease;
}

.gallery-item {
  flex: 0 0 calc(100% / 3); /* 3 items always visible */
  max-width: calc(100% / 3);
  padding: 10px;
  box-sizing: border-box;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}


.gallery-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

/* Arrows fixed at sides */
.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  padding: 10px 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.gallery-prev { left: 8px; }
.gallery-next { right: 8px; }
/* ===== TESTIMONIALS ===== */
.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7e7e6; /* soft rose */
  padding: 2rem;
  position: relative;
  border-left: 5px solid #b86b67; /* rose gold accent */
}

.testimonial-track {
  flex: 1;
  text-align: center;
  overflow: hidden;
}

.testimonial {
  display: none;
  font-size: 1.2rem;
  color: #6a5554; /* muted rose text */
  padding: 1rem;
}

.testimonial.active {
  display: block;
}

.testimonial .client {
  display: block;
  margin-top: 0.8rem;
  font-weight: bold;
  text-align: right;
  color: #9c5450; /* dark rose gold */
}

/* Reset arrow buttons */
.testimonial-carousel button {
  background: none;
  border: none;
  font-size: 2rem;   /* arrow size */
  cursor: pointer;
  color: #9c5450;    /* rose gold shade */
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

/* Position them */
.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }

.testimonial-carousel button:hover {
  color: #b86b67;
}

/* ===== GALLERY ===== */
.gallery-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease-in-out;
}

.gallery-item {
  flex:0 0 calc(33.333% - 1rem); /*show 3 across */
  background: #fff; /*white not pink */
  text-align: center;
  border: 1px solid #ddd;
}

.gallery-item img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.gallery-wrapper button {
  position: absolute;
  top: 50%transform: translateY(-50%);
}
.gallery-prev { left: 0; }
.gallery-next { right: 0; }

.gallery-wrapper button:hover {
  color: #b86b67;
}
/* Testimonials quotes - single clean quotes */
.testimonial q {
  quotes: "“" "”"; /* only one set of quotes */
}
.testimonial q::before { content: open-quote; }
.testimonial q::after  { content: close-quote; }

/* Arrows same size */
.testimonial-carousel button {
  height: auto;        /* not full box */
  align-self: center;  /* center vertically */
}
/* Testimonials container */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7e7e6; /* soft rose */
  padding: 24px;
  /* remove the heavy left border that looked like a { */
  border-left: none;
}

/* The track just holds one visible .testimonial at a time */
.testimonial-track {
  flex: 1;
  text-align: center;
}

/* One visible at a time */
.testimonial { display: none; }
.testimonial.active { display: block; }

.testimonial p, .testimonial q { 
  font-size: 1.1rem; 
  color: #6a5554;      /* muted */
  margin: 0;
}

.testimonial .client {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  text-align: right;
  color: #9c5450;      /* dark rose */
}

/* Arrows: small, matching both sides, fixed */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #9c5450;
  cursor: pointer;
  padding: 6px 10px;
}
.testimonial-prev { left: 10px; }
.testimonial-next { right: 10px; }
.testimonial-prev:hover,
.testimonial-next:hover { color: #b86b67; }

/* Wrapper + arrows fixed at sides */
.gallery-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-prev,
.gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  font-size: 1.6rem;
  color: #9c5450;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  z-index: 2;
}
.gallery-prev { left: 6px; }
.gallery-next { right: 6px; }

/* Viewport clamps the row; enables smooth scrollLeft */
.gallery-viewport {
  overflow: hidden;
  width: 100%;
}

/* Track is a flex row with a defined gap (JS reads this gap) */
.gallery-track {
  display: flex;
  gap: 16px;                   /* <-- JS uses this value */
  scroll-behavior: smooth;
}

/* Exactly 3 items visible (account for 2 gaps) */
.gallery-item {
  flex: 0 0 calc((100% - 32px) / 3);   /* 32px = 2 * 16px gaps */
  max-width: calc((100% - 32px) / 3);
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;         /* keeps consistent height */
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6a5554;              /* muted */
}
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7e7e6; /* soft rose */
  padding: 24px;
  border-left: none;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-track {
  flex: 1;
  text-align: center;
}

.testimonial { display: none; }
.testimonial.active { display: block; }

.testimonial p, .testimonial q { 
  font-size: 1.1rem; 
  color: #6a5554; 
  margin: 0;
}
.testimonial .client {
  display: block;
  margin-top: 10px;
  font-weight: 600;
  text-align: right;
  color: #9c5450;
}

/* Arrows outside the box */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #9c5450;
  cursor: pointer;
  padding: 6px 10px;
}

.testimonial-prev { left: -40px; }   /* push left outside box */
.testimonial-next { right: -40px; }  /* push right outside box */

 

/* Gallery simple grid */
.gallery-wrapper {
  max-width: 1200px;
  margin: 20px auto;
}

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /*wider*/
  gap: 20px; /*bigger spacing*/max-width: 1200px;
  margin: 0 auto; /* center the grid */
}

.gallery-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  height: 320px; /* adjust to taste */
  object-fit: cover;
  border-radius: 6px;
}

.gallery-item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6a5554;
}
/* Testimonial carousel buttons */
.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9c5450; /* dark rose gold */
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

/* Position arrows outside the testimonial box */
.testimonial-prev {
  left: -50px;
}
.testimonial-next {
  right: -50px;
}
/* --- TESTIMONIALS ARROWS --- */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: #f7e7e6; /* soft rose */
  padding: 30px;
  border-radius: 6px;
  text-align: center;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-item {
  min-width: 100%;
  font-style: italic;
  color: #6a5554;
}

.testimonial-carousel button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #9c5450; /* dark rose */
  cursor: pointer;
}

.testimonial-carousel .prev { left: -40px; }
.testimonial-carousel .next { right: -40px; }

/* --- GALLERY LAYOUT FIX --- */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr)); /* 3 columns, flexible */
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto; /* centers the gallery */
}

.gallery-item {
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  width: 100%;       /* fill grid cell */
  height: 320px;     /* adjust as you like */
  object-fit: cover; /* crop nicely */
  display: block;
}
/* Testimonials */
/* Testimonials */
.testimonials-wrapper {
  position: relative;
  max-width: 700px;       /* smaller box */
  margin: 2rem auto;
  overflow: hidden;
  background: #f7e7e6;    /* soft rose */
  padding: 1.5rem 2rem;
  border-left: 4px solid #b86b67;
  border-radius: 6px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;           /* lock to 1 item per view */
  box-sizing: border-box;
  text-align: center;
  padding: 1rem;
}

.testimonial-item .quote {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 0.75rem;
  color: #6a5554;
}

.testimonial-item .client {
  text-align: right;
  font-weight: bold;
  color: #9c5450;
}

/* Arrows */
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #9c5450;
  cursor: pointer;
  z-index: 10;
}

.testimonial-arrow.prev { left: -35px; }
.testimonial-arrow.next { right: -35px; }

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 2rem auto;
  background: none
  padding: 2rem;
  border-left: 4px solid #b86b67; /* dark rose border */
  min-height: 180px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  font-style: italic;
  color: #6a5554; /* muted rose */
}

.reviewer {
  display: block;
  text-align: right;
  font-weight: bold;
  margin-top: 1rem;
  color: #9c5450;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #b86b67;
  cursor: pointer;
  padding: 0 10px;
}

.testimonial-arrow.prev {
  left: -40px; /* sit outside box */
}

.testimonial-arrow.next {
  right: -40px; /* sit outside box */
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  color: #b86b67;
  cursor: pointer;
  z-index: 10;
}

.testimonial-arrow.prev { left: 10px; }
.testimonial-arrow.next { right: 10px; }

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;          /* full width of wrapper */
}

.testimonial-item {
  flex: 0 0 100%;       /* each takes full width */
  box-sizing: border-box;
}
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 2rem;
  background: #f7e7e6;
  border-left: 5px solid #b86b67;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 1rem;
  color: #333;
}

.reviewer {
  display: block;
  text-align: right;
  font-weight: bold;
  color: #6a5554;
  padding-right: 1.5rem;  /* nudges left from arrow */
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none
  border: none;
  font-size: 2rem;
  color: #b86b67;
  cursor: pointer;
  z-index: 10;
}

.testimonial-arrow.prev { left: 10px; }
.testimonial-arrow.next { right: 10px; }

/* === TESTIMONIALS === */
.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 2rem auto;
  background: #f7e7e6; /* soft rose */
  border-radius: 6px;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.testimonial-item {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 2rem;
}

.testimonial-item p {
  font-style: italic;
  color: #333;
  margin-bottom: 1rem;
}

.reviewer {
  display: block;
  text-align: right;
  font-weight: bold;
  color: #6a5554;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  font-size: 2rem;
  color: #b86b67;
  cursor: pointer;
  z-index: 10;
}

.testimonial-arrow.prev { left: 10px; }
.testimonial-arrow.next { right: 10px; }

/* === TESTIMONIALS CAROUSEL === */
.testimonial-carousel {
  position: relative;
  max-width: 800px;
  margin: 2rem auto;
  overflow: hidden;
  background: #f7e7e6; /* soft rose */
  border-left: none
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
  color: #6a5554; /* muted text */
}

.testimonial-item .quote {
  font-style: italic;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonial-item .client {
  font-weight: bold;
  font-size: 0.95rem;
  text-align: right;
  margin-top: 0.5rem;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #b86b67; /* rose gold */
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.carousel-btn:hover {
  color: #9c5450; /* darker rose */
}

#prevTestimonial {
  left: 10px;
}

#nextTestimonial {
  right: 10px;
}
/* ===== Testimonials Carousel ===== */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  max-width: 600px;
  margin: 2rem auto;
  background: #f7e7e6; /* soft rose background */
  padding: 2rem;
  border-radius: 8px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-item {
  flex: 0 0 100%; /* Each testimonial takes full width */
  box-sizing: border-box;
  text-align: center;
  padding: 1rem;
}

.testimonial-item .quote {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #6a5554; /* muted rose text */
  margin-bottom: 1rem;
}

.testimonial-item .client {
  font-weight: bold;
  text-align: right;
  color: #9c5450; /* dark rose */
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #9c5450;
  padding: 0 10px;
  z-index: 10;
}

#prevTestimonial {
  left: 10px;
}

#nextTestimonial {
  right: 10px;
}
/* === TESTIMONIALS CAROUSEL === */
.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  overflow: hidden; /* hides spillover text */
  background: #f7e7e6; /* soft rose */
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%; /* ensures alignment */
}

.testimonial-item {
  flex: 0 0 100%; /* each slide fills the carousel */
  box-sizing: border-box;
  padding: 1rem;
}

.testimonial-item .quote {
  font-size: 1.2rem;
  color: #6a5554; /* softer text */
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-item .client {
  font-weight: 600;
  color: #9c5450; /* dark rose */
  text-align: right;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #9c5450;
}

#prevTestimonial {
  left: -2rem; /* move outside box */
}

#nextTestimonial {
  right: -2rem; /* move outside box */
}
/* ===== Testimonials Carousel ===== */
.testimonials-container {
  max-width: 800px;
  margin: 2rem auto;
  background: #f7e7e6; /* soft rose */
  padding: 2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial {
  display: none;
  font-size: 1.1rem;
  color: #6a5554; /* muted rose */
  line-height: 1.6;
  min-height: 120px;
}

.testimonial.active {
  display: block;
}

.testimonial::before,
.testimonial::after {
  content: '"';
  font-size: 2rem;
  color: #b86b67; /* rose gold */
  font-weight: bold;
}

.client {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #9c5450; /* dark rose */
  text-align: right;
}

/* Arrows */
.testimonials-container .prev,
.testimonials-container .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #9c5450;
  cursor: pointer;
  padding: 0 0.5rem;
}

.testimonials-container .prev {
  left: -40px; /* outside box */
}

.testimonials-container .next {
  right: -40px; /* outside box */
}
/* === TESTIMONIALS === */
.testimonials {
  max-width: 900px;
  margin: 60px auto;
  text-align: left;
}


.testimonial-carousel {
  position: relative;
  overflow: hidden;
  background: var(--rose-soft); /* soft rose box */
  border-left: 4px solid var(--rose-dark); /* bold left border */
  padding: 30px 50px;
  border-radius: 8px;
  min-height: 180px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

.testimonial-item {
  min-width: 100%;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #333;
  position: relative;
}

.testimonial-item p {
  font-style: italic;
  margin-bottom: 15px;
  position: relative;
}

.testimonial-item p::before {
  content: "“";
  font-size: 2rem;
  color: var(--rose-dark);
  position: absolute;
  left: -15px;
  top: -10px;
}

.testimonial-item p::after {
  content: "”";
  font-size: 2rem;
  color: var(--rose-dark);
  position: absolute;
  right: -15px;
  bottom: -10px;
}

.client {
  display: block;
  text-align: right;
  font-weight: bold;
  color: var(--rose-dark);
}

/* Arrows */
.testimonial-prev,
.testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--rose-dark);
  z-index: 2;
  transition: color 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: var(--rose);
}

.testimonial-prev {
  left: -40px; /* sits outside box */
}

.testimonial-next {
  right: -40px; /* sits outside box */
}
.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2rem 0;
}

.testimonial-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 800px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-item {
  min-width: 100%;
  box-sizing: border-box;
  padding: 2rem;
  background: #f7e7e6; /* soft rose */
  border-radius: 8px;
  color: #6a5554; /* muted rose */
}

.testimonial-item p {
  font-style: italic;
}

.testimonial-item .client {
  display: block;
  text-align: right;
  font-weight: 500;
  margin-top: 1rem;
  color: var(--rose-dark)
}

/* Arrows */
.testimonial-prev,
.testimonial-next {
  background: none;
  border: none;
  font-size: 2rem;
  color: #9c5450;
  cursor: pointer;
  padding: 0 1rem;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  color: #b86b67;
}

/* If anything else is pushing it down, neutralise first-child margins */
#page-testimonials > *:first-child { margin-top: 0 !important; 
}
.page-testimonials h2 {
  text-align: left;
  margin-top: 1rem;   /* adjust if you want it tighter to the header */
  color: var(--rose); /* match other headings */
}

.page-testimonials .intro {
  text-align: left;
  margin-top: 0.5rem;
  color: var(--muted); /* same muted intro color */
  font-style: italic;
}

.page-testimonials h2 {
  text-align: left !important;
  margin-top: 1rem !important;
  margin-left: 0 !important;
  color: var(--rose) !important;
}

.page-testimonials .intro {
  text-align: left !important;
  margin-top: 0.5rem !important;
  margin-left: 0 !important;
  color: var(--muted) !important;
  font-style: italic !important;
}

/* Reset heading + intro alignment */
.page-testimonials h2,
.page-testimonials .intro {
  text-align: left;
  margin-left: 0;
}
/* Only centre the carousel content */
.testimonials-carousel {
  display: flex;
  justify-content: center;
}
/* Testimonials page tweaks */
.page-testimonials h2,
.page-testimonials .intro {
  text-align: left;      /* align left like other pages */
  margin-left: 0;        /* remove extra centering margin */
  margin-top: 0;         /* pull up closer to the header */
}
.testimonials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.testimonial {
  background: #f7e7e6; /* soft rose */
  padding: 20px;
  border-left: 4px solid #b86b67; /* dark rose */
  font-style: italic;
}

.testimonial .reviewer {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  text-align: right;
  color: var(--rose-dark)
}
/* Testimonials styling */
.testimonial-item .quote {
  color: var(--muted);     /* softer muted tone for quotes */
  font-weight: normal;
}

.testimonial-item .client {
  color: var(--rose-dark); /* dark rose for "Client Review" */
  font-weight: normal;     /* remove bold */
  text-align: right;
}
/* Make testimonial quote text muted */
.testimonial-item .quote {
  color: var(--muted);   /* softer muted colour */
  font-style: italic;    /* optional, makes it look softer */
}

/* Make reviewer text dark rose */
.testimonial-item .reviewer {
  color: var(--rose-dark);
  font-weight: bold;
  text-align: right;     /* keeps it tucked in at bottom right */
}
/* Gallery grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 items per row */
  gap: 2rem; /* space between items */
  margin-top: 2rem;
}

.gallery-item {
  background: #fff;
  border: 1px solid var(--muted);
  text-align: center;
  padding: 1rem;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;
  height: 280px;       /* makes images taller */
  object-fit: cover;   /* keeps them neat */
  border-radius: 6px;
}

.gallery-item p {
  margin-top: 0.8rem;
  color: var(--muted);
}
/* Make gallery span full width */
.page-gallery .gallery-grid {
  max-width: 1200px;     /* make grid wider */
  margin: 2rem auto;     /* center it */
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.page-gallery .gallery-item img {
  height: 320px; /* bigger height */
}
/* Force gallery to full width */
.page-gallery .container {
  max-width: 100%;   /* allow full width */
  padding: 0 2rem;   /* keep a little space left/right */
}

/* Gallery grid wider, 3 per row */
.page-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 2rem;
  justify-items: center;
}

/* Make image boxes fill their grid cell */
.page-gallery .gallery-item {
  width: 100%;
  max-width: 800px;  /* control box width */
}

.page-gallery .gallery-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
}
.gallery-grid img {
  filter: none !important;
  opacity: 1 !important;
}
/* --- GALLERY: remove any dimming, overlays, blends --- */
body .page-gallery .gallery-grid .gallery-item { 
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
  position: relative; /* for overlay cleanup below */
}

body .page-gallery .gallery-grid .gallery-item img {
  opacity: 1 !important;
  filter: none !important;
  -webkit-filter: none !important;
  mix-blend-mode: normal !important;
}

/* Kill any grey overlay pseudo-elements if they exist */
body .page-gallery .gallery-grid .gallery-item::before,
body .page-gallery .gallery-grid .gallery-item::after {
  content: none !important;
  display: none !important;
  opacity: 0 !important;
  filter: none !important;
}

/* Keep a subtle hover pop (no greyscale) */
body .page-gallery .gallery-grid .gallery-item img {
  transition: transform .25s ease;
}
body .page-gallery .gallery-grid .gallery-item:hover img {
  transform: scale(1.02);
}
/* --- ABOUT + WHY CHOOSE grid --- */
.about-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;    /* left = photo, right = text */
  grid-template-rows: auto auto;       /* row 1 = About text, row 2 = Why choose */
  gap: 24px 32px;
  align-items: start;
  margin-top: 24px;
}

/* Photo spans both text rows */
.about-photo {
  grid-row: 1 / span 2;
  border-radius: 10px;
  overflow: hidden;                    /* hides crop edges neatly */
  /* keep a nice portrait shape without squashing */
  aspect-ratio: 3 / 4;                 /* modern browsers */
  background: var(--rose-soft);
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;                    /* fills box, no squash; gentle crop */
  display: block;
}

/* Text + bullets */
.about-text h2 {
  color: var(--rose);                   /* matches your headings */
  margin: 0 0 8px;
}
.about-text .intro {
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}

.why-choose h3 {
  color: var(--rose-dark);
  margin: 10px 0 8px;
}
.why-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-bullets li {
  position: relative;
  padding-left: 22px;
  margin: 8px 0;
  color: var(--muted);
}
/* little star/bullet like your pricing notes style */
.why-bullets li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  color: var(--rose-dark);
  opacity: 0.85;
  transform: translateY(2px) scale(0.9);
}

/* Pull Popular Treatments up a touch if needed */
section.popular-treatments { margin-top: 28px !important; }

/* --- Responsive (stack on mobile) --- */
@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto; /* photo, about, why-choose */
  }
  .about-photo {
    grid-row: 1;
    aspect-ratio: auto;
  }
  .about-photo img {
    width: 100%;
    height: auto;                       /* no crop on small screens */
    object-fit: contain;
  }
}
/* ================================
   MOBILE RESPONSIVE TWEAKS
   ================================ */
@media (max-width: 768px) {

  /* 1. Navbar / Header */
  .navbar-brand {
    font-size: 0.9rem;   /* shrink business name */
    line-height: 1.2;
    text-align: center;
    white-space: normal; /* allow neat wrapping */
  }
  .navbar-nav {
    text-align: center;
  }

  /* 2. Homepage Hero Banner */
  .hero {
    height: 250px; 
    background-size: cover;
    background-position: center;
  }
  .hero-text h1 {
    font-size: 1.4rem;
  }
  .hero-text p {
    font-size: 1rem;
  }

  /* 3. About Section - Headshot */
  .about {
    flex-direction: column;  /* stack image & text */
    text-align: center;
  }
  .about img {
    max-width: 200px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
  }

  /* 4. Gallery Layout */
  .gallery-grid {
    grid-template-columns: 1fr; /* single image per row */
    gap: 1rem;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
  }
}
/* ===== MOBILE OPTIMISATIONS ===== */
@media (max-width: 768px) {

  /* Business name in header */
  .business-name {
    font-size: 0.8rem;
    line-height: 1.2;
    display: block;
    text-align: center;
    margin-top: 0.5rem;
  }

  /* Hero banner image - fit screen */
  .hero {
    height: 220px;
    background-size: contain;  /* fit entire image */
    background-repeat: no-repeat;
    background-position: center;
  }

  /* Homepage headshot - smaller */
  .about img {
    max-width: 150px;
    height: auto;
    margin: 0 auto 1rem;
    display: block;
    border-radius: 8px;
  }

  /* Gallery - 1 image per row */
  .gallery {
    display: grid;
    grid-template-columns: 1fr;  /* one per row */
    gap: 1rem;
  }
  .gallery-item {
    width: 100%;
  }
  .gallery-item img {
    width: 100%;
    height: auto;
    display: block;
  }
}
/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {

  /* Header business name */
  header .business-name {
    font-size: 0.7rem !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    text-align: center !important;
    display: block;
  }

  /* Homepage headshot image */
  .about img,
  .headshot img {
    max-width: 120px !important;   /* much smaller */
    height: auto !important;
    display: block;
    margin: 0 auto 1rem !important;
  }

  /* Gallery to single column */
  .gallery,
  .gallery-grid,
  .gallery-container {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* force 1 image per row */
    gap: 1rem;
  }
  .gallery-item {
    width: 100% !important;
  }
  .gallery-item img {
    width: 100% !important;
    height: auto !important;
    display: block;
  }
}
/* Homepage headshot image - stricter mobile sizing */
.about img,
.headshot img {
  max-width: 120px !important;
  max-height: 150px !important;  /* hard cap on height */
  width: auto !important;
  height: auto !important;
  object-fit: cover !important; /* keeps proportions */
  border-radius: 8px;
  display: block;
  margin: 0 auto 1rem !important;
}
/* Allow nav items to wrap neatly on small screens */
nav ul {
  display: flex;
  flex-wrap: wrap;   /* items can drop to the next line */
  justify-content: center; /* keep them centered */
  padding: 0;
  margin: 0;
  list-style: none;
}

nav ul li {
  flex: 1 1 auto;   /* let each item shrink and grow */
  text-align: center;
  margin: 5px 0;    /* spacing between rows if wrapped */
}

nav ul li a {
  display: block;
  padding: 8px 12px;
  text-decoration: none;
}
/* Mobile header layout: logo + business name on top, nav underneath */
@media (max-width: 768px) {
  header .header-container {
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center items */
    text-align: center;
  }

  header .logo-section {
    margin-bottom: 10px;      /* space between logo/name and nav */
  }

  header .logo-section .business-name {
    font-size: 0.85rem;       /* smaller name */
    line-height: 1.2;
  }

  nav ul {
    flex-wrap: wrap;          /* wrap tabs neatly */
    justify-content: center;
    gap: 6px;
  }

  nav ul li {
    flex: initial;
    margin: 0;
  }

  nav ul li a {
    font-size: 0.9rem;
    padding: 4px 8px;
  }
}
/* === CLEAN HEADER REBUILD: DESKTOP ONLY === */
@media (min-width: 769px) {
  header {
    width: 100%;
    background: transparent;
    display: flex;
    justify-content: center;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .header-container {
    width: 100%;
    max-width: 1200px;             /* keeps it centered */
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  /* logo */
  .logo {
    height: 80px;                  /* good visible size */
    width: auto;
  }

  /* business name */
  .business-name {
    font-size: 1rem;               /* smaller text */
    font-weight: 600;
    color: var(--rose-dark);
    margin-left: 10px;
    white-space: nowrap;
  }

  /* navigation links */
  nav ul {
    list-style: none;
    display: flex;
    gap: 12px;                     /* tighter gap between tabs */
    margin: 0;
    padding: 0;
  }

  nav ul li a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.95rem;
    white-space: nowrap;
  }

  /* Book Now button */
  nav ul li a.book-now {
    background: var(--rose);
    color: #fff !important;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
  }
}

