/*
Theme Name: VoiceGenx Theme
Theme URI: https://voicegenixai.com
Author: VoiceGenix AI
Author URI: https://voicegenixai.com
Description: A clean Astra-style WordPress theme for VoiceGenix AI (SaaS marketing website).
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: voicegenx
Tags: custom-logo, custom-menu, featured-images, full-width-template, rtl-language-support, accessibility-ready
*/

/* =========================
   VoiceGenx Theme — Base
   Astra-style: clean, white, wide container, subtle sections
========================= */

:root{
  --vx-bg: #ffffff;
  --vx-bg-alt: #f7f7f7;
  --vx-text: #0f172a;
  --vx-muted: #475569;
  --vx-line: #e5e7eb;

  --vx-primary: #2563eb;
  --vx-primary-hover: #1d4ed8;

  --vx-radius: 14px;
  --vx-shadow: 0 10px 30px rgba(2, 6, 23, 0.08);

  --vx-container: 1240px;

  --vx-h1: clamp(34px, 4vw, 52px);
  --vx-h2: clamp(26px, 3vw, 36px);
  --vx-p: 16px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  font-size: var(--vx-p);
  line-height: 1.65;
  color: var(--vx-text);
  background: var(--vx-bg);
}

/* WordPress core helpers */
img{ max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }
a:hover{ color: var(--vx-primary); }
.wp-caption{ max-width: 100%; }
.alignwide{ width: min(1200px, 100%); margin-inline: auto; }
.alignfull{ width: 100%; margin-inline: 0; }

.container{
  width: min(var(--vx-container), calc(100% - 40px));
  margin: 0 auto;
}

.section{
  padding: 72px 0;
}
.section--alt{
  background: var(--vx-bg-alt);
  border-top: 1px solid var(--vx-line);
  border-bottom: 1px solid var(--vx-line);
}

/* Typography */
h1,h2,h3,h4{
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
h1{ font-size: var(--vx-h1); line-height: 1.1; }
h2{ font-size: var(--vx-h2); line-height: 1.2; }
p{ margin: 0 0 14px; color: var(--vx-muted); }
.lead{
  font-size: 18px;
  color: var(--vx-muted);
  max-width: 60ch;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .12s ease, border-color .12s ease, color .12s ease;
}
.btn:active{ transform: translateY(1px); }

.btn--primary{
  background: var(--vx-primary);
  color:#fff;
}
.btn--primary:hover{ background: var(--vx-primary-hover); color:#fff; }

.btn--outline{
  background: transparent;
  border-color: var(--vx-line);
  color: var(--vx-text);
}
.btn--outline:hover{ border-color: #cbd5e1; color: var(--vx-text); }

/* Cards + grid */
.grid{ display:grid; gap:18px; }
.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--4{ grid-template-columns: repeat(4, minmax(0,1fr)); }

.card{
  background:#fff;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  padding: 18px;
}
.card--shadow{
  box-shadow: var(--vx-shadow);
  border-color: rgba(229,231,235,.7);
}

/* Header / Nav (Astra-like) */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--vx-line);
}
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand-mark{
  width: 34px; height: 34px;
  border-radius: 10px;
  background: radial-gradient(circle at 30% 30%, #60a5fa, #2563eb);
  box-shadow: 0 10px 25px rgba(37,99,235,.25);
}
.primary-nav{
  display:flex;
  align-items:center;
  gap: 18px;
  font-weight: 700;
  font-size: 14px;
  color: var(--vx-muted);
}
.primary-nav a:hover{ color: var(--vx-text); }
.nav-cta{
  display:flex;
  align-items:center;
  gap: 10px;
}

/* Hero */
.hero{
  padding: 72px 0 52px;
}
.hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items:center;
}

/* Footer */
.site-footer{
  padding: 44px 0;
  border-top: 1px solid var(--vx-line);
  background:#fff;
}
.footer-grid{
  display:grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 18px;
}
.footer-links{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}
.small{
  font-size: 13px;
  color: var(--vx-muted);
}

/* Forms */
label{
  font-size: 13px;
  color: var(--vx-muted);
  font-weight: 700;
}
input, select, textarea{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--vx-line);
  border-radius: 12px;
  outline: none;
  font: inherit;
  background: #fff;
}
textarea{ min-height: 120px; resize: vertical; }
input:focus, select:focus, textarea:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid--3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid{ grid-template-columns: 1fr; }
  .primary-nav{ display:none; } /* JS-free: we’ll add a simple mobile menu later if you want */
}

