/* Import premium fonts */
@import url('https://fonts.googleapis.com/css2?family=La+Belle+Aurore&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-body: 'Outfit', sans-serif;
  --font-script: 'La Belle Aurore', cursive;

  /* Premium Color Palette */
  --color-primary: #053858;
  --color-primary-light: #115884;
  --color-secondary: #007bb0;
  --color-accent: #30b1d0;
  --color-accent-light: #e6f6f9;
  --color-danger: #a12403;
  --color-dark: #1e293b;
  --color-light-bg: #f8fafc;
  --color-white: #ffffff;
  --color-slate-200: #e2e8f0;
  --color-slate-400: #94a3b8;
  --color-slate-600: #475569;

  /* Animations & Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Global Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-light-bg);
  color: var(--color-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

/* Global containers */
.container_narrow {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Header styling */
#top_nav_bar {
  background-color: #053858;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}

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

.nav-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1); /* Ensure the logo elements contrast well on blue */
}

.menu-main_nav-container {
  display: flex;
  align-items: center;
}

#menu-main_nav {
  display: flex;
  list-style: none;
  gap: 0.5rem;
}

#menu-main_nav a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.6rem 1.2rem;
  border-radius: 9999px;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

#menu-main_nav a svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

#menu-main_nav a:hover {
  color: var(--color-white);
  background-color: rgba(44, 170, 177, 0.45); /* Elegant semi-transparent version of #2caab1 */
}

#menu-main_nav .current-menu-item a {
  color: var(--color-white);
  background-color: #2caab1; /* Solid #2caab1 for active menu item */
}

/* Mobile Toggle */
#menu_toggle {
  display: none;
  cursor: pointer;
  padding: 10px;
}

.burger {
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  position: relative;
  transition: var(--transition);
}

.burger::before, .burger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition);
}

.burger::before { top: -6px; }
.burger::after { top: 6px; }

#menu_toggle.active .burger {
  background-color: transparent;
}

#menu_toggle.active .burger::before {
  transform: rotate(45deg);
  top: 0;
}

#menu_toggle.active .burger::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section with Split design and original gradients */
.hero_section {
  position: relative;
  padding: 3.5rem 0 3rem; /* Reduced height by decreasing vertical padding */
  background: linear-gradient(135deg, #007bb0 0%, #115884 100%);
  border-bottom: 1px solid var(--color-slate-200);
  overflow: hidden;
  color: var(--color-white);
}

.hero_background_anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../assets/slide_background_01.svg");
  background-size: cover;
  background-position: center top;
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  animation: kenburns-top 24s ease-out infinite alternate-reverse both;
}

.hero_container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero_quote {
  font-family: var(--font-script) !important;
  font-size: 2.4rem !important;
  color: var(--color-white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  text-align: left !important;
  margin-bottom: 1rem;
}

.hero_title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero_lead {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.5rem; /* Significantly reduced margin */
  max-width: 600px;
}

.hero_actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons System */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.button-primary {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(17, 88, 132, 0.25);
}

.button-primary:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(17, 88, 132, 0.35);
}

.button-secondary {
  background-color: var(--color-white);
  color: var(--color-primary-light);
  border: 1.5px solid var(--color-slate-200);
}

.button-secondary:hover {
  background-color: var(--color-light-bg);
  border-color: var(--color-slate-400);
  transform: translateY(-2px);
}

.button-accent {
  background-color: var(--color-secondary);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(0, 123, 176, 0.25);
}

.button-accent:hover {
  background-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 176, 0.35);
}

.button-facebook {
  background-color: #1877f2;
  color: var(--color-white);
}

.button-facebook:hover {
  background-color: #0e5aed;
  transform: translateY(-2px);
}

/* Hero Badge & Image Area */
.hero_image_area {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.profile_badge_wrapper {
  position: relative;
  width: 100%;
  max-width: 250px; /* Reduced slightly as requested */
}

.hero_profile_img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  border: 6px solid var(--color-white);
}

.badge_overlay {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255,255,255,0.1);
}

.badge_overlay span {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
}

.badge_overlay small {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* Offerings Section */
.services_section {
  padding: 4rem 0 5rem;
  background-color: var(--color-white); /* Pure clean white background */
}

.section_title {
  font-size: 2.25rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.section_subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-slate-600);
  margin-bottom: 4rem;
}

