/*
Theme Name: ProVAE Starter
Author: ProVAE
Version: 1.2
Text Domain: provae-starter
*/

:root{
  --maxw: 1100px;
  --pad: 18px;

  /* Neutrals (locked) */
  --bg: #ffffff;
  --text: #111111;
  --muted: #666666;
  --border: #e6e6e6;

  /* ProVAE logo accents */
  --accent-primary: #057EA9;   /* Blue: authority (use sparingly) */
  --accent-secondary: #D95216; /* Orange: action (CTA/highlight) */

  --accent-primary-soft: rgba(5, 126, 169, 0.10);
  --accent-secondary-soft: rgba(217, 82, 22, 0.12);
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: "Charter", Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a{ color: var(--accent-primary); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.site-header{
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

/* UI typography (sans) */
.site-header,
.site-nav,
button,
.provae-cta-button,
input,
textarea {
  font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}
.brand img{
  max-height: 44px;
  width: auto;
  display: block;
}

/* =============================
   NAVIGATION
   ============================= */

.site-nav > ul.menu{
  list-style: none;
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-nav a{
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--text);
}
.site-nav a:hover{
  background: #f4f4f4;
  text-decoration: none;
}

.site-nav li{
  position: relative;
}

.site-nav ul.sub-menu{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  list-style: none;
  z-index: 9999;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.site-nav li.menu-item-has-children:hover > ul.sub-menu,
.site-nav li.menu-item-has-children:focus-within > ul.sub-menu{
  display: block;
}

.site-nav ul.sub-menu a{
  display: block;
  padding: 8px 10px;
  border-radius: 10px;
  white-space: nowrap;
}

@media (max-width: 900px){
  .site-nav ul.sub-menu{
    position: static;
    display: block;
    box-shadow: none;
    border: 0;
    padding: 0;
    margin-top: 6px;
  }
}

main{
  padding: 34px 0;
}

.page-title{
  margin: 0 0 14px;
  font-size: 34px;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.content{
  max-width: 70ch;
}
.content h2{
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 22px;
  border-left: 4px solid var(--accent-primary);
  padding-left: 12px;
}
.content p{
  margin: 0 0 14px;
  color: var(--text);
}
.content ul{
  margin: 0 0 14px 20px;
}

.site-footer{
  border-top: 1px solid var(--border);
  padding: 22px 0;
  background: #fff;
}
.footer-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-logo img{
  max-height: 36px;
  width: auto;
  display: block;
}
.copyright{
  color: var(--muted);
  font-size: 14px;
}

.provae-cta{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  margin: 0 0 18px;
  background: #fafafa;
}
.provae-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.provae-cta-heading{
  margin: 0 0 6px;
  font-size: 20px;
}
.provae-cta-text{
  margin: 0;
  color: var(--muted);
}
.provae-cta-button{
  display: inline-block;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--accent-secondary);
  background: var(--accent-secondary);
  color: #fff;
  text-decoration: none;
}
.provae-cta-button:hover{
  filter: brightness(0.95);
  text-decoration: none;
}

.accent-primary { color: var(--accent-primary); font-weight: 700; }
.accent-secondary { color: var(--accent-secondary); font-weight: 700; }

/* Home page secondary decision link (LOCKED) */
.home-secondary-link {
  color: #444;
  text-decoration: underline;
  font-weight: 500;
}

.home-secondary-link:hover {
  color: #000;
  text-decoration: underline;
}

/* Home page secondary decision link (IMPORTANT ANALYSIS PATH) */
a.home-secondary-link{
  color: #D75019;              /* Reserved logo orange – text only */
  font-size: 20px;             /* Grabs attention in open space */
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 4px;
}

a.home-secondary-link:hover{
  color: #b84514;
  text-decoration: underline;
}

/* === Home Page (Hybrid) image divider + centered CTA === */
.home-divider{
  max-width: 900px;
  margin: 56px auto;
}

.home-divider img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.home-contact .cta-center{
  margin-top: 28px;
  text-align: center;
}

.home-contact .cta-center .home-secondary-link{
  display: inline-block;
  font-size: 26px;
  font-weight: 800;
  color: var(--accent-secondary);
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 999px;
  letter-spacing: 0.01em;
}

.home-contact .cta-center .home-secondary-link:hover{
  text-decoration: underline;
}

@media (max-width: 900px){
  .home-divider{
    max-width: 100%;
    margin: 40px auto;
  }
}

.provae-local__image img {
  max-height: 420px;
  width: 100%;
  object-fit: cover;
  display: block;
}
/* === End Home Page (Hybrid) === */