@media (max-width: 560px){
  .grid--4, .grid--3, .grid--2{ grid-template-columns: 1fr; }
}






/* Front page */


.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--vx-line);
  border-radius: 999px;
  color: var(--vx-muted);
  font-size: 13px;
  background: #fff;
}

.badge{
  display:inline-flex;
  align-items:center;
  padding: 6px 10px;
  border: 1px solid var(--vx-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--vx-muted);
  background:#fff;
}

.icon{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  margin-bottom: 10px;
}

/* FAQ (JS toggles .open on parent) */
.faq-item{ overflow:hidden; }
.faq-q{
  width:100%;
  text-align:left;
  padding: 14px 16px;
  background:#fff;
  border:0;
  cursor:pointer;
  font-weight: 800;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.faq-a{ display:none; padding: 0 16px 16px; }
.faq-item.open .faq-a{ display:block; }
.chev{ transition: transform .15s ease; }
.faq-item.open .chev{ transform: rotate(180deg); }

/* Mobile nav open (JS toggles .nav-open on .primary-nav) */
.primary-nav.nav-open{
  display:block;
  position:absolute;
  right: 20px;
  top: 72px;
  background:#fff;
  border: 1px solid var(--vx-line);
  border-radius: 12px;
  padding: 12px;
  box-shadow: var(--vx-shadow);
}
.primary-nav ul{ list-style:none; margin:0; padding:0; display:flex; gap:16px; }
.primary-nav li{ margin:0; padding:0; }
@media (max-width: 980px){
  .primary-nav ul{ flex-direction:column; gap:10px; }
}






/* =========================
   Services Page Enhancements
========================= */

/* Smooth anchor offset (for sticky header) */
section[id]{
  scroll-margin-top: 100px;
}

/* Services lists */
.site-main ul,
.site-main ol{
  padding-left: 18px;
}

.site-main li{
  margin-bottom: 6px;
}

/* Service cards hover (subtle Astra feel) */
.page-services .card:hover,
.page-template-page-services .card:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* Hero spacing on services */
.page-services .section:first-of-type,
.page-template-page-services .section:first-of-type{
  padding-top: 90px;
}

/* Buttons alignment inside service sections */
.page-services .btn,
.page-template-page-services .btn{
  margin-top: 6px;
}




/* =========================
   Use Cases Page Enhancements
========================= */

.page-use-cases .card:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}

