/*
Theme Name: GeneratePress Child
Theme URI: https://generatepress.com
Description: Tema hijo personalizado para Espresso
Author: Sebastián Fabara
Template: generatepress
Version: 1.0
*/

/* Puedes agregar CSS personalizado aquí */
/* === Espresso Header Scroll Effect === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: #ffffff;
  transition: background 0.4s ease, box-shadow 0.3s ease;
  box-shadow: none;
}

.site-header.scrolled {
  background: #00291C; /* Verde Espresso */
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.site-header .inside-header a {
  color: #00291C;
  transition: color 0.3s ease;
}

.site-header.scrolled .inside-header a {
  color: #ffffff;
}

/* Mantiene el logo siempre verde */
.site-header .site-logo a,
.site-header .main-title a {
  color: #00291C !important;
}

/* Compensa la altura del header fijo */
body {
  padding-top: 90px;
}

/* Scroll suave global */
html {
  scroll-behavior: smooth;
}
/* === Tipografía global Espresso === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body,
button,
input,
select,
textarea {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #00552C;
  font-size: 18px;
  line-height: 1.6;
}

/* Encabezados */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  color: #00291C;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 52px; }
h2 { font-size: 36px; }
h3 { font-size: 26px; }

/* Pequeños textos o meta */
small, .meta {
  font-size: 15px;
  color: #a9b1aa;
}