:root {
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Lato', sans-serif;
  --font-script: 'Dancing Script', cursive;
  --accent: #FCD5CE; /* Peach */
  --accent-text: #E5989B;
  --text-main: #4a4a4a;
  --text-light: #888;
  --bg-body: #ffffff;
  --bg-alt: #f9f9f9;
  --border-color: #eee;
  --max-width: 1100px;
  --spacing-section: 4rem;
  --spacing-element: 1.5rem;
}

/* Reset & Base */
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-body);
  line-height: 1.6;
}
h1, h2, h3, h4 {
  margin-top: 0;
  line-height: 1.2;
  font-family: var(--font-heading);
  color: #333;
}
h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--spacing-element);
  position: relative;
}
/* Reusable Separator Component */
.separator {
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--accent);
  margin: 1.5rem auto;
  border: none;
}
.separator.left {
  margin-left: 0;
  /* margin-right remains auto or effectively ignored for short width */
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; }

b {
	font-weight: 700;
}


/* Utilities */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-alt { background-color: var(--bg-alt); }
section { padding: var(--spacing-section) 0; }
.text-center { text-align: center; }
.text-light { color: var(--text-light); }

/* Top Bar */
.top-bar {
  display: block;
  background-color: var(--accent);
  color: #555;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left {
  display: flex;
  gap: 1.5rem;
}
.top-bar-right {
  display: flex;
  gap: 1rem;
}
.top-bar-right a {
  font-size: 1rem;
}
.top-bar-right a:hover {
  color: white; /* or accent-text */
}

@media(max-width: 600px) {
  .top-bar-inner {
      flex-direction: row; /* Keep elements side-by-side if possible, or wrap nicely */
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
  }
  .top-bar-left {
      font-size: 0.75rem;
      gap: 0.5rem;
      justify-content: center;
      width: 100%; /* Take full width on mobile top row */
      text-align: center;
  }
  .top-bar-right {
      display: none; /* Optional: Hide social icons on mobile to save space, OR keep them below */
      /* If you want to keep them, remove display: none and adjust width */
      width: 100%;
      justify-content: center;
      padding-bottom: 0.25rem;
  }
  /* Hide specific text elements on mobile to save space */
  .opening-info, .divider {
      display: none;
  }
  /* Make the phone clickable/tappable appearance */
  .contact-info {
      display: block;
      width: 100%;
  }
}

/* Header & Nav */
header {
  padding: 1.5rem 0;
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Kaushan Script', cursive; /* Brush script like "Blameless" */
  font-size: 2.5rem; /* Larger for script font */
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  color: #333;
  border: none;
  padding: 0;
}
nav ul {
  display: flex;
  gap: 2rem;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  font-weight: 700;
  color: #333;
}
nav a:hover { color: var(--accent-text); }

