/*
Theme Name:   TodoArquitectura Child
Template:     generatepress
Version:      1.0.0
Description:  Child theme de GeneratePress para todoarquitectura.online
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500&family=Source+Serif+4:ital,wght@0,300;0,400;1,300&display=swap');

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --ocre:      #C8922A;
  --ocre-light:#e8b45a;
  --negro:     #1a1a18;
  --gris:      #6b6b68;
  --gris-claro:#f0ede8;
  --blanco:    #fafaf7;
  --font-titulo: 'Playfair Display', Georgia, serif;
  --font-texto:  'Source Serif 4', Georgia, serif;
}

/* ─── Reset base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--blanco);
  color: var(--negro);
  font-family: var(--font-texto);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

/* ─── Ocultar elementos de GeneratePress que no usamos ─── */
.site-header,
.main-navigation,
.site-footer,
.entry-header,
.breadcrumb-trail,
.page-header { display: none !important; }

/* ─── Layout principal ──────────────────────────────────── */
.site-content,
.content-area,
.site-main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; }

.entry-content { padding: 0 !important; margin: 0 !important; }
.entry-content > * { max-width: 100% !important; }

/* ─── Hero ──────────────────────────────────────────────── */
.ta-hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
  background: var(--blanco);
}

.ta-pajaros {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.18;
}

.ta-linea-ocre {
  width: 48px;
  height: 3px;
  background: var(--ocre);
  margin: 0 auto 2.5rem;
}

.ta-hero h1 {
  font-family: var(--font-titulo);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--negro);
  margin-bottom: 1.5rem;
}

.ta-hero h1 span {
  color: var(--ocre);
}

.ta-hero p.subtitulo {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--gris);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.ta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 2rem;
  border: 1.5px solid var(--ocre);
  color: var(--ocre);
  font-family: var(--font-texto);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.ta-btn:hover {
  background: var(--ocre);
  color: var(--blanco);
}

.ta-btn svg { width: 16px; height: 16px; }

/* ─── Separador ─────────────────────────────────────────── */
.ta-separador {
  width: 100%;
  border: none;
  border-top: 1px solid #d8d4cd;
  margin: 0;
}

/* ─── Sección sobre el canal ────────────────────────────── */
.ta-sobre {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
}

.ta-sobre h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--negro);
}

.ta-sobre p {
  color: var(--gris);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}

/* ─── Sección Kumu ──────────────────────────────────────── */
.ta-kumu {
  background: var(--gris-claro);
  padding: 6rem 2rem;
  text-align: center;
}

.ta-kumu-inner {
  max-width: 900px;
  margin: 0 auto;
}

.ta-kumu h2 {
  font-family: var(--font-titulo);
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--negro);
}

.ta-kumu p {
  color: var(--gris);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

/* Placeholder Kumu — sustituir por <iframe> cuando esté listo */
.ta-kumu-placeholder {
  width: 100%;
  height: 480px;
  border: 1.5px dashed #b8b4ad;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8b4ad;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── Footer mínimo ─────────────────────────────────────── */
.ta-footer {
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #aaa9a6;
  border-top: 1px solid #d8d4cd;
}

/* ─── Animación entrada ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ta-hero > * {
  animation: fadeUp 0.8s ease both;
}
.ta-linea-ocre  { animation-delay: 0.1s; }
.ta-hero h1     { animation-delay: 0.25s; }
.ta-hero p      { animation-delay: 0.4s; }
.ta-btn         { animation-delay: 0.55s; }

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
  .ta-hero { padding: 3rem 1.5rem; }
  .ta-sobre, .ta-kumu { padding: 4rem 1.5rem; }
}
css/* Eliminar vídeo destacado del footer de GP */
.wp-block-cover,
.wp-block-video,
.entry-content video,
.site-footer video,
.generate-footer video { display: none !important; }