/*

Theme Name: Pregnancy & Fitness

Description: A modern WordPress theme for pregnancy and fitness wellness websites. Features comprehensive styling without Tailwind CSS dependencies, designed for reproductive health, fitness guidance, and nutrition advice.
Version: 1.0.0
Author: Athuman Komora
Text Domain: pregnancy-fitness
Requires at least: 5.0

Tested up to: 6.4

Requires PHP: 7.4

License: GPL v2 or later

License URI: https://www.gnu.org/licenses/gpl-2.0.html



This theme captures the complete design system from the React version with traditional CSS.

*/



/* Import Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');



/* CSS Custom Properties (Design System) */

:root {

  /* Core Colors */

  --background: 0 0% 100%;

  --foreground: 222.2 84% 4.9%;

  --card: 0 0% 100%;

  --card-foreground: 222.2 84% 4.9%;

  --popover: 0 0% 100%;

  --popover-foreground: 222.2 84% 4.9%;

  --primary: 15 82% 75%;

  --primary-foreground: 210 40% 98%;

  --secondary: 279 40% 85%;

  --secondary-foreground: 279 40% 25%;

  --muted: 210 40% 96.1%;

  --muted-foreground: 215.4 16.3% 46.9%;

  --accent: 158 64% 80%;

  --accent-foreground: 158 64% 20%;

  --destructive: 0 84.2% 60.2%;

  --destructive-foreground: 210 40% 98%;

  --border: 214.3 31.8% 91.4%;

  --input: 214.3 31.8% 91.4%;

  --ring: 15 82% 75%;

  --radius: 1rem;

  

  /* Brand Color Palette */

  --peach-50: #FEF7F4;

  --peach-100: #FEEEE8;

  --peach-200: #FFE5D9;

  --peach-300: #FFD4C4;

  --peach-400: #FFB8A3;

  --peach-500: #FF9B82;

  --peach-600: #E8876D;

  --peach-700: #D17358;

  --peach-800: #BA5F43;

  --peach-900: #A34B2E;

  

  --lavender-50: #F8F5FA;

  --lavender-100: #F1EBF5; 

  --lavender-200: #E8DAEF;

  --lavender-300: #D8C2E3;

  --lavender-400: #C39BD1;

  --lavender-500: #AE74BF;

  --lavender-600: #9960A8;

  --lavender-700: #844C91;

  --lavender-800: #6F387A;

  --lavender-900: #5A2463;

  

  --mint-50: #F0FDF4;

  --mint-100: #E1FCE8;

  --mint-200: #D5F4E6;

  --mint-300: #A7F3D0;

  --mint-400: #6EE7B7;

  --mint-500: #34D399;

  --mint-600: #10B981;

  --mint-700: #059669;

  --mint-800: #047857;

  --mint-900: #065F46;



  /* Gray Scale */

  --gray-50: #F9FAFB;

  --gray-100: #F3F4F6;

  --gray-200: #E5E7EB;

  --gray-300: #D1D5DB;

  --gray-400: #9CA3AF;

  --gray-500: #6B7280;

  --gray-600: #4B5563;

  --gray-700: #374151;

  --gray-800: #1F2937;

  --gray-900: #111827;



  /* Gradients */

  --gradient-hero: linear-gradient(135deg, #FFE5D9 0%, #E8DAEF 50%, #D5F4E6 100%);

  --gradient-primary: linear-gradient(135deg, #FF9B82 0%, #AE74BF 100%);

  --gradient-peach-lavender: linear-gradient(135deg, #FFB8A3 0%, #C39BD1 100%);

  --gradient-peach-mint: linear-gradient(135deg, #FFB8A3 0%, #6EE7B7 100%);

  --gradient-lavender-mint: linear-gradient(135deg, #C39BD1 0%, #D5F4E6 100%);

  --gradient-text: linear-gradient(135deg, #FF9B82 0%, #AE74BF 50%, #34D399 100%);

  

  /* Shadows */

  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);

  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);

  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);

  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);



  /* Typography */

  --font-inter: 'Inter', system-ui, -apple-system, sans-serif;

  --font-poppins: 'Poppins', system-ui, -apple-system, sans-serif;

  

  /* Transitions */

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

}



/* Dark mode variables */

.dark {

  --background: 222.2 84% 4.9%;

  --foreground: 210 40% 98%;

  --card: 222.2 84% 4.9%;

  --card-foreground: 210 40% 98%;

  --popover: 222.2 84% 4.9%;

  --popover-foreground: 210 40% 98%;

  --primary: 15 82% 75%;

  --primary-foreground: 222.2 47.4% 11.2%;

  --secondary: 279 40% 25%;

  --secondary-foreground: 279 40% 85%;

  --muted: 217.2 32.6% 17.5%;

  --muted-foreground: 215 20.2% 65.1%;

  --accent: 158 64% 20%;

  --accent-foreground: 158 64% 80%;

  --destructive: 0 62.8% 30.6%;

  --destructive-foreground: 210 40% 98%;

  --border: 217.2 32.6% 17.5%;

  --input: 217.2 32.6% 17.5%;

  --ring: 15 82% 75%;

}



/* Base Styles & Reset */

*, *::before, *::after {

  box-sizing: border-box;

  border-width: 0;

  border-style: solid;

  border-color: hsl(var(--border));

}



* {

  margin: 0;

  padding: 0;

}



html {

  line-height: 1.5;

  -webkit-text-size-adjust: 100%;

  tab-size: 4;

}



body {

  font-family: var(--font-inter);

  background-color: hsl(var(--background));

  color: hsl(var(--foreground));

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

  -moz-osx-font-smoothing: grayscale;

}



/* Typography */

h1, h2, h3, h4, h5, h6 {

  font-family: var(--font-poppins);

  font-weight: 600;

  line-height: 1.2;

  color: hsl(var(--foreground));

  margin: 0;

}



h1 { font-size: 2.25rem; } /* 36px */

h2 { font-size: 1.875rem; } /* 30px */

h3 { font-size: 1.5rem; } /* 24px */

h4 { font-size: 1.25rem; } /* 20px */

h5 { font-size: 1.125rem; } /* 18px */

h6 { font-size: 1rem; } /* 16px */



/* Responsive Typography */

@media (min-width: 640px) {

  h1 { font-size: 3.75rem; } /* 60px */

  h2 { font-size: 2.5rem; } /* 40px */

  h3 { font-size: 2rem; } /* 32px */

  h4 { font-size: 1.5rem; } /* 24px */

}



p {

  margin-bottom: 1rem;

  line-height: 1.75;

}



a {

  color: hsl(var(--primary));

  text-decoration: none;

  transition: var(--transition-smooth);

}



a:hover {

  opacity: 0.8;

}



/* Layout Container */

.container {

  width: 100%;

  margin: 0 auto;

  padding: 0 1.5rem;

  max-width: 80rem; /* 1280px */

}



.site-wrapper {

  min-height: 100vh;

  display: flex;

  flex-direction: column;

}



.main-content {

  flex: 1;

}



/* Header Styles */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  max-height:100px;
  border-bottom: 1px solid hsl(var(--border));
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
}
.header-content {
	max-width: 80rem;
	margin: 0 auto;
	max-height:100px;
	padding: 20px 10px;
	
	display: flex;
    justify-content: space-between;
    align-items: center;
	min-height:70px;
    margin: 0 auto;
}
.site-menu-bar {
	display: flex;
    align-items: center;
    gap: 1rem;
}



.site-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.header-left {
	display:flex;
	 gap: 1.5rem;
}



.site-logo svg {

  width: 40px;

  height: 40px;

}
.site-logo img, .custom-logo-link img {
    display: block;
    margin: 0 auto;
    max-height: 40px;
    width: auto;
    height: auto;
}
.main-navigation ul {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.main-navigation li {
    list-style: none;
    position: relative;
	padding: 10px 5px 20px;
    margin: 0;
}
.ul.nav-menu {
    list-style: none;
    display: flex;
}


.main-navigation {

  display: none;

  gap: 3rem;

}



.main-navigation a {

  font-size: 0.875rem;

  font-weight: 600;

  line-height: 1.5;

  color: var(--gray-700);

  transition: var(--transition-smooth);

  text-decoration: none;

}



.main-navigation a:hover,

.main-navigation a.active {

  color: hsl(var(--primary));

}



.login-link {

  font-size: 0.875rem;

  font-weight: 500;

  color: var(--gray-700);

  text-decoration: none;

  transition: var(--transition-smooth);

}



.login-link:hover {

  color: hsl(var(--primary));

}



.header-actions {

  display: none;

  align-items: center;

  gap: 1rem;

}



.menu-toggle {

  display: flex;

  align-items: center;

  justify-content: center;

  background: none;

  border: none;

  cursor: pointer;

  padding: 0.5rem;

}







.mobile-nav {

  display: flex;

  flex-direction: column;

  gap: 0.5rem;

  margin-bottom: 1rem;

}



.mobile-nav-link {

  display: block;

  padding: 0.75rem;

  font-weight: 500;

  color: var(--gray-700);

  border-radius: 0.375rem;

  transition: var(--transition-smooth);

  text-decoration: none;

}



.mobile-nav-link:hover,

.mobile-nav-link.active {

  color: hsl(var(--primary));

  background-color: hsla(var(--primary), 0.1);

}





.hamburger-icon {
    position: relative;
    -webkit-background-size: 28px 28px;
    background-size: 28px 28px;
    width: 40px;
    height: 36px;
    display: inline-block;
    cursor: pointer;
    background-repeat: no-repeat;
    -webkit-background-position: center center;
    background-position: center center;
    background-image: url(assets/images/pregnancyandfitness-Hamburger-Menu-Desktop.svg);
}

button {
	border: none;
    cursor: pointer;
	background:no-repeat;
}

/* Show menu when active */
.mobile-menu.active {
	display: flex;
}
/* Mobile menu (hidden by default) */
.mobile-menu {
	display: none;
	flex-direction: column;
	background-color: #fff;
	position: fixed;
	top: 0px;
	left: 0;
	width: 75%;
	height:100%;
	z-index: 999;
	overflow-y: auto;
	height:100vh;
	padding: 27px 0px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease-in-out;
}


.mobile-menu ul {
	list-style: none;
	padding-left: 1rem;
}

.mobile-menu li a{
	display: block;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    line-height: 24px;
    padding: 5px 0 5px 15px;
    margin: 0;
    cursor: pointer;
    position: relative;
    color: #000;
}

.mobile-menu .submenu-toggle {
	background: none;
	border: none;
	cursor: pointer;
	font-size: 1rem;
	margin-left: 0.5rem;
}

.mobile-menu li.submenu-open > .sub-menu {
	display: block;
}

.mobile-menu .sub-menu {
	display: none;
}
/* Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  display: block;
}
.overlay.active {
  
}

/* Submenu toggle chevron */
.submenu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
  position: absolute;
  right: 30px;
}


.submenu-toggle .chevron {
  display: inline-block;
  width: 12px;
  height: 7px;
  background: url(assets/images/pregnancyandfitness-Down-Arrow-Enabled.svg) no-repeat center;
  background-size: cover;
  transition: transform 0.2s ease;
}

.submenu-open > .sub-menu {
  display: block;
}

/* DRAWER SETTINGS*/
.menu-item-wrapper {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    position: relative;
}
.submenu-toggle.active .chevron {
  transform: rotate(180deg);
}
.mobile-menu-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.menu-logo {
  width: 150px;
  height: auto;
}

.menu-search {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.mobile-nav-menu li {
  border-bottom: 1px solid #f0f0f0;
}

.menu-item-wrapper a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

@media (min-width: 1024px) {
  .main-navigation {display: flex;}
  .header-actions { display: flex;}
  .menu-toggle { display: none;}
}
@media (min-width: 728px) {
    .mobile-menu {
        width: 350px;
    }
}
/* Mobile Responsive */
@media (max-width: 1300px) {
    
	.mobile-menu {
	width:350px;
	
	}
}
/* Breadcrumb Navigation Styles */
.breadcrumb {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--gray-600);
    text-decoration: none;
    transition: color 0.2s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
}

.breadcrumb-link:hover {
    color: hsl(var(--primary));
    background: var(--gray-100);
}

.breadcrumb-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: var(--gray-400);
    font-weight: 500;
    margin: 0 0.25rem;
}

