/*
Theme Name: KPB Solutions Theme
Theme URI: https://kadia.me/
Author: Kadia Prince
Author URI: https://kadia.me
Description: A custom theme by KPB Solutions
Version: 1.0
*/

  :root {
    --primary-dark: #212b0f;
    --accent-dark: #475d21;
    --golden-sand: #d5995b;
    --beige-soft: #d6c3ab;
    --blush-rose: #f2ece7;
  }

  
  
  /* Base Structure 
  body {
    font-family: 'Inter', sans-serif;
    color: var(--green-dark);
    background-color: var(--cream);
    margin: 0;
    padding: 0;
  } */

  body {
    font-family: 'Inter', sans-serif;
    color: var(--primary-dark);      /* fixed */
    background-color: var(--blush-rose); /* fixed */
    margin: 0;
    padding: 0;
  }
  
  header {
   /* background-color: var(--cream);  #faf6f0 #fbf7f1;  #faf8f1 */
    background-color:#faf8f0; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position:fixed;
    top: 0;
    z-index: 1000;
  }
  
  .logo img {
    height: 40px;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
  }
  
  .nav-links li a {
    text-decoration: none;
    color: var(--green-dark);
    font-weight: bold;
    transition: transform 0.2s ease, color 0.2s ease;
  }
  
  .nav-links li a:hover {
    transform: scale(1.1);
    color: var(--tan-rich);
  }
  
  .contact-button {
    background: var(--tan-rich);
    color: white;
    padding: 0.6rem 1.2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s ease;

  }
  
  .contact-button:hover {
    background: var(--green-mid);
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero {
    background: linear-gradient(to right, var(--green-dark), var(--green-mid));
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .hero h1 {
    font-size: 3rem;
    animation: fadeInUp 1s ease;
  }
  
  .hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
    animation: fadeInUp 1.5s ease;
  }
  
  .hero .cta {
    margin-top: 2rem;
    padding: 0.8rem 1.6rem;
    border-radius: 25px;
    background: var(--tan-rich);
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    transition: background 0.3s ease;
    animation: fadeInUp 2s ease;
  }
  
  .hero .cta:hover {
    background: var(--tan-light);
  }
  
  /* Animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Section layout & transitions for remaining sections will follow similar styling: */
  /* about, testimonials, services, contact form, footer */
  
  /* Image hover animation */
  img:hover {
    transform: scale(1.05);
    transition: 0.3s ease;
  }
  
  /* Button hover animation */
  button:hover, .btn:hover {
    background: linear-gradient(to right, var(--tan-rich), var(--green-mid));
    color: white;
    transition: 0.3s ease;
  }
  
  .newsletter input {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
  }
  
  .newsletter button {
    margin-left: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--tan-rich);
    color: white;
    border: none;
    border-radius: 5px;
  }
  
  .copy {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 2rem;
    font-size: 0.9rem;
  }
  
  

  /* Hamburger styles, mobile nav toggle etc... */
  

