/*
Theme Name: Angels Clone
Author: Angels
Description: Custom theme for Angels association — plain HTML pages (no Elementor) with shared header/footer from angels-v2. Self-hosted Inter font for Greek readability.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: angels-clone
*/

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --dark: #6b21a8;
    --dark2: #4a1272;
    --accent: #e879f9;
    --accent2: #f472b6;
    --white: #ffffff;
    --light: #fdf4ff;
    --text: #3b1a5c;
    --muted: #9b7ab5;
    --nav-h: 90px;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Roboto', sans-serif; color: var(--text); background: var(--white); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 999;
    background: #fff;
    height: var(--nav-h);
    display: flex; align-items: center; gap: 0;
    padding: 0 48px;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
  }
  .nav-logo { height: 45px; flex-shrink: 0; margin-right: auto; }
  .nav-logo img { height: 100%; width: auto; }

  /* Desktop nav */
  .nav-links {
    display: flex; gap: 32px;
    align-items: center; list-style: none;
    margin: 0; padding: 0;
  }
  .nav-links a {
    color: #444; text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
    transition: color .2s;
  }
  .nav-links a:hover { color: #a21caf; }

  /* Desktop dropdown */
  .nav-dropdown { position: relative; }
  .nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
  .nav-dropdown-menu {
    display: none;
    position: absolute; top: calc(100% + 8px); left: 50%;
    transform: translateX(-50%);
    background: #fff; border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    border: 1px solid #eee;
    min-width: 220px; padding: 8px 0;
    z-index: 1000; list-style: none;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .nav-dropdown-menu li a {
    display: block; padding: 10px 20px;
    font-size: 13px; color: #444;
    text-transform: uppercase; letter-spacing: .06em;
    transition: background .15s, color .15s;
  }
  .nav-dropdown-menu li a:hover { background: #fdf4ff; color: #a21caf; }

  /* CTA */
  /* WP outputs `class="nav-cta"` on BOTH the <li> and the <a>.  Reset
     the <li> so it's a clean container, and keep button styles only on
     the <a>.  Override the Greek word-spacing fix for the CTA so the
     label sits visually centered between the left/right padding. */
  li.nav-cta {
    background: none !important;
    padding: 0 !important;
    margin: 0 0 0 24px !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  a.nav-cta,
  li.nav-cta > a.nav-cta,
  .nav-links a.nav-cta {
    background: #e879f9 !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    transition: background .2s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    white-space: nowrap;
    margin: 0 !important;
    /* Reset the Greek spacing fix so the label is perfectly balanced. */
    word-spacing: normal !important;
    letter-spacing: .06em !important;
  }
  a.nav-cta:hover,
  .nav-links a.nav-cta:hover { background: #d946ef !important; }

  /* Secondary highlight — outlined purple button for "Γινε μελος".
     Same structural rules as .nav-cta but purple outlined, so it draws
     attention without competing visually with the pink donate CTA. */
  li.nav-highlight {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
  }
  a.nav-highlight,
  li.nav-highlight > a.nav-highlight,
  .nav-links a.nav-highlight {
    background: #fff !important;
    color: #6b21a8 !important;
    padding: 9px 20px !important;
    border: 2px solid #a855f7 !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    transition: background .2s, color .2s, border-color .2s !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    line-height: 1 !important;
    white-space: nowrap;
    word-spacing: normal !important;
    letter-spacing: .06em !important;
  }
  a.nav-highlight:hover,
  .nav-links a.nav-highlight:hover {
    background: #6b21a8 !important;
    color: #fff !important;
    border-color: #6b21a8 !important;
  }

  /* Desktop social */
  .nav-social { display: flex; gap: 8px; align-items: center; margin-left: 12px; }
  .nav-social a {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(0,0,0,.06);
    display: flex; align-items: center; justify-content: center;
    color: #555; text-decoration: none; font-size: 14px;
    transition: background .2s, color .2s;
  }
  .nav-social a:hover { background: #a21caf; color: #fff; }
  .nav-social a.nav-instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366); color: #fff; }

  /* JS clones .nav-social into the menu list as <li class="nav-social-mobile">
     so it shows inside the open hamburger overlay.  Hide that clone on desktop
     where the regular .nav-social block is already visible in the nav bar. */
  .nav-links > li.nav-social-mobile { display: none; }

  /* Hamburger button — hidden on desktop */
  .nav-toggle {
    display: none;
    flex-direction: column; justify-content: center; gap: 5px;
    cursor: pointer; background: none; border: none;
    padding: 8px; z-index: 1001;
  }
  .nav-toggle span {
    display: block; width: 26px; height: 2.5px;
    background: #555; border-radius: 2px;
    transition: transform .3s, opacity .3s;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #4a1272 0%, #6b21a8 60%, #a21caf 100%);
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: var(--nav-h);
  }
  .hero-dots {
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
    background-size: 28px 28px;
  }
  .hero-gradient {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(74,18,114,0.85) 0%, rgba(162,28,175,0.4) 100%);
  }
  .hero-inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 64px; align-items: center;
    max-width: 1200px; margin: 0 auto;
    padding: 80px 48px;
  }
  .hero-tag {
    display: inline-block;
    background: rgba(232,121,249,.15);
    color: var(--accent);
    font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 3px; border: 1px solid rgba(232,121,249,.35);
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900; color: var(--white);
    line-height: 1.15; margin-bottom: 24px;
  }
  .hero h1 em { color: var(--accent); font-style: normal; }
  .hero p {
    color: rgba(255,255,255,.72); font-size: 17px; line-height: 1.7;
    max-width: 480px; margin-bottom: 40px;
  }
  .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-primary {
    background: #e879f9; color: #fff;
    padding: 14px 32px; border-radius: 4px;
    font-weight: 700; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none; transition: background .2s, transform .15s;
    display: inline-block;
  }
  .btn-primary:hover { background: #d946ef; transform: translateY(-2px); }
  .btn-outline {
    border: 2px solid rgba(255,255,255,.35); color: var(--white);
    padding: 13px 30px; border-radius: 4px;
    font-weight: 600; font-size: 14px; letter-spacing: .06em; text-transform: uppercase;
    text-decoration: none; transition: border-color .2s, color .2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--accent); color: var(--accent); }
  .hero-img {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
  }
  /* Outer soft glow */
  .hero-img::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(247,148,29,.25) 0%, rgba(232,121,249,.2) 45%, transparent 72%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: pulse-glow 4s ease-in-out infinite;
  }
  /* Spinning dashed ring */
  .hero-img::after {
    content: '';
    position: absolute;
    width: 460px; height: 460px;
    border: 3px dashed rgba(232,121,249,.3);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    animation: spin-slow 18s linear infinite;
  }
  /* The circular photo */
  .hero-img-wrap {
    position: relative;
    z-index: 2;
    width: 400px; height: 400px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow:
      0 0 0 10px rgba(255,255,255,.08),
      0 0 0 22px rgba(247,148,29,.18),
      0 0 0 34px rgba(232,121,249,.12),
      0 32px 80px rgba(0,0,0,.45);
    animation: float 6s ease-in-out infinite;
    flex-shrink: 0;
  }
  .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }
  /* Decorative floating dots */
  .hero-img-dot {
    position: absolute;
    z-index: 3;
    font-weight: 900;
    line-height: 1;
    user-select: none;
  }
  .hero-img-dot-1 {
    font-size: 28px;
    color: #f7941d;
    top: 8%; right: 12%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 0s;
  }
  .hero-img-dot-2 {
    font-size: 18px;
    color: #e879f9;
    top: 22%; left: 5%;
    animation: float 5s ease-in-out infinite;
    animation-delay: 1s;
  }
  .hero-img-dot-3 {
    font-size: 36px;
    color: rgba(247,148,29,.6);
    bottom: 18%; right: 6%;
    animation: float 4.5s ease-in-out infinite;
    animation-delay: 0.5s;
  }
  .hero-img-dot-4 {
    font-size: 14px;
    color: #e879f9;
    bottom: 10%; left: 12%;
    animation: float 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
  }
  .hero-img-dot-5 {
    font-size: 20px;
    color: rgba(232,121,249,.6);
    top: 45%; right: 2%;
    animation: float 3.5s ease-in-out infinite;
    animation-delay: 2s;
  }
  .hero-img-dot-6 {
    font-size: 16px;
    color: #f7941d;
    top: 60%; left: 3%;
    animation: float 4s ease-in-out infinite;
    animation-delay: 2.5s;
  }
  /* Stars */
  .hero-img-star {
    position: absolute;
    z-index: 3;
    font-size: 20px;
    animation: float 5s ease-in-out infinite;
    opacity: .8;
  }
  .hero-img-star-1 { top: 5%; left: 20%; animation-delay: 0.3s; }
  .hero-img-star-2 { bottom: 5%; right: 20%; animation-delay: 1.8s; }

  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
  }
  @keyframes pulse-glow {
    0%, 100% { opacity: .7; transform: translate(-50%,-50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%,-50%) scale(1.06); }
  }
  @keyframes spin-slow {
    from { transform: translate(-50%,-50%) rotate(0deg); }
    to { transform: translate(-50%,-50%) rotate(360deg); }
  }

  /* ── SECTION BASE ── */
  section { padding: 96px 48px; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-label {
    font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
    color: #a21caf; margin-bottom: 12px;
  }
  .section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700; color: var(--dark); line-height: 1.25;
  }
  .section-title-light { color: var(--white); }

  /* ── WHO WE ARE ── */
  .who { background: var(--white); }
  .who-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: start; margin-top: 56px;
  }
  .who-left .section-title { max-width: 420px; margin-bottom: 20px; }
  .who-left p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }
  .who-pillars { display: flex; flex-direction: column; gap: 28px; }
  .pillar {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 24px; border-radius: 6px;
    border: 1px solid #eee;
    transition: border-color .25s, box-shadow .25s;
  }
  .pillar:hover { border-color: #a21caf; box-shadow: 0 8px 24px rgba(232,184,109,.12); }
  .pillar-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(162,28,175,.1);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
  }
  .pillar-text h4 {
    font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px;
  }
  .pillar-text p { font-size: 14px; color: var(--muted); line-height: 1.65; }
  .pillar-text a { color: #a21caf; font-size: 13px; font-weight: 600; text-decoration: none; display: inline-block; margin-top: 8px; }

  /* ── CALL TO ACTION BANNER ── */
  .cta-banner {
    background: linear-gradient(135deg, #e8720c, #f7941d); color: var(--white);
    padding: 72px 48px;
  }
  .cta-banner-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; align-items: center; gap: 48px;
  }
  .cta-banner-imgs {
    display: flex; gap: 12px; flex-shrink: 0;
  }
  .cta-banner-imgs img {
    width: 120px; height: 120px; object-fit: cover; border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
  }
  .cta-banner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    margin-bottom: 16px;
  }
  .cta-banner h2 em { color: #fff3e0; font-style: normal; }
  .cta-banner p { color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.7; margin-bottom: 28px; max-width: 560px; }

  /* ── STATS ── */
  .stats { background: var(--light); }
  .stats-inner {
    max-width: 1200px; margin: 0 auto;
  }
  .stats-header { text-align: center; margin-bottom: 64px; }
  .stats-header p { color: var(--muted); font-size: 16px; margin-top: 16px; max-width: 600px; margin-left: auto; margin-right: auto; }
  .stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color .3s, box-shadow .3s;
    box-shadow: 0 2px 16px rgba(0,0,0,.05);
  }
  .stat-card:hover { border-color: #a21caf; box-shadow: 0 12px 32px rgba(0,0,0,.1); }
  .stat-number {
    font-size: 3rem; font-weight: 700; color: var(--dark);
    line-height: 1;
    margin-bottom: 10px;
  }
  .stat-number span { color: #a21caf; }
  .stat-label { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; }

  /* ── VISION ── */
  .vision {
    background: linear-gradient(135deg, #3b0764, #6b21a8);
    position: relative; overflow: hidden;
  }
  .vision::before {
    content: '';
    position: absolute; inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 32px 32px;
  }
  .vision-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .vision-img { position: relative; }
  .vision-img img {
    width: 100%; border-radius: 8px;
    box-shadow: 0 32px 64px rgba(0,0,0,.5);
  }
  .vision-quote {
    position: absolute; bottom: -24px; right: -24px;
    background: var(--accent);
    color: var(--dark);
    padding: 24px 28px;
    border-radius: 8px;
    max-width: 340px;
    font-size: 14px; line-height: 1.65;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
  }
  .vision-quote cite {
    display: block; margin-top: 12px;
    font-style: normal; font-size: 12px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .1em;
  }
  .vision-text .section-title-light { margin-bottom: 20px; }
  .vision-text p { color: rgba(255,255,255,.72); font-size: 16px; line-height: 1.75; margin-bottom: 16px; }
  .vision-text a { color: var(--accent); text-decoration: none; font-weight: 600; }
  .vision-text a:hover { text-decoration: underline; }

  /* ── NEWS ── */
  .news { background: var(--white); }
  .news-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
  .news-header a { color: var(--accent); font-weight: 600; text-decoration: none; font-size: 14px; }
  .news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .news-card {
    border-radius: 8px; overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: box-shadow .25s, transform .25s;
    border: 1px solid #eee;
  }
  .news-card:hover { box-shadow: 0 16px 40px rgba(0,0,0,.12); transform: translateY(-4px); }
  .news-card img { width: 100%; height: 200px; object-fit: cover; display: block; }
  .news-card-body { padding: 24px; }
  .news-cat {
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: #a21caf; margin-bottom: 10px;
  }
  .news-card h3 {
    font-size: 17px; font-weight: 700; color: var(--dark);
    line-height: 1.4; margin-bottom: 12px;
  }
  .news-meta { font-size: 12px; color: var(--muted); }

  /* ── CONTACT BANNER ── */
  .contact-banner {
    background: linear-gradient(135deg, #e8720c, #f7941d);
    padding: 64px 48px;
  }
  .contact-banner h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    color: #fff; margin-bottom: 16px;
  }
  .contact-banner p { color: rgba(255,255,255,.88); font-size: 16px; max-width: 600px; margin: 0; line-height: 1.7; }

  /* ── FOOTER ── */
  footer {
    background: linear-gradient(180deg, #3b0764, #2d0a4e); color: rgba(255,255,255,.75);
    padding: 64px 48px 32px;
  }
  .footer-inner {
    max-width: 1200px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; text-align: center;
    margin-bottom: 48px;
  }
  .footer-brand img { height: 42px; margin: 0 auto 16px; display: block; }
  .footer-brand p { font-size: 14px; line-height: 1.75; max-width: 420px; }
  .footer-social { display: flex; gap: 12px; margin-top: 24px; justify-content: center; }
  .social-btn {
    width: 38px; height: 38px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: var(--white); font-size: 14px;
    transition: background .2s;
  }
  .social-btn:hover { background: #e879f9; color: #fff; }
  .footer-col h4 {
    font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .12em; color: var(--white); margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col a { color: rgba(255,255,255,.6); text-decoration: none; font-size: 14px; transition: color .2s; }
  .footer-col a:hover { color: #e879f9; }
  .footer-bottom {
    max-width: 1200px; margin: 0 auto;
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
    font-size: 13px; text-align: center;
    color: rgba(255,255,255,.35);
  }
  /* ── COUNTER ANIMATION ── */
  .count-up { display: inline; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 20px; }
    .nav-toggle { display: flex; }
    .nav-social { display: none; }

    /* Social icons cloned by JS into the menu list as last <li>.
       They scroll inline with the menu and are visible on every mobile device. */
    .nav-links > li.nav-social-mobile {
      display: flex !important;
      align-items: center;
      gap: 14px;
      padding: 20px 24px 28px;
      margin-top: 8px;
      border-bottom: none !important;
    }
    .nav-links > li.nav-social-mobile > a,
    .nav-links .nav-social-mobile a {
      width: 44px !important;
      height: 44px !important;
      border-radius: 50% !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      background: rgba(168, 85, 247, .12) !important;
      color: #6b21a8 !important;
      text-decoration: none !important;
      padding: 0 !important;
      border: 0 !important;
      border-bottom: 0 !important;
      transition: background .2s, color .2s;
    }
    .nav-links .nav-social-mobile a svg {
      display: block;
      width: 18px;
      height: 18px;
    }
    .nav-links .nav-social-mobile a:hover {
      background: #6b21a8;
      color: #fff;
    }
    .nav-links .nav-social-mobile a.nav-instagram:hover {
      background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366);
      color: #fff;
    }

    /* Hide desktop menu, show as overlay when open */
    .nav-links {
      display: none !important;
      position: fixed;
      top: var(--nav-h); left: 0; right: 0; bottom: 0;
      flex-direction: column !important;
      align-items: stretch;
      gap: 0;
      background: #fff;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      z-index: 998;
      border-top: 3px solid #e879f9;
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .nav-links.open { display: flex !important; }

    /* Menu items */
    .nav-links > li { width: 100%; }
    .nav-links > li > a {
      display: block !important;
      padding: 16px 24px;
      font-size: 15px; font-weight: 600;
      color: #3b1a5c !important;
      border-bottom: 1px solid #f3e8ff;
      text-transform: uppercase; letter-spacing: .06em;
      background: none; margin: 0;
    }
    .nav-links > li > a:hover { background: #fdf4ff !important; }

    /* Dropdown always expanded on mobile */
    .nav-dropdown > a::after { display: none; }
    .nav-dropdown-menu {
      display: block !important;
      position: static !important;
      transform: none !important;
      box-shadow: none !important;
      border: none !important;
      border-radius: 0 !important;
      min-width: unset !important;
      padding: 0 !important;
      margin: 0 !important;
      background: #f5edff;
      list-style: none;
    }
    .nav-dropdown-menu li a {
      padding: 12px 40px !important;
      font-size: 13px !important;
      color: #7c3aed !important;
      border-bottom: 1px solid #ede9fe !important;
      font-weight: 500 !important;
    }
    .nav-dropdown-menu li a:hover { background: #ede9fe !important; }

    /* CTA */
    .nav-cta {
      display: block !important;
      margin: 16px 24px !important;
      text-align: center !important;
      padding: 14px !important;
      border-bottom: none !important;
      border-radius: 6px !important;
      background: #e879f9 !important;
      color: #fff !important;
    }
    .nav-cta:hover { background: #d946ef !important; }

    /* Secondary highlight (mobile) — only style the <a>, reset the <li>. */
    li.nav-highlight {
      background: none !important;
      border: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      display: block !important;
    }
    a.nav-highlight,
    .nav-links a.nav-highlight {
      display: block !important;
      margin: 16px 24px !important;
      text-align: center !important;
      padding: 13px !important;
      border-bottom: none !important;
      border-radius: 6px !important;
      background: #fff !important;
      color: #6b21a8 !important;
      border: 2px solid #a855f7 !important;
    }
    a.nav-highlight:hover,
    .nav-links a.nav-highlight:hover {
      background: #6b21a8 !important;
      color: #fff !important;
    }

    /* Page layout */
    section { padding: 64px 24px; }
    .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 60px 24px 40px; }
    .hero-img { display: flex !important; justify-content: center; margin-top: 48px; min-height: 320px; }
    .hero-img::before { width: 300px; height: 300px; }
    .hero-img::after { width: 270px; height: 270px; }
    .hero-img-wrap { width: 260px; height: 260px; }
    .who-grid { grid-template-columns: 1fr; gap: 48px; }
    #who-pillars-grid { grid-template-columns: 1fr !important; }
    #apostoli-pillars { flex-direction: column !important; }
    #apostoli-pillars > div { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.2); border-radius: 0 !important; }
    #apostoli-pillars > div:first-child { border-radius: 16px 16px 0 0 !important; }
    #apostoli-pillars > div:last-child { border-bottom: none; border-radius: 0 0 16px 16px !important; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .stat-card { padding: 24px 16px; }
    .stat-number { font-size: 2rem; }
    .vision-inner { grid-template-columns: 1fr; }
    #vision-inner { grid-template-columns: 1fr !important; padding: 40px 24px !important; }
    #vision-inner img { width: 200px !important; height: 200px !important; margin: 0 auto; display: block; }
    .vision-img { display: none; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .cta-banner-inner { flex-direction: column; }
    .cta-banner-imgs { display: none; }
  }
  @media (max-width: 700px) {
    .contact-banner { padding: 48px 24px; }
    .contact-banner > div {
      grid-template-columns: 1fr !important;
      gap: 28px !important;
      text-align: center;
      justify-items: center;
    }
    .contact-banner h2 { text-align: center !important; }
    .contact-banner .section-label { text-align: center !important; }
    .contact-banner p { max-width: 100%; text-align: center; }
    .contact-banner a { display: block; text-align: center; }
  }

/* ── Angels template overrides (higher specificity) ── */
body.angels-page footer {
  background: linear-gradient(180deg, #3b0764, #2d0a4e) !important;
  color: rgba(255,255,255,.75) !important;
  padding: 64px 48px 32px !important;
}
body.angels-page .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}
body.angels-page .footer-brand img { height: 42px; margin: 0 auto 16px; display: block; }
body.angels-page .footer-brand p   { font-size: 14px; line-height: 1.75; max-width: 420px; color: rgba(255,255,255,.75); }
body.angels-page .footer-social    { display: flex; gap: 12px; margin-top: 24px; justify-content: center; }
body.angels-page .social-btn       {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; color: #fff; font-size: 14px;
  transition: background .2s;
}
body.angels-page .social-btn:hover { background: #e879f9; color: #fff; }
body.angels-page .footer-bottom    {
  max-width: 1200px; margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  font-size: 13px; text-align: center;
  color: rgba(255,255,255,.35);
}

/* Reset any theme footer styles that may leak in */
body.angels-page > footer,
body.angels-page .angels-main ~ footer {
  background: linear-gradient(180deg, #3b0764, #2d0a4e) !important;
}

/* Ensure the page uses full width and the body has no odd padding */
body.angels-page { margin: 0 !important; padding: 0 !important; }
body.angels-page .angels-main { padding-top: 0; }  /* hero/header in each page handles fixed nav offset */

/* ── Greek-friendly font overrides ──
 * Roboto has known spacing issues with Greek characters (v51 kerning bug).
 * Use Inter (excellent Greek coverage) as primary, with Roboto as fallback
 * for Latin-only text and generic sans-serif as last resort.
 */
body.angels-page,
body.angels-page * {
  font-family: 'Inter', 'Roboto', 'Helvetica Neue', Arial, 'Segoe UI', sans-serif !important;
}
body.angels-page [class*="emoji"],
body.angels-page .hero-img-dot,
body.angels-page .hero-img-star,
body.angels-page .nav-social svg,
body.angels-page .footer-social svg {
  font-family: inherit !important;
}

/* ── Fix tight Greek bold spacing ──
 * Inter bold (700+) renders Greek characters with very compressed
 * word-spacing.  Add a small positive offset on all headings and
 * strong/bold elements so Greek stays legible.
 */
body h1, body h2, body h3, body h4, body h5, body h6,
body strong, body b,
body [class*="-title"], body [class*="-header"] h1,
body [class*="-header"] h2, body [class*="-header"] h3,
body .nav-links a, body .nav-cta,
body .section-label, body .stat-label,
body .news-cat, body .fact-label,
body .btn-primary, body .btn-outline {
	word-spacing: 0.12em;
	letter-spacing: 0.005em;
	font-kerning: normal;
	font-feature-settings: "kern" 1, "liga" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* ── WP admin bar compensation ──
 * When a logged-in user views a page the WP admin bar is fixed at top:0
 * and covers our own fixed nav. Push the nav down by 32px (46px on mobile).
 * Also bump .angels-main padding-top so hero doesn't hide under both bars.
 */
body.admin-bar nav {
	top: 32px !important;
}
body.admin-bar.angels-page .angels-main {
	padding-top: 32px; /* only admin bar; nav offset handled by each page's hero/header */
}
@media screen and (max-width: 782px) {
	body.admin-bar nav {
		top: 46px !important;
	}
	body.admin-bar.angels-page .angels-main {
		padding-top: 46px; /* mobile admin bar */
	}
}

/* ── WordPress core classes ── */
.wp-caption { max-width: 100%; }
.wp-caption .wp-caption-text { font-size: 13px; color: var(--muted); text-align: center; padding-top: 8px; }
.screen-reader-text {
	clip: rect(1px,1px,1px,1px); position: absolute !important;
	height: 1px; width: 1px; overflow: hidden; word-wrap: normal !important;
}
.alignleft { float: left; margin-right: 1.5em; }
.alignright { float: right; margin-left: 1.5em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.sticky { display: block; }
.bypostauthor { display: block; }
.skip-link:focus { position: absolute; left: 6px; top: 6px; background: #e879f9; color: #fff; padding: 10px 14px; z-index: 10000; border-radius: 4px; }

/* Angels page content wrapper — full-width host for post_content */
.angels-main {
	padding-top: 0;
	min-height: 60vh;
}

/* ── Homepage hero — fit-in-viewport sizing ────────────────────
 * The hero is 100vh tall, but the fixed nav covers the top
 * var(--nav-h)px, so the bottom of the hero falls below the fold.
 * Cap the hero at calc(100vh - nav-h) on desktop so the entire hero
 * (text + image) is visible in the initial viewport without scrolling. */
@media (min-width: 901px) {
	body.angels-page .hero {
		min-height: 100vh !important;
		max-height: none !important;
		padding-top: var(--nav-h) !important;
		padding-bottom: 24px;
		align-items: center;
	}
	body.angels-page .hero-inner {
		padding: 24px 48px !important;
	}
	/* Shrink the hero image proportionally so it fits along with the text. */
	body.angels-page .hero-img { min-height: auto !important; }
	body.angels-page .hero-img-wrap {
		width: clamp(300px, 34vw, 440px) !important;
		height: clamp(300px, 34vw, 440px) !important;
	}
	body.angels-page .hero-img::before {
		width: clamp(380px, 42vw, 540px) !important;
		height: clamp(380px, 42vw, 540px) !important;
	}
	body.angels-page .hero-img::after {
		width: clamp(350px, 39vw, 500px) !important;
		height: clamp(350px, 39vw, 500px) !important;
	}
	/* Tighten H1 so the whole hero block fits in viewport height. */
	body.angels-page .hero h1 {
		font-size: clamp(2rem, 3.6vw, 3.2rem) !important;
		line-height: 1.15 !important;
		margin-bottom: 18px !important;
	}
	body.angels-page .hero p {
		font-size: 16px !important;
		line-height: 1.6 !important;
		margin-bottom: 24px !important;
	}
}

/* ── Homepage hero — responsive overrides ──────────────────────
 * The hero markup in the home page post_content has its own mobile
 * styles, but they're not aggressive enough on small phones.  These
 * rules win because they're loaded after the inline post styles. */
@media (max-width: 900px) {
	body.angels-page .hero {
		min-height: auto !important;
		padding-top: var(--nav-h);
		padding-bottom: 32px;
	}
	body.angels-page .hero-inner {
		grid-template-columns: 1fr !important;
		gap: 0 !important;
		padding: 32px 24px 24px !important;
		text-align: center;
	}
	body.angels-page .hero-content { display: flex; flex-direction: column; align-items: center; }
	body.angels-page .hero h1 {
		font-size: clamp(1.8rem, 7vw, 2.6rem) !important;
		line-height: 1.2 !important;
		margin-bottom: 16px !important;
	}
	body.angels-page .hero p {
		font-size: 15px !important;
		line-height: 1.6 !important;
		max-width: 100% !important;
		margin-bottom: 24px !important;
	}
	body.angels-page .hero-btns {
		justify-content: center !important;
		width: 100%;
	}
	body.angels-page .hero-btns a,
	body.angels-page .hero-btns .btn-outline,
	body.angels-page .hero-btns .btn-primary {
		flex: 1 1 auto;
		min-width: 0;
		text-align: center;
	}
	body.angels-page .hero-img {
		min-height: 0 !important;
		margin-top: 32px !important;
		padding: 24px 0;
	}
	body.angels-page .hero-img::before { width: 320px !important; height: 320px !important; }
	body.angels-page .hero-img::after  { width: 290px !important; height: 290px !important; }
	body.angels-page .hero-img-wrap {
		width: 260px !important;
		height: 260px !important;
		box-shadow:
			0 0 0 8px rgba(255,255,255,.1),
			0 0 0 18px rgba(247,148,29,.22),
			0 0 0 28px rgba(232,121,249,.14),
			0 30px 60px rgba(0,0,0,.45) !important;
	}
}

@media (max-width: 480px) {
	body.angels-page .hero-inner { padding: 24px 18px 16px !important; }
	body.angels-page .hero h1 { font-size: clamp(1.6rem, 8vw, 2.2rem) !important; }
	body.angels-page .hero p { font-size: 14.5px !important; }
	body.angels-page .hero-img::before { width: 260px !important; height: 260px !important; }
	body.angels-page .hero-img::after  { width: 235px !important; height: 235px !important; }
	body.angels-page .hero-img-wrap { width: 210px !important; height: 210px !important; }
	body.angels-page .hero-img-dot-1 { font-size: 24px !important; }
	body.angels-page .hero-img-dot-3 { font-size: 32px !important; }
	body.angels-page .hero-img-dot-5 { font-size: 18px !important; }
	body.angels-page .hero-btns { flex-direction: column; }
	body.angels-page .hero-btns a { width: 100%; }
}

body.admin-bar .angels-main { padding-top: 32px; }
@media screen and (max-width: 782px) {
	body.admin-bar .angels-main { padding-top: 46px; }
}