.breadcrumb-current {
    color: var(--gray-900);
    font-weight: 500;
}

.breadcrumb-text {
    padding: 0.25rem 0.5rem;
    background: var(--gray-100);
    border-radius: 0.375rem;
    color: var(--gray-900);
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75rem 0;
    }
    
    .breadcrumb-list {
        gap: 0.25rem;
    }
    
    .breadcrumb-item {
        font-size: 0.8125rem;
    }
    
    .breadcrumb-link {
        padding: 0.1875rem 0.375rem;
        gap: 0.25rem;
    }
    
    .breadcrumb-icon {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .breadcrumb-separator {
        margin: 0 0.125rem;
    }
    
    .breadcrumb-text {
        padding: 0.1875rem 0.375rem;
    }
}

/* Dark mode support for breadcrumb */
@media (prefers-color-scheme: dark) {
    .breadcrumb {
        background: var(--gray-900);
        border-bottom-color: var(--gray-800);
    }
    
    .breadcrumb-item {
        color: var(--gray-400);
    }
    
    .breadcrumb-link {
        color: var(--gray-400);
    }
    
    .breadcrumb-link:hover {
        color: hsl(var(--primary));
        background: var(--gray-800);
    }
    
    .breadcrumb-separator {
        color: var(--gray-500);
    }
    
    .breadcrumb-current {
        color: var(--gray-100);
    }
    
    .breadcrumb-text {
        background: var(--gray-800);
        color: var(--gray-100);
    }
}