.services_grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service_card {
  background-color: var(--color-light-bg); /* Soft clean grey cards */
  border-radius: 20px;
  padding: 2rem 1.75rem; /* Tightened padding */
  text-align: left;
  border: 1px solid var(--color-slate-200);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service_card:hover {
  transform: translateY(-6px);
  background-color: var(--color-white);
  box-shadow: var(--shadow-lg);
  border-color: rgba(0, 123, 176, 0.25);
}

.card_header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.card_header svg {
  width: 24px;
  height: 24px;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.card_header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0;
}

.service_card p {
  color: var(--color-slate-600);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.card_link {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.95rem;
}

/* Bio Section */
.bio_section {
  padding: 3.5rem 0; /* Reduced padding from 7rem to 3.5rem */
  background-color: var(--color-light-bg);
}

.bio_layout {
  max-width: 800px;
  margin: 0 auto;
}

.bio_text h2 {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.bio_text p {
  font-size: 1.15rem;
  color: var(--color-slate-600);
  margin-bottom: 1.5rem;
}

.highlight_text {
  border-left: 4px solid var(--color-secondary);
  padding-left: 1.5rem;
  font-style: italic;
}

/* Highly impactful call-to-action banner */
.consultation_highlight_card {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: var(--color-white);
  padding: 2rem 2.5rem; /* Reduced padding */
  border-radius: 24px;
  border: 4px solid #2caab1; /* Added thick teal border matching her photo border */
  box-shadow: 0 20px 40px rgba(5, 56, 88, 0.15);
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
}

.cta_avatar {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #2caab1;
  box-shadow: var(--shadow-lg);
}

.cta_avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.cta_content {
  flex: 1;
}

.consultation_highlight_card h3 {
  font-size: 1.9rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.consultation_highlight_card p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 700px;
}

.consultation_highlight_card .button {
  background-color: var(--color-white);
  color: var(--color-primary-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.consultation_highlight_card .button:hover {
  background-color: var(--color-accent-light);
  color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta_actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.consultation_highlight_card .button-secondary-white {
  background-color: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.consultation_highlight_card .button-secondary-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
}

/* Facebook Section */
.facebook_section {
  padding: 5rem 0;
  background-color: var(--color-white);
  border-top: 1px solid var(--color-slate-200);
}

.fb_container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.fb_info h2 {
  font-size: 2.25rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.fb_info p {
  font-size: 1.1rem;
  color: var(--color-slate-600);
  margin-bottom: 2rem;
}

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

.fb_mock_card {
  background: linear-gradient(135deg, #1877f2, #0a56be);
  padding: 4rem 2rem;
  border-radius: 20px;
  text-align: center;
  color: var(--color-white);
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.fb_logo {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.fb_tag {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
  letter-spacing: 0.5px;
}

/* Footer Section */
#footer_bar {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 4rem 0;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

#copyright p {
  font-size: 1rem;
  opacity: 0.9;
}

.footer_address {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

#footer_logo {
  text-align: right;
  max-width: 220px;
}

#footer_logo img {
  width: 100%;
  height: auto;
  max-width: 140px;
  display: block;
}



/* Animations */
.fade-in {
  animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero_container {
    gap: 2rem;
  }
  
  .hero_title {
    font-size: 2.5rem;
  }
  
  .services_grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  #menu_toggle {
    display: block;
  }

  .menu-main_nav-container {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #053858;
    padding: 1.5rem 0;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .menu-main_nav-container.active {
    display: block;
  }

  #menu-main_nav {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  #menu-main_nav a {
    width: 90%;
    text-align: center;
    border-radius: 8px;
  }

  .hero_container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  
  .hero_quote {
    text-align: center !important;
  }
  
  .hero_actions {
    justify-content: center;
  }
  
  .hero_image_area {
    order: -1;
  }
  
  .profile_badge_wrapper {
    max-width: 200px; /* Reduced from 240px */
  }
  
  .badge_overlay {
    bottom: -10px;
    right: -10px;
    padding: 0.75rem 1.25rem;
  }
  
  .services_grid {
    grid-template-columns: 1fr;
  }
  
  .fb_container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .fb_visual {
    order: -1;
  }
  
  .footer_container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  #footer_logo {
    text-align: center;
    margin: 0 auto;
  }

  .consultation_highlight_card {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 3rem 1.5rem;
  }

  .cta_avatar {
    width: 120px;
    height: 120px;
  }
}

/* About Page Specific Styles */
.about_grid_layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  margin: 4rem 0 3.5rem;
}

.intro_p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--color-slate-600);
}

.body_p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  color: var(--color-slate-600);
}

.content_h2 {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.studies_title, .credentials_title {
  font-size: 1.35rem;
  color: var(--color-primary-light);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.studies_list {
  margin: 1.5rem 0 2rem 1.5rem;
  font-size: 1.05rem;
  color: var(--color-slate-600);
  line-height: 1.8;
}

.studies_list li {
  margin-bottom: 0.75rem;
}

.about_mission_quote {
  background-color: var(--color-white);
  border-left: 4px solid #2caab1;
  padding: 2rem;
  border-radius: 8px;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.certs_image_wrapper {
  margin-bottom: 2.5rem;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-slate-200);
}

.certs_img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .about_grid_layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
  }
}

/* Services Page Specific Styles */
.services_top_quote {
  text-align: center;
  margin: 2rem auto 3rem;
  max-width: 800px;
}

.services_top_quote .italic_quote {
  font-family: var(--font-script);
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.services_top_quote .quote_author {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-slate-600);
}

.services_showcase_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.services_showcase_item {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: var(--color-white);
  padding: 1.75rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-slate-200);
  transition: var(--transition);
}

.services_showcase_item:hover {
  box-shadow: var(--shadow-lg);
}

.services_showcase_item:nth-child(even) {
  flex-direction: row-reverse;
}

.showcase_image {
  flex: 1;
  max-width: 42%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 4 / 3;
}

.showcase_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase_text {
  flex: 1.2;
}

.service_badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #2caab1;
  margin-bottom: 0.4rem;
}

