/*
Theme Name: CUCC Theme
Theme URI: https://cucc-uanl.org
Author: CUCC UANL
Description: Tema personalizado del Centro Universitario Contra el Cáncer UANL
Version: 1.0
*/

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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
}

/* ===== HEADER ===== */
.site-header {
    background: #fff;
    padding: 15px 40px;
    border-bottom: 1px solid #eee;
}

.header-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-bottom: 15px;
}

.header-logos img {
    height: 80px;
    object-fit: contain;
}

/* ===== NAVEGACIÓN ===== */
.main-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.main-nav a {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
    background-color: #1a3a6b;
    color: #fff;
    border-color: #1a3a6b;
}

/* ===== HERO / SLIDER ===== */
.hero-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-caption {
    position: absolute;
    bottom: 80px;
    left: 0;
    right: 0;
    text-align: center;
}

.hero-caption span {
    background-color: #1a3a6b;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    padding: 10px 30px;
    display: inline-block;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: #1a3a6b;
    color: #fff;
    padding: 30px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-libac img {
    height: 60px;
}

.footer-btn {
    background-color: #4a90d9;
    color: #fff;
    padding: 10px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.footer-contact {
    font-size: 13px;
    line-height: 1.8;
    text-align: right;
}

/* ===== CONTENIDO GENERAL ===== */
.page-content {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 30px;
}

/* Global content area */
.page-content { max-width:900px; margin:60px auto; padding:0 20px; color:#333; font-size:15px; line-height:1.8; }
.page-content h1 { color:#1a3a6b; margin-bottom:14px; font-size:26px; }
.page-content img { max-width:100%; height:auto; border-radius:4px; }

/* ==== Espaciado y presentación para las páginas (page-content) ==== */
.page-content {
  max-width: 980px;
  margin: 80px auto;              /* separa la caja del header (arriba) y centra */
  padding: 0 24px 80px;           /* padding interno: izquierda/derecha y abajo */
  color: #333;
  font-size: 15px;
  line-height: 1.9;
  text-align: justify;
}

/* Títulos: más separación y color */
.page-content h1,
.page-content .entry-title {
  color: #1a3a6b;
  font-size: 26px;
  margin: 0 0 22px;               /* espacio bajo el título */
  font-weight: 700;
}

/* Párrafos: espacio entre párrafos */
.page-content p {
  margin: 0 0 18px;
}

/* Listas: mejor separación y sangría */
.page-content ul,
.page-content ol {
  margin: 12px 0 20px 22px;
  padding-left: 0;
}
.page-content li {
  margin-bottom: 8px;
}

/* Si usas bloques (Gutenberg) envueltos en .wp-block-group */
.page-content .wp-block-group {
  margin-bottom: 18px;
}

/* Evita que el ADMIN BAR solape el header cuando estás logueado */
body.admin-bar .site-header {
  /* si tu header NO está fijado, normalmente no es necesario.
     esto empuja el header hacia abajo cuando existe admin-bar */
  position: relative;
  top: 32px;
  z-index: 1001;
}
/* En pantallas pequeñas el admin bar es más alto */
@media (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}

/* Ajustes responsive */
@media (max-width: 880px) {
  .page-content { margin: 60px 16px; padding-bottom: 60px; }
  .page-content h1 { font-size: 22px; }
}