/* Hero Section */

.hero-section {

  position: relative;

  overflow: hidden;

  background: var(--gradient-hero);

  padding: 6rem 1.5rem 8rem;

  text-align: center;

}



.hero-content {

  max-width: 42rem;

  margin: 0 auto;

}



.hero-title {

  font-size: 2.25rem;

  font-weight: 700;

  line-height: 1.1;

  color: var(--gray-900);

  margin-bottom: 1.5rem;

}



.hero-description {

  font-size: 1.125rem;

  line-height: 1.75;

  color: var(--gray-600);

  margin-bottom: 2.5rem;

}



.hero-actions {

  display: flex;

  flex-direction: column;

  gap: 1rem;

  align-items: center;

  justify-content: center;

}



.hero-stats {

  display: grid;

  grid-template-columns: repeat(1, minmax(0, 1fr));

  gap: 2rem;

  margin-top: 5rem;

}



.stat-item {

  display: flex;

  align-items: center;

  gap: 1rem;

  text-align: left;

}



.stat-icon {

  width: 2rem;

  height: 2rem;

  color: hsl(var(--primary));

}



.stat-value {

  font-size: 1.5rem;

  font-weight: 700;

  color: var(--gray-900);

}



.stat-label {

  font-size: 0.875rem;

  color: var(--gray-600);

}