/* Hamburger Menu Toggle (Hidden on Desktop) */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #333;
  transition: all 0.3s ease-in-out;
}
/* Hamburger Animation */
.menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Page Header (For subpages) */
.page-header {
  background-color: var(--bg-alt);
  padding: 4rem 0;
  text-align: center;
  margin-bottom: 2rem;
}
.page-header h1 { margin-bottom: 0.5rem; }
.page-header p { color: #666; max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* Hero Section */
.hero {
  background-color: var(--bg-alt);
  /* background-image removed for cleaner look with cutout image */
  /* Balanced UI: Use padding for height, but limit max-height so image doesn't dominate */
  padding: 3rem 0; 
  max-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-container-flex {
  width: 100%;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.hero-content {
  flex: 1;
  padding-right: 2rem;
  z-index: 2;
  text-align: left;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem; /* Slightly smaller to match "Blameless" style scaling */
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #333;
  font-weight: 500;
}
.hero p {
  font-family: var(--font-body);
  color: #888;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 450px;
}
.hero-visual {
  flex: 1;
  position: relative;
  height: auto;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero Slideshow Styles */
.hero-slideshow {
  position: relative;
  width: 100%;
  max-width: 450px; /* Limit max width */
  aspect-ratio: 1 / 1.1; /* Slightly taller than square */
  border-radius: 8px; /* Modern Soft Rounding */
  overflow: hidden;
  box-shadow: 20px 20px 0px var(--accent); /* The request "pink offset" shadow returned */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

/* Legacy / Unused */
.hero-brush-img { display: none; }
.hero-brush-bg { display: none; }


@keyframes blob-float {
  0% { border-radius: 46% 54% 39% 61% / 55% 32% 68% 45%; transform: translate(-50%, -50%) rotate(0deg); }
  100% { border-radius: 56% 44% 53% 47% / 46% 51% 49% 54%; transform: translate(-50%, -50%) rotate(5deg); }
}

/* Mobile Adjustments for Composition */
@media (max-width: 900px) {
  .hero-composition {
    height: 350px; /* Smaller on mobile */
    margin: 0 auto;
  }
  .hero-img-main {
    right: 50%;
    transform: translateX(50%); /* Centered on mobile */
  }
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--accent);
  border-radius: 30px;
  border: none;
  padding: 1rem 3rem;
  color: #333;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 10px 20px rgba(252, 213, 206, 0.4);
  text-transform: uppercase;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: white;
  color: #333;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

/* About Redesign (Reference Style) */
.section-about {
  padding: 4rem 0; /* Balanced padding relative to smaller hero */
  background-color: white;
}
.about-redesign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-visual {
  position: relative;
  /* Space for the offset pattern */
  padding-bottom: 2rem; 
  padding-left: 2rem;
}
.about-pattern-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  /* Using home-1 as the "doti" background/pattern element */
  width: auto;
}
.about-main-img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-width: 400px;
  margin: auto;
  display: block;
  /* Clean sharp edges like reference */
  border-radius: 8px;
  border: 1px solid black;
}

.about-content-redesign {
  text-align: left;
}
.about-heading {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  line-height: 1.25;
  color: #333;
  text-align: left; /* Override global center */
  margin-bottom: 1.5rem;
  font-weight: 400;
}
.about-heading span {
  display: block;
  margin-top: 0.5rem;
}


.about-lead {
  font-size: 1.1rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.about-desc {
  color: var(--text-light); /* Muted gray */
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
}
.btn-outline {
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 30px;
  color: #333;
  padding: 0.8rem 2.5rem;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .about-redesign-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-content-redesign { text-align: center; }
  .about-heading { text-align: center; }
  .separator.left { margin: 1.5rem auto; }
  .about-visual {
    position: relative;
    width: 280px; /* Fix width to stabilize relative positioning */
    margin: 0 auto 3rem auto;
    padding: 0;
    display: block;
  }
  .about-pattern-bg {
    left: -20px;
    bottom: -20px;
    width: 170px;
    height: auto;
    transform: none; /* Reset previous transforms */
    z-index: 0;
  }
  .about-main-img {
    position: relative;
    margin: 0;
    width: 100%;
    max-width: none;
    z-index: 1;
  }
}

/* Services Section */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  padding: 1rem 0;
}
.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: white;
  padding: 3rem 2rem;
  border-radius: 16px;
  border: 1px solid #f0f0f0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03); /* Soft elegant shadow */
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}
.service-card:hover::before {
  transform: scaleX(1);
}

@media (max-width: 600px) {
  .services-grid { gap: 1.5rem; }
  .service-card { padding: 2rem 1.5rem; }
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: #fff5f2; /* Ultra light peach */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  font-size: 2rem;
  color: var(--accent-text);
  margin-left: auto;
  margin-right: auto;
}
.service-card:hover .service-icon {
  background-color: var(--accent);
  color: white;
  transform: rotate(10deg) scale(1.1);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #333;
}
.service-card p {
  color: #666;
  font-size: 1rem;
  margin: 0 0 1.5rem 0;
  line-height: 1.6;
}

/* Pricing Table (Subpage) */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 3rem;
  background: white;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  border-radius: 8px;
  overflow: hidden;
}
.price-table tr { border-bottom: 1px solid #eee; }
.price-table td { padding: 1.5rem; vertical-align: middle; }
.price-table td small { display: block; margin-top: 0.25rem; font-size: 0.85rem; color: #888; }
.price-table .price { text-align: right; font-weight: 700; color: var(--accent-text); font-size: 1.1rem; white-space: nowrap; }
.pricing-category h2 { text-align: left; font-size: 1.8rem; margin-top: 3rem; margin-bottom: 1rem; }

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-box {
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}
.contact-info-box h4 {
  margin-bottom: 1rem;
}
.contact-info-box p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.contact-form form {
  display: grid;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #666;
}
.form-control {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-body);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-text);
}

/* Footer */
footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 3rem 0;
  font-size: 0.9rem;
}
footer p { opacity: 0.7; }

/* Responsive adjustments */
@media(max-width: 900px) {
  .hero { 
    max-height: none; /* Allow hero to grow on mobile */
    min-height: auto; 
    padding: 2rem 0;
    background-image: none; /* Remove background image on mobile */
  }
  /* Hide specific text elements on mobile to save space */
  .hero-visual {
     display: none;
  }

  /*
  .hero {
    position: relative;
    background-image: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('/images/slider-1.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  */

  .hero-container-flex { flex-direction: column; text-align: center; }
  .hero-content {
      padding-right: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
  }
  
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { order: -1; }
  
  /* Mobile Menu Styles */
  .menu-toggle { display: block; }
  
  #mainNav {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden off-screen right */
    width: 250px;
    height: 100vh;
    background-color: white;
    padding-top: 6rem; /* Space for specific top area */
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 999; /* Below toggle button (1001) */
  }
  
  #mainNav.active {
    right: 0; /* Slide in */
  }

  nav ul { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .contact-grid { gap: 0; }
  .price-table td { padding: 1rem 0.5rem; font-size: 0.9rem; }
}

