/* =========================
   BASE & RESET STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* COLOR VARIABLES */
:root {
  --pink: #F06292;        /* Main pink for hover or highlights */
  --dark-pink: #D81B60;   /* Dark pink for buttons, strong accents */
  --light-blue: #BBDEFB;  /* Light blue for backgrounds */
  --dark-text: #333;      /* Dark text color */
  --light-text: #fff;     /* White/light text color */
  --white: #fff;          /* White color */
  --footer-bg: #58a5d8;   /* Dark gray for footer */
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
}


/* =========================
   HEADER / NAV
========================= */
header {
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}

/* LOGO STYLES */
.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--dark-text);
}

/* Increase logo width to 150px */
.logo-img {
  width: 150px;
  margin-right: 8px;
  vertical-align: middle;
}

.logo a span {
  font-size: 1.5rem;
  font-weight: 600;
}

/* Hidden checkbox for toggling menu on mobile */
#menu-toggle {
  display: none;
}

/* Hamburger (three lines) */
.hamburger {
  display: none; /* Hidden on larger screens */
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
}

/* Hamburger lines */
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 4px 0;
  background: var(--dark-text);
  transition: 0.3s ease;
}

/* Navigation links container */
.nav-menu {
  display: flex;
  align-items: center;
}

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

.nav-links li {
  display: inline-block;
}

.nav-links a {
  text-decoration: none;
  font-weight: 400;
  color: var(--dark-text);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--pink);
  color: var(--light-text);
}

/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--light-text);
  margin-bottom: 1rem;
}

/* Dim the hero image with a dark overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  /* Increase or decrease alpha to adjust dimness */
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1; /* Above the overlay */
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

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

.btn {
  background: var(--dark-pink);
  color: var(--light-text);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s;
}
.btn:hover {
  background: var(--pink);
}