/* Outcomes badges row spacing */
.usecase-outcomes{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Make sure anchor sections land nicely under sticky header */
.page-use-cases section[id]{
  scroll-margin-top: 100px;
}






/* =========================
   Book Demo Page Enhancements
========================= */

.page-book-demo section[id]{
  scroll-margin-top: 100px;
}

/* Calendly iframe wrapper */
.calendly-wrap{
  border: 1px solid var(--vx-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.calendly-iframe{
  width: 100%;
  min-height: 640px;
  border: 0;
  display: block;
}

/* Intake form spacing */
.form{
  display: grid;
  gap: 12px;
}
.input{
  display: grid;
  gap: 6px;
}

/* Nice code style in tips */
code{
  padding: 2px 6px;
  border-radius: 8px;
  border: 1px solid var(--vx-line);
  background: #f8fafc;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 13px;
}





/* =========================
   Contact Page Enhancements
========================= */

.page-contact a[href^="mailto:"]{
  color: var(--vx-primary);
  font-weight: 800;
}

.page-contact .card ul{
  padding-left: 18px;
}

.page-contact .card li{
  margin-bottom: 6px;
}








/* =========================
   Pagination (Astra-like)
========================= */

.nav-links{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}

.page-numbers{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid var(--vx-line);
  background:#fff;
  font-weight: 800;
  color: var(--vx-muted);
}

.page-numbers.current{
  background: rgba(37,99,235,0.10);
  border-color: rgba(37,99,235,0.25);
  color: var(--vx-text);
}

.page-numbers:hover{
  border-color:#cbd5e1;
  color: var(--vx-text);
}







/* =========================
   Single Post Enhancements
========================= */

.post-navigation{
  margin-top: 18px;
}

.post-navigation .nav-links{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.post-navigation a{
  display:block;
  padding: 14px 16px;
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  background: #fff;
}

.post-navigation a:hover{
  border-color:#cbd5e1;
}

@media (max-width: 560px){
  .post-navigation .nav-links{
    grid-template-columns: 1fr;
  }
}

/* Make WP content inside cards look clean */
.card h2, .card h3, .card h4{
  margin-top: 18px;
}

.card p{
  color: var(--vx-muted);
}

.card a{
  color: var(--vx-primary);
  font-weight: 700;
}










/* =========================
   404 + Search Form Styling
========================= */

.search-form{
  display:flex;
  gap: 10px;
  align-items:center;
}

.search-form label{
  flex: 1;
}

.search-form .search-field{
  width: 100%;
  padding: 12px 12px;
  border: 1px solid var(--vx-line);
  border-radius: 12px;
}

.search-form .search-submit{
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: var(--vx-primary);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.search-form .search-submit:hover{
  background: var(--vx-primary-hover);
}






/* =========================
   Mobile Menu Button
========================= */

.hamburger{
  display:none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--vx-line);
  background:#fff;
  cursor:pointer;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 980px){
  .nav-cta .btn--outline{
    display:none; /* keep header clean on mobile */
  }
  .hamburger{
    display:inline-grid;
    place-items:center;
  }
}























/* =========================
   Search Page Enhancements
========================= */

.search-results .kicker{
  margin-bottom: 10px;
}

.search-results .card:hover{
  transform: translateY(-2px);
  transition: transform .15s ease;
}








/* =========================
   Comments Styling
========================= */

.vx-comments{
  display:grid;
  gap: 14px;
}

.comment-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display:grid;
  gap: 12px;
}

.comment{
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  padding: 14px 16px;
  background:#fff;
}

.comment .comment-meta{
  font-size: 13px;
  color: var(--vx-muted);
  margin-bottom: 8px;
}

.comment .comment-content p{
  margin: 8px 0;
}

.comment .reply a{
  display:inline-flex;
  margin-top: 8px;
  font-weight: 800;
  color: var(--vx-primary);
}

/* Comment form fields */
.vx-form{
  display:grid;
  gap: 12px;
}

.vx-form input[type="text"],
.vx-form input[type="email"],
.vx-form input[type="url"],
.vx-form textarea{
  width:100%;
  padding: 12px 12px;
  border: 1px solid var(--vx-line);
  border-radius: 12px;
  outline:none;
}

.vx-form textarea{
  min-height: 140px;
}

.vx-form input:focus,
.vx-form textarea:focus{
  border-color: rgba(37,99,235,.55);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}








/* =========================
   Hero Background Video (UPDATED)
========================= */

/* Make sure hero has space for video */
.hero.hero-video{
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: 620px; /* ensures the video is visible */
  display: flex;
  align-items: center;
  padding: 90px 0 70px; /* nicer spacing on top */
}

/* Video layer */
.hero-bg-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.02); /* removes any edge gaps */
}

/* 30% dark overlay */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.30);
  z-index: 1;
}