.showcase_text h2 {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.showcase_text p {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--color-slate-600);
  margin-bottom: 1.25rem;
}

.services_showcase_item .button-accent {
  background-color: transparent;
  color: var(--color-primary-light);
  border: 1.5px solid var(--color-primary-light);
  box-shadow: none;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

.services_showcase_item .button-accent:hover {
  background-color: var(--color-primary-light);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(17, 88, 132, 0.15);
}

@media (max-width: 768px) {
  .services_top_quote {
    margin: 1.5rem 0 2.5rem;
  }
  
  .services_top_quote .italic_quote {
    font-size: 2rem;
  }
  
  .services_showcase_list {
    gap: 2.5rem;
  }
  
  .services_showcase_item,
  .services_showcase_item:nth-child(even) {
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .showcase_image {
    max-width: 100%;
    width: 100%;
  }
}

/* Service Detail Page Specific Styles */
.detail_grid_layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  margin: 3.5rem 0;
  align-items: start;
}

.detail_left_col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: sticky;
  top: 120px;
}

.detail_right_col {
  display: flex;
  flex-direction: column;
}

.detail_photo_card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--color-white);
  aspect-ratio: 4 / 3;
}

.detail_photo_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail_sidebar_box {
  background-color: var(--color-white);
  border-left: 4px solid #2caab1;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-slate-200);
  border-left-width: 4px;
}

.detail_sidebar_box h4 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.detail_sidebar_box p {
  font-size: 0.95rem;
  color: var(--color-slate-600);
  line-height: 1.6;
}

.detail_content_text .intro_p {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-primary-light);
  font-weight: 500;
  margin-bottom: 2rem;
}

.detail_content_text .body_p {
  font-size: 1.05rem;
  color: var(--color-slate-600);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .detail_grid_layout {
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .detail_grid_layout {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin: 2rem 0;
  }
  .detail_left_col {
    position: static;
  }
}

/* Responsive Video Embed & Card Images */
.video_wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 640px;
  margin: 2.5rem auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-slate-200);
}

.video_wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.card_image_top {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
  border-bottom: 1px solid var(--color-slate-200);
}

.card_image_top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Ken Burns Background Animation */
@keyframes kenburns-top {
  0% {
    transform: scale(1) translateY(0);
    transform-origin: 50% 16%;
  }
  100% {
    transform: scale(1.2) translateY(-15px);
    transform-origin: top;
  }
}

/* Mobile Specific Optimizations */
@media (max-width: 580px) {
  .container_narrow {
    padding: 0 1.25rem;
  }
  .nav-container {
    padding: 0.5rem 1.25rem;
  }
  .page_content_area {
    padding: 2rem 1.25rem !important;
  }
  .hero_title {
    font-size: 2.1rem !important;
  }
  .hero_quote {
    font-size: 1.8rem !important;
  }
  .section_title {
    font-size: 1.8rem !important;
  }
  .hero_actions {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .hero_actions .button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