/* Solid background on scroll */
.main-header.scrolled {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* Logo */
.logo img {
  height: 40px;
}

/* Center Menu */
.nav-menu .nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-menu .nav-links li a {
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  color: #212b0f;
  transition: all 0.3s ease;
}

.nav-menu .nav-links li a:hover {
  color: #d5995b;
  transform: scale(1.1);
}

/* Right Button */
.contact-button .btn-contact {
  padding: 0.6rem 1.2rem;
  background: linear-gradient(to right, #d5995b, #f2ece7);
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  color: #212b0f;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-button .btn-contact:hover {
  background: linear-gradient(to right, #f2ece7, #d5995b);
  transform: translateY(-2px);
}


/* Hamburger Icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: #212b0f;
  transition: all 0.3s ease;
}

/* Nav */
.nav-menu {
  display: flex;
  gap: 2rem;
}

/* Mobile Nav */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    text-align: center;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }

  .nav-menu.open {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .contact-button {
    display: none; /* hide contact on mobile, or move inside nav */
  }
}



  /* Header Styling */
  .main-header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(6px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    box-shadow: 0 1px 6px rgba(0,0,0,0.05);
  }
  /*
  .nav-container {
    display: flex;
    justify-content: space-between;
    gap:20px;
    align-items: center;
    max-width: 90%;
    margin: auto;
  } */
  
  /* Match nav-menu + main-nav */
  .nav-menu {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
  .main-nav {
    display: flex;
    gap: 3rem;
   /* justify-content: center; */
    list-style: none;
    padding: 0;
  }
  
  .main-nav li a {
    text-decoration: none;
    color: #212b0f;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .main-nav li a:hover {
    color: #d5995b;
    transform: scale(1.05);
  }
  
  .contact-button .btn-contact {
    background: linear-gradient(45deg, #d5995b, #f2ece7);
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    color: #212b0f;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-button .btn-contact:hover {
    background: #212b0f;
    color: white;
  }
  
  /* Container for header layout */
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem; /* Adjust as needed */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
 /* margin-top: 20px; */
}

/* Left: Logo */
.logo img {
  max-height: 48px;
  display: block;
}

/* Center: Navigation Menu */
.nav-menu {
  flex-grow: 1;
  text-align: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Right: Contact Button */
.contact-button {
  margin-left: auto;
}

.btn-contact {
  background: linear-gradient(to right, #d5995b, #f2ece7);
  /*padding: 0.6rem 1.2rem; */
  border: none;
  border-radius: 6px;
  color: #212b0f;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  transform: scale(1.05);
  background: linear-gradient(to right, #f2ece7, #d5995b);
}


/* hero women */
.hero-women {
  background-image: url('./assets/images/hero-women-bg.webp'); 
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #212b0f;
  position: relative;
  z-index: 1;
}

/* Hero Women Section 
.hero-women {
  background: linear-gradient(to right, #f2ece7, #d6c3ab); /* fallback gradient 
  background-image: url('/wp-content/themes/KPB-theme/assets/img/hero-women-bg.png'); 
  background-size: cover;
  background-position: center;
  padding: 5rem 2rem;
  color: #212b0f;
  position: relative;
  z-index: 1;
}*/

.hero-women::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  /*background: rgba(255, 255, 255, 0.4); /* optional light overlay */
  z-index: 1;
}

.hero-women-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
}
/*
.hero-women-content {
  max-width: 600px;

}*/

.hero-women-content {
  max-width: 600px;
  font-family: 'Playfair Display', serif;
  z-index: 2;
  position: relative;
}

.hero-women-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #212b0f;
}
/*
.hero-women-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #212b0f;
} */

.hero-women-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: #212b0f;
}
/*
.btn-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: linear-gradient(to right, #d5995b, #d6c3ab);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
} */

.hero-women-content .btn-cta {
  background: #d5995b; 
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 13px;
  border: 1px solid white;
  text-decoration: none;

  transition: background 0.3s ease;
  font-family: 'Inter', sans-serif;
}
/*
.hero-women-content .cta-button:hover {
  background: #212b0f;
  color: #fff;
} */




.hero-women-content .btn-cta:hover {
  background: #212b0f;
  color: #fff;
}

.btn-cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #d6c3ab, #d5995b);
}
@media (max-width: 768px) {
  .hero-women {
    background-position: center top;
    text-align: center;
    justify-content: center;
  }

  .hero-women-content {
    margin: 0 auto;
  }

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

  .hero-women-content p {
    font-size: 1rem;
  }
}
/* eleveta / about section  */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400&display=swap');


.elevate-style-section {
  
  background-image: url('./assets/images/elevate-style.webp'); 
  background-size: cover;
  background-position: fixed;
  background-repeat: no-repeat;
  background-attachment: fixed;
  height: 100vh;
  display: flex; 
  width: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin:0 auto;
  
 /* padding: 0 1rem; */
}
/*
.elevate-style-section {
  padding: 100px 20px;
  background-color: #f2ece7;
}*/

.elevate-style-content {
  color: #212b0f;
  font-family: 'Playfair Display', serif;

  
}

.elevate-style-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.elevate-style-content p {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  
}

.elevate-cta-btn {
  background: #E3A56F;
  color: white;
  padding: 0.8rem 1.5rem;
  height: 100vh;
  font-weight: bold;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 10px;
  border: 2px solid white;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.elevate-cta-btn:hover {
  background: #d88f53;
}


/* === Contact Section === */
.contact-section {
  padding: 80px 20px;
  background-color: #d6c3ab;
  color: #212b0f;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #212b0f;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form .contact-btn {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border: 2px solid #475d21;
  border-radius: 8px;
  background-color: #f2ece7;
  color: #212b0f;
  transition: border-color 0.3s, transform 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #d5995b;
  outline: none;
  transform: scale(1.01);
}

.contact-btn {
  background: linear-gradient(to right, #d5995b, #475d21);
  color: #fff;
  padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.2s ease;
  max-width: max-content;
}

.contact-btn:hover {
  background: linear-gradient(to left, #d5995b, #475d21);
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 15px;
  }

  .contact-form {
    padding: 0 1rem;
  }

  .contact-section h2 {
    font-size: 2rem;
  }
}


/* === Testimonials Section === */
.testimonial-carousel {
  overflow: hidden;
  position: relative;
 /* background-color: #f2ece7; #d3af37a1 */
 
    background-color: #d3af377a;
  
  padding: 2rem 0;
  padding-bottom: 5rem;
}

.carousel-track {
  display: flex;
  gap: 2rem;
  animation: scrollLeft 30s linear infinite;
}

.testimonial {
  flex: 0 0 auto;
  background-color: #fff;
  border-left: 6px solid #d5995b;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(33, 43, 15, 0.1);
  padding: 2rem;
  min-width: 300px;
  max-width: 350px;
  transition: transform 0.3s ease;
}

.testimonials .section-title {
  font-size: 2.5rem;
  color: #212b0f;
  margin-bottom: 3rem;
  position: relative;
  text-align: center;
}

.testimonial:hover {
  transform: scale(1.02);
  border-left-color: #475d21;
}

.testimonial p {
  font-style: italic;
  color: #475d21;
  line-height: 1.6;
}

.testimonial h4 {
  font-weight: 600;
  color: #212b0f;
  font-size: 1rem;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive (optional tweaks) */
@media (max-width: 768px) {
  .testimonial {
    min-width: 260px;
  }
}

.testimonial-carousel:hover .carousel-track {
  animation-play-state: paused;
}



/* === WHY CHOOSE US Section === */
.cta-overlay-section {
  position: relative;
  /*background-image: url('img/why-us.jpg'); */
  background-image: url('./assets/images/why-us.webp'); 

  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.why-overlay-content {
 /* background-color: rgba(33, 43, 15, 0.315); */
  padding: 60px 20px;
  border-radius: 10px;
  max-width: 900px;
  margin: 0 auto;
}

.why-overlay-content h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.why-overlay-content p {
  font-size: 1.2rem;
  color: #f2ece7;
  max-width: 750px;
  /*margin: 0 auto 30px auto; */
  text-align: left;
  line-height: 1.6;
}

.why-us-btn {
  display: inline-block;
  background: linear-gradient(to right, #d5995b, #f2ece7);
  color: #212b0f;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us-btn:hover {
  background: #fff;
  color: #475d21;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}


@media (max-width: 768px) {
  .why-overlay-content {
    padding: 40px 15px;
  }

  .why-overlay-content h2 {
    font-size: 2rem;
  }

  .why-overlay-content p {
    font-size: 1rem;
  }

  .why-us-btn {
    font-size: 0.95rem;
    padding: 10px 24px;
  }
}

/* demo footer */

footer {
  background: var(--primary-dark);   /* dark green background */
  color: var(--blush-rose);          /* soft beige text */
  padding: 2rem;
  font-family: 'Inter', sans-serif;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;                   /* allow stacking on smaller screens */
  border-bottom: 1px solid #444;
  padding-bottom: 1rem;
}
 /*Services Carousel Section  */
.services-carousel-section h2 {
  font-size: xx-large;
}

.services-carousel-section {
  background: var(--blush-rose);
 /* padding: 80px 20px;*/
 padding: 15px 20px;
  text-align: center;
  position: relative;  
  z-index: 2;          
  padding-bottom: 5em;
}

.service-card .cta-btn
.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-container .cta-btn{
  text-align: center;
}
.services-carousel {
  display: flex;
  flex-wrap: wrap; /* allows stacking on smaller screens */
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 350px;
  flex: 1 1 300px; /* responsive sizing */
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-img-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary-dark);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.service-card p {
  font-size: 1rem;
  color: var(--accent-dark);
  line-height: 1.6;
  margin-bottom: 1rem;
  text-align: center;
}

.service-card .cta-btn {
 display: block;
  background: linear-gradient(to right, var(--golden-sand), var(--accent-dark));
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  text-align: center;
}

.service-card .cta-btn:hover {
  background: var(--primary-dark);
}



/* Responsive */
@media (max-width: 768px) {
  .services-carousel {
    flex-direction: column;
    align-items: center;
  }
}



/* Footer Links (Privacy / Terms) */
.footer-links a {
  color: var(--golden-sand);
  margin: 0 8px;
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Follow Us + Social Icons */
.footer-social h4 {
  margin: 0 0 5px;
  color: var(--golden-sand);
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: var(--blush-rose);
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--golden-sand);
}

/* Bottom Row */
.footer-bottom {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--blush-rose);
}

.footer-bottom a {
  color: var(--golden-sand);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/*  Responsive Tweaks */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links {
    margin-bottom: 1rem;
  }

  .social-icons {
    justify-content: center;
  }
}


/* Legal Page Styling */
.legal-page {
  background-color: #f2ece7;
  color: #212b0f;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}

.legal-page h1 {
  color: #475d21;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.legal-page h2 {
  color: #d5995b;
  font-size: 1.75rem;
  margin-top: 30px;
}

.legal-page a {
  color: #d5995b;
  text-decoration: underline;
}

/* Shared Policy Page Styles */
.policy-header {
  background-color: #d6c3ab;
  color: #212b0f;
  padding: 80px 20px;
  text-align: center;
}

.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: #212b0f;
  background-color: #f2ece7;
  border-radius: 8px;
}

.policy-content h2 {
  color: #475d21;
  margin-top: 30px;
  font-size: 1.5rem;
}

.policy-content p {
  line-height: 1.8;
  margin-bottom: 20px;
}