/* Optional premium glow overlay (subtle) */
.hero.hero-video::before{
  content:"";
  position:absolute;
  inset:0;
  z-index: 2;
  background:
    radial-gradient(circle at 20% 35%, rgba(37,99,235,.35), transparent 55%),
    radial-gradient(circle at 80% 65%, rgba(96,165,250,.28), transparent 55%);
  opacity: .55;
  pointer-events:none;
}

/* Content stays above video */
.hero.hero-video .container{
  position: relative;
  z-index: 3;
}

/* Text readability */
.hero.hero-video h1{
  color:#fff;
}
.hero.hero-video .lead{
  color: rgba(255,255,255,0.88);
}

/* IMPORTANT: kicker has white bg in your CSS, so keep it readable */
.hero.hero-video .kicker{
  background: rgba(255,255,255,0.92);
  color: var(--vx-text);
  border-color: rgba(255,255,255,0.55);
}

/* Make buttons pop on video */
.hero.hero-video .btn--outline{
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.hero.hero-video .btn--outline:hover{
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.38);
}

/* Make right-side mock card sit nicely on video */
.hero.hero-video .card--shadow{
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
}

/* Responsive */
@media (max-width: 980px){
  .hero.hero-video{
    min-height: 540px;
    padding: 80px 0 60px;
  }
}
@media (max-width: 560px){
  .hero.hero-video{
    min-height: 520px;
    padding: 72px 0 52px;
  }
}







/* =========================
   Use Cases Section Gradient (FIX)
========================= */

.section--alt.usecases-gradient{
  position: relative;
  overflow: hidden;
  background: transparent; /* IMPORTANT: remove the solid alt bg */
}

/* Put gradient ON the section itself so it shows */
.section--alt.usecases-gradient::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(37,99,235,0.60) 0%,
    rgba(37,99,235,0.30) 35%,
    rgba(37,99,235,0.12) 55%,
    rgba(37,99,235,0.00) 85%
  );
}

/* Keep content above */
.section--alt.usecases-gradient .container{
  position: relative;
  z-index: 1;
}




/* =========================
   FAQ Background Image
========================= */

.faq-bg{
  position: relative;
  overflow: hidden;
  background: url("../voicegenx-theme/assets/images/faq-bg.png") center/cover no-repeat;
}

/* soft overlay so text stays readable */
.faq-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(255,255,255,0.85); /* light overlay */
  z-index:0;
}

/* content above overlay */
.faq-bg .container{
  position: relative;
  z-index: 1;
}




/* =========================
   Services Hero FULL Background
========================= */

.services-hero{
  position: relative;
  overflow: hidden;
  padding: 110px 0 100px;
  min-height: 720px;

  /* Your hero image here */
  background-image: url("../assets/images/servicesgn-hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Blue gradient overlay */
.services-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(37,99,235,0.75) 0%,
    rgba(37,99,235,0.45) 35%,
    rgba(37,99,235,0.18) 55%,
    rgba(37,99,235,0.05) 75%
  );
}

/* Keep text above overlay */
.services-hero .container{
  position: relative;
  z-index: 2;
  max-width: 720px;
}

/* Make text white for contrast */
.services-hero h1,
.services-hero .lead,
.services-hero .kicker{
  color: #fff;
}

.services-hero .lead{
  color: rgba(255,255,255,0.85);
}

/* Responsive */
@media (max-width: 980px){
  .services-hero{
    min-height: 600px;
    padding: 90px 0 70px;
  }
}

@media (max-width: 560px){
  .services-hero{
    min-height: 520px;
    padding: 70px 0 60px;
  }
}







/* Fix primary button text visibility */
.btn--primary,
.btn--primary:visited{
  color: #fff !important;
}

.btn--primary:hover{
  color: #fff !important;
}






/* =========================
   Use Cases Hero Layout + Image
========================= */