@media (min-width: 640px) {

  .hero-title {

    font-size: 3.75rem;

  }

  

  .hero-actions {

    flex-direction: row;

  }

  

  .hero-stats {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



@media (min-width: 1024px) {

  .hero-section {

    padding: 6rem 2rem 8rem;

  }

}



/* Button Styles */

.btn {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  white-space: nowrap;

  border-radius: 0.375rem;

  font-size: 0.875rem;

  font-weight: 500;

  transition: var(--transition-smooth);

  cursor: pointer;

  border: none;

  text-decoration: none;

  padding: 0.5rem 1rem;

  height: 2.25rem;

}



.btn:focus-visible {

  outline: none;

  box-shadow: 0 0 0 2px hsl(var(--ring));

}



.btn:disabled {

  pointer-events: none;

  opacity: 0.5;

}



.btn-sm {

  height: 2rem;

  padding: 0 0.75rem;

  font-size: 0.75rem;

}



.btn-lg {

  height: 2.75rem;

  padding: 0 2rem;

  font-size: 1rem;

}



.btn-primary {

  background: var(--gradient-primary);

  color: white;

  font-weight: 600;

}



.btn-primary:hover {

  opacity: 0.9;

}



.btn-secondary {

  background-color: hsl(var(--secondary));

  color: hsl(var(--secondary-foreground));

  box-shadow: var(--shadow-sm);

}



.btn-secondary:hover {

  background-color: hsla(var(--secondary), 0.8);

}



.btn-outline {

  border: 1px solid hsl(var(--input));

  background-color: hsl(var(--background));

  box-shadow: var(--shadow-sm);

}



.btn-outline:hover {

  background-color: hsl(var(--accent));

  color: hsl(var(--accent-foreground));

}



.btn-ghost {

  background: transparent;

  color: hsl(var(--foreground));

}



.btn-ghost:hover {

  background-color: hsl(var(--accent));

  color: hsl(var(--accent-foreground));

}



.btn-link {

  background: transparent;

  color: hsl(var(--primary));

  text-decoration: underline;

  padding: 0;

  height: auto;

}



.btn-link:hover {

  opacity: 0.8;

}



/* Card Styles */

.card {

  border-radius: calc(var(--radius) - 2px);

  border: 1px solid hsl(var(--border));

  background-color: hsl(var(--card));

  color: hsl(var(--card-foreground));

  box-shadow: var(--shadow);

  overflow: hidden;

}



.card-header {

  display: flex;

  flex-direction: column;

  gap: 0.375rem;

  padding: 1.5rem;

}



.card-title {

  font-weight: 600;

  line-height: 1;

  letter-spacing: -0.025em;

}



.card-content {

  padding: 1.5rem;

  padding-top: 0;

}



.card-hover {

  transition: var(--transition-smooth);

  cursor: pointer;

}



.card-hover:hover {

  transform: scale(1.05);

  box-shadow: var(--shadow-lg);

}



/* Input Styles */

.input {

  display: flex;

  height: 2.25rem;

  width: 100%;

  border-radius: 0.375rem;

  border: 1px solid hsl(var(--input));

  background-color: hsl(var(--background));

  padding: 0.5rem 0.75rem;

  font-size: 0.875rem;

  box-shadow: var(--shadow-sm);

  transition: var(--transition-smooth);

}



.input::placeholder {

  color: hsl(var(--muted-foreground));

}



.input:focus-visible {

  outline: none;

  box-shadow: 0 0 0 2px hsl(var(--ring));

}



.input:disabled {

  cursor: not-allowed;

  opacity: 0.5;

}



/* Special Design Classes */

.text-gradient {

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



/* Section Styles */

.section {



}



.section-header {

  text-align: center;

  margin-bottom: 3rem;

}



.section-title {

  font-size: 2.25rem;

  font-weight: 700;

  color: var(--gray-900);

  margin-bottom: 1rem;

}



.section-description {

  font-size: 1.125rem;

  color: var(--gray-600);

  max-width: 42rem;

  margin: 0 auto;

}



/* Services Grid */

.services-grid {

  display: grid;

  grid-template-columns: repeat(1, minmax(0, 1fr));

  gap: 2rem;

  margin-top: 4rem;

}



.service-card {

  padding: 1.5rem;

  border-radius: 0.75rem;

  transition: var(--transition-smooth);

}



.service-card:hover {

  transform: translateY(-4px);

  box-shadow: var(--shadow-xl);

}



.service-icon-wrapper {

  display: inline-flex;

  padding: 0.75rem;

  border-radius: 0.75rem;

  margin-bottom: 1rem;

}



.service-icon {

  width: 2rem;

  height: 2rem;

}





.service-title {

  font-size: 1.25rem;

  font-weight: 600;

  color: var(--gray-900);

  margin-bottom: 0.75rem;

}



.service-description {

  color: var(--gray-600);

  margin-bottom: 1rem;

  line-height: 1.6;

}



@media (min-width: 768px) {

  .services-grid {

    grid-template-columns: repeat(2, minmax(0, 1fr));

  }

}



@media (min-width: 1024px) {

  .services-grid {

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

}



/* Testimonials */

.testimonial-section {

  background-color: var(--gray-50);

}



.testimonials-grid {

  display: grid;

  grid-template-columns: repeat(1, minmax(0, 1fr));

  gap: 2rem;

  margin-top: 4rem;

}



.testimonial-card {

  padding: 1.5rem;

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(4px);

  border-radius: 0.75rem;

  box-shadow: var(--shadow-lg);

  transition: var(--transition-smooth);

}



.testimonial-card:hover {

  box-shadow: var(--shadow-xl);

}



.testimonial-quote {

  color: var(--gray-700);

  margin-bottom: 1.5rem;

  font-style: italic;

  line-height: 1.6;

}



.testimonial-rating {

  display: flex;

  gap: 0.25rem;

  margin-bottom: 1rem;

}



.star {

  color: #F59E0B;

}



.testimonial-author {

  display: flex;

  align-items: center;

  gap: 0.75rem;

}



.author-avatar {

  width: 3rem;

  height: 3rem;

  border-radius: 50%;

  background: var(--gradient-peach-lavender);

  display: flex;

  align-items: center;

  justify-content: center;

  font-weight: 600;

  color: var(--gray-700);

}



.author-name {

  font-weight: 600;

  color: var(--gray-900);

}



.author-role {

  font-size: 0.875rem;

  color: var(--gray-600);

}



@media (min-width: 768px) {

  .testimonials-grid {

    grid-template-columns: repeat(3, minmax(0, 1fr));

  }

}



/* Newsletter Section */

.newsletter-section {

  padding: 5rem 1.5rem;

  background-color: white;

}



.newsletter-card {

  padding: 3rem;

  text-align: center;

  background: linear-gradient(to right, var(--peach-100), var(--lavender-100), var(--mint-100));

  border-radius: 0.75rem;

  box-shadow: var(--shadow-2xl);

  max-width: 80rem;

  margin: 0 auto;

}



.newsletter-icon {

  display: inline-flex;

  padding: 1rem;

  background: white;

  border-radius: 50%;

  box-shadow: var(--shadow-lg);

  margin-bottom: 1.5rem;

}



.newsletter-title {

  font-size: 1.875rem;

  font-weight: 700;

  color: var(--gray-900);

  margin-bottom: 1rem;

}



.newsletter-description {

  font-size: 1.125rem;

  color: var(--gray-600);

  margin-bottom: 2rem;

  max-width: 42rem;

  margin-left: auto;

  margin-right: auto;

}



.newsletter-form {

  display: flex;

  flex-direction: column;

  gap: 1rem;

  max-width: 28rem;

  margin: 0 auto 1.5rem;

}



.newsletter-form .input {

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(4px);

}



.newsletter-privacy {

  font-size: 0.875rem;

  color: var(--gray-500);

  margin-bottom: 2rem;

}



.newsletter-benefits {

  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 1.5rem;

  font-size: 0.875rem;

  color: var(--gray-600);

}



.benefit-item {

  display: flex;

  align-items: center;

  gap: 0.5rem;

}



.benefit-dot {

  width: 0.5rem;

  height: 0.5rem;

  border-radius: 50%;

}



@media (min-width: 640px) {

  .newsletter-title {

    font-size: 2.25rem;

  }

  

  .newsletter-form {

    flex-direction: row;

  }

  

  .newsletter-form .input {

    flex: 1;

  }

}



/* Footer */

.site-footer {

  background: linear-gradient(to bottom right, var(--peach-50), var(--lavender-50));

  margin-top: 5rem;

}



.footer-content {

  max-width: 80rem;

  margin: 0 auto;

  padding: 4rem 1.5rem;

}



.footer-grid {

  display: grid;

  grid-template-columns: repeat(1, minmax(0, 1fr));

  gap: 2rem;

}



.footer-brand {

  grid-column: span 1;

}



.footer-logo {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 1rem;

}



.footer-brand-text {

  font-size: 1.125rem;

  font-weight: 700;

  background: var(--gradient-text);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.footer-description {

  font-size: 0.875rem;

  color: var(--gray-600);

  margin-bottom: 1.5rem;

  line-height: 1.6;

}



.footer-social {

  display: flex;

  gap: 1rem;

}



.footer-social-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  width: 2.5rem;

  height: 2.5rem;

  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.8);

  color: var(--gray-600);

  transition: var(--transition-smooth);

  text-decoration: none;

  font-size: 1.125rem;

}



.footer-social-icon:hover {

  background-color: hsl(var(--primary));

  color: white;

  transform: translateY(-2px);

  box-shadow: var(--shadow-md);

}



.footer-section-title {

  font-size: 0.875rem;

  font-weight: 600;

  color: var(--gray-900);

  margin-bottom: 1rem;

  text-transform: uppercase;

  letter-spacing: 0.05em;

}



.footer-section-subtitle {

  font-size: 0.75rem;

  color: var(--gray-500);

  margin-bottom: 1.5rem;

  line-height: 1.5;

}



.footer-links {

  list-style: none;

  padding: 0;

}



.footer-links li {

  margin-bottom: 0.5rem;

}



.footer-links a {

  font-size: 0.875rem;

  color: var(--gray-600);

  transition: var(--transition-smooth);

}



.footer-contact-info {

  margin-top: 1rem;

}



.footer-contact-item {

  display: flex;

  align-items: center;

  gap: 0.5rem;

  margin-bottom: 0.5rem;

  font-size: 0.875rem;

  color: var(--gray-600);

}



.footer-contact-item a {

  color: var(--gray-600);

  text-decoration: none;

  transition: var(--transition-smooth);

}



.footer-contact-item a:hover {

  color: hsl(var(--primary));

}



.footer-contact-icon {

  width: 1rem;

  height: 1rem;

  color: var(--gray-500);

}



.footer-email-form {

  display: flex;

  flex-direction: column;

  gap: 0.75rem;

  margin-top: 1rem;

}



.footer-email-form .input {

  background: rgba(255, 255, 255, 0.8);

  backdrop-filter: blur(4px);

  border: 1px solid rgba(255, 255, 255, 0.3);

  font-size: 0.875rem;

}



.footer-email-form .btn {

  background: var(--gradient-peach-mint);

  color: white;

  font-weight: 600;

  border-radius: 0.375rem;

  padding: 0.5rem 1rem;

  font-size: 0.875rem;

}



.footer-email-form .btn:hover {

  opacity: 0.9;

  transform: translateY(-1px);

}



@media (min-width: 640px) {

  .footer-email-form {

    flex-direction: row;

  }

  

  .footer-email-form .input {

    flex: 1;

  }

}



.footer-bottom {

  margin-top: 3rem;

  padding-top: 2rem;

  border-top: 1px solid var(--gray-200);

  display: flex;

  flex-direction: column;

  gap: 1rem;

  font-size: 0.875rem;

  color: var(--gray-600);

}



.footer-legal {
	text-align: center;
    /* Add padding for spacing */
    padding: 20px 0;
}



.footer-legal a {

  color: var(--gray-600);

  transition: var(--transition-smooth);

}



.footer-legal a:hover {

  color: hsl(var(--primary));

}
.footer-legal-menu {
	list-style:none;
	display: flex;
  	gap: 1.5rem;
	margin-bottom:1rem;
}



@media (min-width: 1024px) {

  .footer-grid {

    grid-template-columns: repeat(4, minmax(0, 1fr));

  }

  

  .footer-bottom {

    flex-direction: row;

    align-items: center;

    justify-content: space-between;

  }

}



/* WordPress Specific */

.wp-caption {

  max-width: 100%;

}



.wp-caption-text {

  font-size: 0.875rem;

  color: var(--gray-600);

  margin-top: 0.5rem;

}



.alignleft {

  float: left;

  margin-right: 1rem;

  margin-bottom: 1rem;

}



.alignright {

  float: right;

  margin-left: 1rem;

  margin-bottom: 1rem;

}



.aligncenter {

  display: block;

  margin: 0 auto;

}



/* Accessibility */

.sr-only {

  position: absolute;

  width: 1px;

  height: 1px;

  padding: 0;

  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;

}



*:focus-visible {

  outline: none;

  box-shadow: 0 0 0 2px hsl(var(--ring));

}



/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Top Banner */
.top-banner {
  background: var(--gradient-peach-lavender);
  padding: 0.5rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.banner-link {
  color: hsl(var(--primary));
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.banner-link:hover {
  opacity: 0.8;
}

/* Blog Layout */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  margin-top: 2rem;
}

.blog-main {
  min-width: 0;
}

/* Featured Articles Section */
.featured-articles-section {
  margin-bottom: 3rem;
}

.featured-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.featured-article-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.featured-article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.featured-article-image {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}

.featured-article-content {
  padding: 1.5rem;
}

.article-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.featured-article-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.featured-article-excerpt {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.article-author {
  font-weight: 500;
}

.article-date {
  color: var(--gray-500);
}

.article-read-time {
  color: var(--gray-500);
}

.article-like-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--gray-600);
}

.article-like-btn:hover {
  background: hsl(var(--primary));
  color: white;
  transform: scale(1.1);
}

/* Latest Articles Section */
.latest-articles-section {
  margin-bottom: 3rem;
}

.latest-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.latest-article-card {
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.latest-article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.latest-article-image {
  border-radius: 0.75rem 0.75rem 0 0;
  overflow: hidden;
}

.latest-article-content {
  padding: 1.25rem;
}

.article-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--primary));
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.latest-article-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.latest-article-excerpt {
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.875rem;
}

.article-tags {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.tag:hover {
  background: hsl(var(--primary));
  color: white;
}

/* Blog Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-widget {
  padding: 1.5rem;
}

.widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.widget-description {
  color: var(--gray-600);
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Search Form */
.search-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.search-form .input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(var(--input));
  border-radius: 0.375rem;
  font-size: 0.875rem;
  transition: var(--transition-smooth);
}

.search-form .input:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsl(var(--ring));
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.5rem;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  color: var(--gray-600);
  text-decoration: none;
  transition: var(--transition-smooth);
  border-bottom: 1px solid var(--gray-200);
}

.category-list a:hover {
  color: hsl(var(--primary));
}

.category-list span {
  background: var(--gray-100);
  color: var(--gray-500);
  padding: 0.25rem 0.5rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Tag Cloud */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag-cloud .tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
}

.tag-cloud .tag:hover {
  background: hsl(var(--primary));
  color: white;
  border-color: hsl(var(--primary));
}

/* Recent Posts List */
.recent-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts-list li {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
}

.recent-posts-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-posts-list a {
  text-decoration: none;
  color: inherit;
}

.recent-posts-list h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
  line-height: 1.4;
}

