/*
Theme Name: Blocksy Child
Author: Simplia
Template: blocksy
Version: 1.0.0
*/

/* ========== IMPORTACIONS I VARIABLES ========== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --simplia-magenta: #E02984;
  --simplia-blue: #4F9DF7;
  --simplia-dark: #2D2D2D;
  --simplia-white: #FFFFFF;
  --simplia-glass: rgba(255,255,255,0.13);
  --simplia-shadow: 0 2px 32px 0 rgba(224, 41, 132, 0.13);
  --simplia-card-shadow: 0 6px 40px 0 rgba(224, 41, 132, 0.13);
  --section-gap-desktop: 72px;
  --section-gap-mobile: 48px;
}

/* ========== RESET & FONS GLOBAL ========== */
html, body {
  width: 100vw !important;
  min-height: 100vh !important;
  overflow-x: hidden !important;
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background: radial-gradient(ellipse at 50% 35%, #3a444e 0%, #222b33 55%, #181c20 100%) !important;
  color: var(--simplia-dark);
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  z-index: 0;
  left: 0; top: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  background: url('https://assets.codepen.io/1468070/noise.png') repeat;
  opacity: 0.13;
  mix-blend-mode: soft-light;
}
#neuro {
  position: fixed;
  top: 0; left: 0;
  width: 100vw !important; height: 100vh !important;
  min-width: 100vw !important;
  min-height: 100vh !important;
  max-width: 100vw !important;
  max-height: 100vh !important;
  pointer-events: none;
  opacity: .93;
  z-index: 0 !important;
  display: block !important;
}

/* FONS GLOBAL TRANSPARENT PER A TOTS ELS CONTENIDORS */
body, .ct-container, #main, .site-main, .content-area, .page, .main, #primary {
  background: transparent !important;
}

/* ========== HEADER & NAV UNIVERSAL ========== */
#header {
  background: var(--simplia-white);
  box-shadow: 0 2px 32px 0 rgba(224,41,132,0.04);
  border-bottom: 2.5px solid var(--simplia-magenta);
  padding: 1.7rem 0 0.6rem 0;
}
#logo {
  color: var(--simplia-magenta);
  font-weight: 800;
  letter-spacing: 0.03em;
  font-size: 2.1rem;
  text-decoration: none;
  margin-bottom: 0;
}
#logo img { height: 78px; margin-right: 0.5em; vertical-align: middle; }
#nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2.2em;
  justify-content: flex-end;
}
#nav li { display: inline; }
#nav a {
  color: var(--simplia-dark);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.18s;
}
#nav a:hover { color: var(--simplia-magenta); }

/* ========== ALTRES GLOBALS (NOMÉS globals! No components) ========== */
body.home h1.entry-title,
body.page h1.entry-title {
  display: none !important;
}