.usecases-hero-wrap{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.usecases-hero-visual{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(229,231,235,.8);
  box-shadow: var(--vx-shadow);
  background: #fff;
}

.usecases-hero-visual img{
  display:block;
  width:100%;
  height:auto;
}

@media (max-width: 980px){
  .usecases-hero-wrap{
    grid-template-columns: 1fr;
  }
  .usecases-hero-visual{
    margin-top: 10px;
  }
}

/* =========================
   Use Cases Hero Gradient
========================= */

.usecases-hero{
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 80px;
}

/* Left → Right blue fade */
.usecases-hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  background: linear-gradient(
    90deg,
    rgba(37,99,235,0.60) 0%,
    rgba(37,99,235,0.30) 35%,
    rgba(37,99,235,0.12) 60%,
    rgba(37,99,235,0.00) 85%
  );
}

/* Keep content above gradient */
.usecases-hero .container{
  position: relative;
  z-index: 1;
}











/* =========================
   404 Page — Slick SaaS Layout
========================= */

.vx-404{
  padding-top: 90px;
  padding-bottom: 90px;
}

.vx-404-card{
  text-align: center;
  padding: 34px;
}

.vx-404-actions{
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.vx-404-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  text-align: left;
}

.vx-404-panel{
  border: 1px solid var(--vx-line);
  border-radius: var(--vx-radius);
  padding: 18px;
  background: #fff;
}

.vx-404-panel h3{
  margin: 0 0 8px;
  font-size: 16px;
}

.vx-404-links{
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 8px;
}

.vx-404-links a{
  font-weight: 800;
  color: var(--vx-primary);
}

.vx-404 .search-form{
  justify-content: center;
}

@media (max-width: 980px){
  .vx-404-grid{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .vx-404-card{
    padding: 24px;
  }
}






/* Make search button look normal (not giant CTA) */
.vx-404 .search-form .search-submit{
  height: 44px;
  min-width: 120px;
  padding: 0 16px;
  border-radius: 12px;
}







/* =========================
   Book Demo Page
========================= */

.demo-hero{
  position: relative;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 70px;
}

.demo-gradient::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background: linear-gradient(
    90deg,
    rgba(37,99,235,0.55) 0%,
    rgba(37,99,235,0.25) 35%,
    rgba(37,99,235,0.10) 55%,
    rgba(37,99,235,0.00) 85%
  );
}

.demo-hero .container{ position: relative; z-index: 1; }

.demo-hero-wrap{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.demo-bullets{
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--vx-muted);
}
.demo-bullets li{ margin-bottom: 6px; }

.demo-hero-visual{
  border-radius: 16px;
  overflow: hidden;
}
.demo-visual-inner{
  padding: 18px;
}
.demo-flow{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--vx-muted);
}
.demo-chip-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

/* Calendly */
.calendly-wrap{
  border: 1px solid var(--vx-line);
  border-radius: 12px;
  overflow: hidden;
  background:#fff;
}
.calendly-iframe{
  width: 100%;
  min-height: 720px;
  border: 0;
  display:block;
}

/* Form container */
.demo-form{
  padding: 18px;
}

@media (max-width: 980px){
  .demo-hero-wrap{ grid-template-columns: 1fr; }
  .calendly-iframe{ min-height: 820px; }
}







/* =========================
   Footer Logo Styling
========================= */

.footer-brand{
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-link{
  display: inline-block;
}

.footer-logo{
  height: 35px;          /* Control exact size */
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}

.footer-tagline{
  margin-top: 6px;
  max-width: 240px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-links a{
  font-weight: 600;
  transition: 0.2s ease;
}

.footer-links a:hover{
  color: var(--vx-primary);
}

.footer-copyright{
  margin-top: 24px;
  border-top: 1px solid var(--vx-line);
  padding-top: 18px;
  font-size: 14px;
  opacity: 0.7;
}





/* =========================
   Header Logo Control
========================= */

.site-logo img,
.custom-logo {
  height: 35px;      /* your chosen size */
  width: auto;
  max-height: 35px;
  object-fit: contain;
}

/* prevent WP from forcing big dimensions */
.custom-logo-link {
  display: inline-flex;
  align-items: center;
}