.recent-posts-list span {
  display: block;
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-bottom: 0.125rem;
}

.recent-posts-list a:hover h4 {
  color: hsl(var(--primary));
}

/* Responsive Design for Blog */
@media (max-width: 768px) {
  .blog-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .featured-articles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .latest-articles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .featured-article-content,
  .latest-article-content {
    padding: 1rem;
  }
  
  .sidebar-widget {
    padding: 1rem;
  }
}
/* ========================================
    PAGE STYLES
   ======================================== */
   .page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

/* ========================================
   SINGLE POST PAGE STYLES
   ======================================== */

/* Back to Blog Navigation */
.back-to-blog {
  background: var(--gray-50);
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.back-link {
  color: var(--gray-600);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.back-link:hover {
  color: hsl(var(--primary));
}

/* Single Post Layout */
.single-post-main {
  min-width: 0;
}

/* Featured Image */
.post-featured-image {
  margin-bottom: 2rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* Post Header */
.post-header {
  margin-bottom: 2rem;
}

.post-badges {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.post-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--gray-600);
}

.post-author {
  font-weight: 500;
}

.post-date {
  color: var(--gray-500);
}

.post-read-time {
  color: var(--gray-500);
}

.post-social-actions {
  display: flex;
  gap: 1rem;
}

.post-like-btn,
.post-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-smooth);
  color: var(--gray-600);
}