/* Service Subpage Image */
.service-image-header {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem auto;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.service-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* Desktop Split Layout for Services */
@media (min-width: 900px) {
  .service-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Text gets slightly more space */
    gap: 4rem;
    align-items: start;
  }

  /* Swap order: Text Left (1), Image Right (2) */
  .service-body {
    order: 1;
  }
  
  .service-sidebar {
    order: 2;
  }

  /* Make image taller/nicer in side column */
  .service-hero-img {
    height: 400px;
    border-radius: 8px;
  }
}

/* Service Sidebar Navigation */
.service-nav-widget {
  margin-top: 2rem;
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #eee;
}
.service-nav-widget h3 {
  font-size: 1.2rem;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.service-list-sidebar li {
  margin-bottom: 0.5rem;
}
.service-list-sidebar a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 6px;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.service-list-sidebar a i {
  color: var(--accent-text);
  width: 20px;
  text-align: center;
}
.service-list-sidebar a:hover {
  transform: translateX(5px);
  background: var(--accent);
  color: white; /* Make text white on hover */
}
.service-list-sidebar a:hover i {
  color: white; /* Make icon white on hover */
}

/* Service Card Link Text */
.service-link-text {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-text);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.service-card:hover .service-link-text {
  color: #333;
  border-bottom-color: var(--accent);
  text-decoration: none;
}

/* Other Services (Footer of Subpages) */
.other-services {
  padding: 4rem 0;
  background-color: var(--bg-alt);
  border-top: 1px solid #eee;
}
.services-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.service-card-small {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  border: 1px solid transparent;
  color: inherit;
  text-decoration: none;
}
.service-card-small:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0,0,0,0.1);
  border-color: var(--accent);
}
.small-icon {
  font-size: 1.5rem;
  color: var(--accent-text);
  margin-bottom: 0.5rem;
}
.service-card-small h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0.5rem 0;
  color: #333;
}
.service-card-small .arrow {
  margin-top: auto;
  color: var(--accent-text);
  font-weight: bold;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}
.service-card-small:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}
/* About Page styles */
.about-grid-large {
 display: grid;
 grid-template-columns: 1fr 1.5fr;
 gap: 4rem;
 align-items: start;
}
.about-image-col {
 position: relative;
}
.about-portrait-large {
 width: 100%;
 border-radius: 8px;
 box-shadow: 10px 10px 0 var(--accent);
}
.quote-box {
 background: white;
 padding: 1.5rem;
 border-left: 4px solid var(--accent);
 box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 margin-top: -30px;
 margin-left: 20px;
 position: relative;
 border-radius: 4px;
}
.quote-box i {
 color: var(--accent-text);
 font-size: 1.5rem;
 margin-bottom: 0.5rem;
 display: block;
}
.quote-box p {
 font-style: italic;
 font-size: 0.95rem;
 color: #555;
 margin: 0;
}
.about-text-col .lead-text {
 font-size: 1.2rem;
 color: #333;
 margin-bottom: 2rem;
 font-weight: 300;
}

.values-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
 margin-top: 2rem;
}
.value-card {
 text-align: center;
 padding: 2rem;
 background: white;
 border-radius: 8px;
 box-shadow: 0 5px 15px rgba(0,0,0,0.03);
 transition: transform 0.3s ease;
}
.value-card:hover {
 transform: translateY(-5px);
}
.value-icon {
 font-size: 2.5rem;
 color: var(--accent-text);
 margin-bottom: 1rem;
}
.value-card h4 {
 font-family: var(--font-heading);
 margin-bottom: 0.5rem;
}

.cta-section {
 padding: 5rem 0;
 background: var(--accent);
 margin-top: 4rem;
}
.cta-section h2 {
 color: #333;
 margin-bottom: 1rem;
}
.cta-section p {
 margin-bottom: 2rem;
 font-size: 1.1rem;
}
.cta-section .btn {
 background: white;
 color: #333;
}
.cta-section .btn:hover {
 background: #333;
 color: white;
}

@media (max-width: 900px) {
 .about-grid-large {
 grid-template-columns: 1fr;
 gap: 3rem;
 }
 .quote-box {
 margin-top: 2rem;
 margin-left: 0;
 }
}

