/*
Theme Name: REASCYL
Theme URI: https://reascyl.org
Description: Tema hijo de GeneratePress para REASCYL — Red de Economía Alternativa y Solidaria de Castilla y León. Marca verde/crema/tierra, Fraunces + DM Sans. Construido con bloques nativos + patterns, mejora progresiva GSAP opcional.
Author: EcoAlternative · SuperCreador WP
Template: generatepress
Version: 0.2.0
Requires at least: 6.5
Tested up to: 7.0
License: GNU General Public License v2 or later
Text Domain: reascyl
*/

/* ─────────────────────────────────────────────────────────────
   TOKENS (espejo en CSS vars para uso fuera del editor de bloques).
   La fuente de verdad de los tokens es theme.json; esto los refleja.
   ───────────────────────────────────────────────────────────── */
:root{
  --rc-green:#2F6B4F; --rc-green-deep:#21503A; --rc-green-bright:#4A9D6E; --rc-green-wash:#E6EFE7;
  --rc-earth:#C29A45; --rc-earth-deep:#9C7A2F;
  --rc-cream:#F5F1E8; --rc-cream-deep:#EDE7D8; --rc-white:#FBFAF5;
  --rc-ink:#1E2A22; --rc-ink-soft:#465249; --rc-line:#D9D1BE;
  --rc-display:"Fraunces",Georgia,serif;
  --rc-body:"DM Sans",system-ui,-apple-system,sans-serif;
  --rc-mono:"DM Mono",ui-monospace,monospace;
  --rc-ease:cubic-bezier(.22,1,.36,1);
}

/* Base mínima. El grueso del estilo vive en theme.json + patterns. */
body{ background:var(--rc-cream); color:var(--rc-ink); }
h1,h2,h3,h4,h5{ font-family:var(--rc-display); font-weight:600; line-height:1.15; }
a{ color:var(--rc-green); }
a:hover{ color:var(--rc-green-deep); }

/* ─────────────────────────────────────────────────────────────
   CABECERA (GeneratePress): logo proporcionado + título de marca.
   ───────────────────────────────────────────────────────────── */
.site-header .site-logo img,
.site-header .header-image{
  max-height:58px !important;
  width:auto !important;
  height:auto !important;
}
@media (max-width:768px){
  .site-header .site-logo img,
  .site-header .header-image{ max-height:44px !important; }
}
/* Solo el logo: ocultar el título de texto, pero accesible para lectores/SEO */
.site-header .main-title{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden;
  clip:rect(0 0 0 0);
  clip-path:inset(50%);
  white-space:nowrap; border:0;
}
/* Navegación con la tipografía base */
.main-navigation .menu-item a{ font-family:var(--rc-body); }
.main-navigation .current-menu-item > a{ color:var(--rc-green); }

/* ─────────────────────────────────────────────────────────────
   LOGO "reas" — fondo degradado + asterisco gigante difuminado.
   Sin esto el logo verde claro desaparece sobre fondo crema.
   ───────────────────────────────────────────────────────────── */
.site-header .site-branding,
.site-header .header-image,
.wp-site-header .site-branding{
    position:relative;
    isolation:isolate;
}
.site-header .site-branding::before,
.site-header .header-image::before,
.wp-site-header .site-branding::before{
    content:"✱";
    position:absolute;
    left:-25%;
    top:-70%;
    font-size:130px;
    line-height:1;
    color:var(--rc-green);
    opacity:.11;
    filter:blur(2.5px);
    z-index:-1;
    pointer-events:none;
    transform:rotate(-14deg);
}
.site-header .site-branding::after,
.site-header .header-image::after,
.wp-site-header .site-branding::after{
    /* Halo radial verde REAS (degradado suave) detrás del logo */
    content:"";
    position:absolute;
    inset:-30% -55% -30% -55%;
    background:radial-gradient(
        ellipse at center,
        rgba(74,157,110,.28) 0%,
        rgba(74,157,110,.16) 38%,
        rgba(255,255,255,0)  72%
    );
    filter:blur(9px);
    z-index:-1;
    pointer-events:none;
}
.site-header .site-branding > *,
.site-header .header-image > *,
.wp-site-header .site-branding > *{
    position:relative;
    z-index:1;
}

/* ─────────────────────────────────────────────────────────────
   BARRA LEGAL (footer)
   Aviso legal · Política de privacidad · Política de cookies
   ───────────────────────────────────────────────────────────── */
.reascyl-legal-bar{
    background:#2a2f24;
    color:#f5efe2;
    padding:14px 0;
    border-top:1px solid rgba(245,239,226,.08);
    font-family:var(--rc-body);
}
.reascyl-legal-bar__inner{
    max-width:1100px;
    margin:0 auto;
    padding:0 24px;
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:center;
    gap:6px 10px;
    font-size:.85rem;
    letter-spacing:.02em;
}
.reascyl-legal-bar__link{
    color:#f5efe2;
    text-decoration:none;
    padding:4px 8px;
    border-radius:6px;
    transition:background .15s,color .15s;
}
.reascyl-legal-bar__link:hover{
    background:rgba(74,157,110,.22);
    color:#fff;
    text-decoration:underline;
}
.reascyl-legal-bar__link span[aria-hidden]{
    margin-right:4px;
    filter:saturate(.7);
}
.reascyl-legal-bar__sep{
    color:rgba(245,239,226,.4);
    user-select:none;
}

/* Crédito del footer (Powered by ...) */
.rc-credit{
    color:var(--rc-green-bright);
    text-decoration:none;
    font-weight:500;
    border-bottom:1px dotted var(--rc-green-bright);
}
.rc-credit:hover{
    color:var(--rc-green);
    border-bottom-style:solid;
}