.post-like-btn:hover,
.post-share-btn:hover {
  background: hsl(var(--primary));
  color: white;
  transform: scale(1.05);
}

/* Post Content */
.post-content {
  margin-bottom: 3rem;
  line-height: 1.7;
}

.post-content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 2rem 0 1rem;
}

.post-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin: 1.5rem 0 0.75rem;
}

.post-content p {
  margin-bottom: 1.5rem;
  color: var(--gray-700);
}

.post-content ul,
.post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.post-content li {
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.post-content strong {
  font-weight: 600;
  color: var(--gray-900);
}

.post-callout {
  background: var(--gradient-peach-lavender);
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin: 2rem 0;
  border-left: 4px solid hsl(var(--primary));
}

.post-callout h3 {
  color: var(--gray-900);
  margin-top: 0;
}

.post-callout p,
.post-callout li {
  color: var(--gray-800);
}

/* Post Tags Section */
.post-tags-section {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.tags-label {
  font-weight: 600;
  color: var(--gray-900);
  margin-right: 1rem;
}

.post-tags {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.post-tags .tag {
  background: var(--gray-100);
  color: var(--gray-600);
  padding: 0.375rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.post-tags .tag:hover {
  background: hsl(var(--primary));
  color: white;
}

/* Related Posts */
.related-posts {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.related-post-card {
  overflow: hidden;
  transition: var(--transition-smooth);
}

.related-post-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.related-post-image {
  height: 200px;
  overflow: hidden;
}

.related-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-post-content {
  padding: 1.5rem;
}

.related-post-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.related-post-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.related-post-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.read-time {
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Search Input Wrapper */
.search-input-wrapper {
  position: relative;
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-400);
  pointer-events: none;
}

.search-input-wrapper .input {
  padding-left: 2.5rem;
}

/* Newsletter Widget */
.newsletter-widget {
  text-align: center;
}

.newsletter-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--gradient-peach-lavender);
  border-radius: 50%;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.newsletter-form .input {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
}

/* Responsive Design for Single Post */
@media (max-width: 768px) {
  .post-title {
    font-size: 1.875rem;
  }
  
  .post-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .post-social-actions {
    justify-content: center;
  }
  
  .related-posts-grid {
    grid-template-columns: 1fr;
  }
  
  .post-tags-section {
    text-align: center;
  }
  
  .tags-label {
    display: block;
    margin-bottom: 0.5rem;
  }
}

/* Print Styles */

@media print {

  .no-print {

    display: none !important;

  }

  

  .site-header,

  .site-footer {

    display: none;

  }

  

  body {

    font-size: 12pt;

    line-height: 1.5;

  }

  

  h1, h2, h3, h4, h5, h6 {

    break-after: avoid;

  }

}