/* Page-Specific Hero Backgrounds (.png) */
.hero-index {
  background: url("index.png") center/cover no-repeat;
}
.hero-services {
  background: url("services.png") center/cover no-repeat;
}
.hero-testimonials {
  background: url("testimonials.png") center/cover no-repeat;
}
.hero-about {
  background: url("about.png") center/cover no-repeat;
}
.hero-contact {
  background: url("contact.png") center/cover no-repeat;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

/* =========================
   FEATURED SECTION (Home)
========================= */
.featured {
  background: #fff;
  padding: 2rem 0;
  text-align: center;
}

.featured h2 {
  margin-bottom: 1rem;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.featured-item {
  background: #f9f9f9;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: left;
}

.featured-item h3 {
  margin-bottom: 0.5rem;
}

/* Responsive featured grid */
@media (max-width: 900px) {
  .featured-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   SERVICES SECTION
========================= */
.services-page h1 {
  text-align: center;
  margin-bottom: 0.75rem;
}

.services-page .section-intro {
  max-width: 900px;
  margin: 0.5rem auto 2rem;
  text-align: center;
}

.service-category-block {
  margin-top: 2.5rem;
}

.service-category-block h2 {
  text-align: left;
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #f9f9f9;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: left;
}

.service-card h3 {
  margin-bottom: 0.5rem;
}

.service-price-old {
  text-decoration: line-through;
  opacity: 0.7;
  margin-right: 8px;
}

.service-price-sale {
  font-weight: 700;
}


@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   TESTIMONIALS SECTION
========================= */
.testimonials-section h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-item {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial-author {
  text-align: right;
  font-weight: 600;
}

/* Prevent carousel images from zooming */
.carousel-slide img{
  object-fit: contain;   /* was cover */
  background: #000;      /* optional: avoids empty space looking odd */
}

/* =========================
   ABOUT SECTION
========================= */
.about-section h1 {
  text-align: center;
  margin-bottom: 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about-grid h2 {
  margin: 1rem 0 0.5rem;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

.center-insta {
  display: flex;
  justify-content: center;
}

/* Center single Instagram embed inside the grid */
.social-embed-grid.center-insta {
  grid-template-columns: 1fr;     /* one column */
  justify-items: center;          /* center items horizontally */
}

/* Optional: keep embed from stretching too wide on desktop */
.social-embed-grid.center-insta .social-embed {
  width: 100%;
  max-width: 520px;               /* adjust if you want wider */
}


/* =========================
   CONTACT SECTION
========================= */
.contact-section h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-info h2 {
  margin-bottom: 0.5rem;
}

.contact-actions {
  margin-top: 10px;
}


.contact-form {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
}

.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* =========================
   FOOTER
========================= */
footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 1rem 0;
  margin-top: 0rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  
}

footer {
  background: var(--footer-bg);
  color: #ccc;
  padding: 0.75rem 0;  /* reduced from 1rem */
  margin-top: 0;
}

.footer-nav {
  list-style: none;
  display: flex; /* Allows for wrapping */
  flex-wrap: wrap; /* Ensures items wrap if necessary */
  gap: 1rem;
  margin-top: 0rem;
  padding: 0;
  justify-content: center; /* Centers items horizontally */
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: var(--pink);
}

.footer-note {
  margin-top: 10px;
  font-size: 0.rem;
  opacity: 0.8;
}



/* =========================
   MEDIA QUERIES
========================= */
@media screen and (max-width: 768px) {
  /* Show Hamburger, hide nav menu by default */
  .hamburger {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 0;
    left: 0;
    background: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;       /* Center the menu text */
    padding: 1rem 0;
	padding-right: 10px;
  }
  .nav-links {
    flex-direction: column;
    gap: 0;
    align-items: center;      /* Center the flex items */
  }
  .nav-links li {
    margin: 1rem 0;
  }
  
  .footer-nav {
    flex-direction: column; /* Stacks items vertically */
    align-items: center; /* Centers items */
    text-align: center; /* Ensures text is centered */
    gap: 0.5rem; /* Reduces spacing for a cleaner layout */
  }
  
  /* When checkbox is checked, show nav-menu */
  #menu-toggle:checked + .hamburger + .nav-menu {
    display: block;
  }

  .navbar {
    position: relative;
  }
  .hero {
    height: 40vh; /* shorter hero on smaller screens */
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/* =========================
   SERVICES LIST (NO PRICES)
========================= */
.service-categories .service-category{
  background: rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  padding: 1.25rem 1.25rem 0.75rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-categories .service-category h2{
  margin-bottom: 0.75rem;
}

.service-bullets{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.service-bullets li{
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.service-bullets li:last-child{
  border-bottom: none;
}

.service-cta-box {
  text-align: center;
}

.service-cta-box p {
  margin-bottom: 12px;
}

.service-cta-box .btn {
  margin-top: 12px;
}

/* =========================
   SERVICE PHOTOS (HOME + SERVICES)
========================= */
.service-photo{
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.9rem;
  display: block;
}

.service-card{
  overflow: hidden;
}

.featured-item{
  overflow: hidden;
}

/* About page lists */
.about-list{
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.1rem;
}
.about-list li{
  margin: 0.35rem 0;
  line-height: 1.5;
}

/* === Contact Layout: Prevent Button Overlap === */
.contact-actions{
  margin-top: 18px;
  gap: 12px;
}
.contact-actions .btn{
  line-height: 1.2;
  padding: 12px 18px;
  margin-top: 10px;
  white-space: nowrap;
}
.contact-actions .btn, .contact-actions a.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.contact-hours{
  margin-top: 22px;
}
/* If any global .btn has fixed width, ensure it can wrap on small screens */
@media (max-width: 520px){
  .contact-actions .btn{
    width: 100%;
    white-space: normal;
  }
}

/* === Contact Buttons: Match Styles === */
.contact-btn-outline{
  /* Match the base .btn styling by not forcing background/border overrides */
  background: inherit;
  color: inherit;
  border: inherit;
}

/* ===== CAROUSEL ===== */

/* Force a stable aspect ratio */
.carousel-track{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* stable frame */
}

/* Slides fill the frame */
.carousel-slide{
  position: absolute;
  inset: 0;
  display: none;
}

.carousel-slide.is-active{
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image always fits inside frame */
.carousel-slide img{
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;   /* NEVER zoom */
  background: #fff;
}


/* Mobile */
@media (max-width: 768px){
  .carousel-track{
    aspect-ratio: 4 / 3;
  }
}

/* === Google Reviews Button (Testimonials Page) === */
.google-review-cta{
  text-align: center;
  margin: 25px 0 10px;
}

.google-review-btn{
  display: inline-block;
  padding: 14px 26px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #000;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.google-review-btn:hover{
  background: #222;
  transform: translateY(-1px);
}

/* === About Us: Social Media Embeds === */
.social-embed-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 15px;

}

.social-embed{
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.social-embed h3{
  margin-top: 0;
  margin-bottom: 10px;
}

.social-embed iframe{
  border-radius: 12px;
}

.social-btn{
  margin-top: 12px;
}

/* Mobile */
@media (max-width: 900px){
  .social-embed-grid{
    grid-template-columns: 1fr;
  }
}

/* Appended: service duration and price */
.service-meta{
  margin-top: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.service-meta .service-sep{
  opacity: 0.7;
}

/* =========================
   HERO TEXT FIX FOR MOBILE
========================= */
.hero-content {
  max-width: 90%;
  padding: 0 15px;
  margin: 0 auto;
}

.hero-content h1 {
  line-height: 1.2;
  word-break: break-word;
}

.hero-content p {
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .hero {
    height: auto;
    min-height: 42vh;
    padding: 2.5rem 1rem;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 12px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1rem;
  }

  .hero-content .btn {
    display: inline-block;
    margin-top: 0.5rem;
  }
}

@media screen and (max-width: 480px) {
  .hero {
    min-height: 46vh;
    padding: 2rem 0.9rem;
  }

  .hero-content h1 {
    font-size: 1.35rem;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-content .btn {
    padding: 0.7rem 1.2rem;
    font-size: 0.95rem;
  }
}

/* Mobile Sticky Action Bar */

.mobile-action-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 106, 146, 0.14);
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
    overflow: hidden;
  }

  .mobile-action-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    text-decoration: none;
    transition: transform 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  }

  .mobile-action-btn:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 14px;
    bottom: 14px;
    width: 1px;
    background: rgba(212, 106, 146, 0.16);
  }

  .mobile-action-btn svg {
    width: 24px;
    height: 24px;
    fill: #d46a92;
    transition: transform 0.18s ease, fill 0.18s ease;
  }

  .mobile-action-btn:active {
    background: rgba(212, 106, 146, 0.08);
    transform: scale(0.96);
  }

  .mobile-action-btn:hover svg,
  .mobile-action-btn:active svg {
    transform: scale(1.08);
  }

  body {
    padding-bottom: 90px;
  }
}

.services-page .container > div:last-child {
  margin-bottom: 0 !important;
}

.service-detail-section:last-child {
  margin-bottom: 0 !important;
}

.group-page .container > div:last-child {
  margin-bottom: 0 !important;
}

/* Current Offers Button (highlighted) */

/* Offers Banner */
.offers-banner {
  text-align: center;
  margin: 20px 0 10px;
}

/* Strong CTA button */
.offers-cta {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #ff4d6d, #c9184a);
  box-shadow: 0 10px 25px rgba(255, 77, 109, 0.35);
  transition: all 0.25s ease;
}

/* Hover */
.offers-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 77, 109, 0.45);
}