/* css styles */
body {
    background-color: #FCFBF4;
    line-height: 1.8;
}

p {
    text-align: justify;
    hyphens: auto;
}

/* Custom Callout Color to match Némesis Purple */
.callout-important {
    border-left-color: #000000 !important;
}

.callout-important .callout-header {
    background-color: #f0e6f0 !important;
    /* A light purple background */
    color: #000000 !important;
}

/* --- Container for Custom Layout --- */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px 20px;
}

/* --- Callout: NOTE (Teal from Palette) --- */
.callout-note {
    border-left-color: #009b86 !important;
}

.callout-note .callout-header {
    background-color: #e0f7fa !important;
    /* Very light teal */
    color: #00796b !important;
    /* Slightly darker teal for text readability */
}

.callout-note .callout-icon {
    color: #009b86 !important;
    /* Icon matches border */
}

/* --- Callout: TIP (Orange from Palette) --- */
.callout-tip {
    border-left-color: #f36f10 !important;
}

.callout-tip .callout-header {
    background-color: #fff3e0 !important;
    /* Very light orange */
    color: #e65100 !important;
    /* Dark orange for text */
}

.callout-tip .callout-icon {
    color: #f36f10 !important;
}


/* --- Team Page Styles (Mejorado para items únicos) --- */

.team-grid {
    display: flex;
    /* FLEX es mejor para centrar elementos impares */
    flex-wrap: wrap;
    /* Permite que bajen a la siguiente línea si no caben */
    justify-content: center;
    /* LA CLAVE: Centra todo horizontalmente */
    gap: 4rem;
    /* Espacio generoso entre tarjetas */
    margin-bottom: 4rem;
    align-items: flex-start;
    /* Alinea al inicio verticalmente */
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* Control de ancho para que no se estiren cuando están solos */
    width: 100%;
    max-width: 350px;
    /* <-- ESTO SOLUCIONA TU PROBLEMA */
}

.team-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #000000;
    /* Color Némesis */
    margin-bottom: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: white;
    /* Por si la imagen tiene transparencia */
}

.member-name {
    font-family: "Merriweather", serif;
    font-weight: bold;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 0.5rem;
}

.member-role {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-bottom: 0.5rem;
}

.member-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
    /* Un gris oscuro para mejor lectura que el negro puro */
}

/* --- Pagination Styling (Némesis Brand) --- */

/* 1. Botón Activo (El número de la página actual) */
.pagination .page-item.active .page-link {
    background-color: #000000 !important;
    /* Tu morado oscuro */
    border-color: #000000 !important;
    color: #FFFFBC !important;
    /* Tu color crema para el número */
}

/* 2. Botones Inactivos (Los otros números) */
.pagination .page-link {
    color: #000000 !important;
    /* Texto morado */
    background-color: transparent !important;
    border: 1px solid #e0e0e0;
    /* Un borde gris muy suave */
}

/* 3. Efecto Hover (Cuando pasas el mouse por encima) */
.pagination .page-link:hover {
    background-color: #f0e6f0 !important;
    /* Un morado muy pálido */
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* 4. Ajuste para dispositivos móviles (opcional) */
.page-item.disabled .page-link {
    color: #999 !important;
    background-color: transparent !important;
}

/* --- Estilo del Título en la Barra de Navegación --- */

.navbar-title {
    text-transform: none !important;
    /* Adiós a las mayúsculas forzadas */
    font-family: "EB Garamond", serif !important;
    /* Tu tipografía oficial */
    font-weight: 400;
    /* Negrita para que destaque */
    font-size: 1.3rem;
    /* Tamaño ideal */
    color: #ffffffff !important;
    /* Tu color Crema (Némesis) */
    letter-spacing: 0.5px;
    /* Un poquito de aire entre letras */
    vertical-align: middle;
    /* Alineación perfecta con el logo */
}


.navbar-brand img {
    max-height: 40px !important;
    /* Ajusta este número a tu gusto (defecto es ~35px) */
    width: auto;
    /* Mantiene la proporción para que no se deforme */
    margin-right: 0.12rem;
    /* Un poco más de espacio entre logo y texto */
}

/* =========================================
   HERO SECTION & HOMEPAGE FIXES (V3)
   ========================================= */

/* =========================================
   HERO SECTION & HOMEPAGE FIXES (V3)
   ========================================= */

/* NOTE: Layout overrides (padding removal, hiding title block) 
   have been moved to home.css to avoid affecting other pages. */


/* 2. HERO BANNER */
.hero-banner {
    position: relative;
    background-image: linear-gradient(rgba(248, 5, 5, 0.28), rgba(255, 0, 0, 0.36)), url("images/banner_huemul.jpg");
    background-size: cover;
    background-position: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    margin-top: -10px;
    /* Slight negative margin just to be safe with nav */
    padding: 60px 20px;
}

/* 3. TEXTO */
.hero-content {
    max-width: 900px;
    z-index: 10;
}

.hero-content h1 {
    font-family: "Merriweather", serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    color: #ffffffff !important;
    line-height: 1.1;
    margin-bottom: 1rem;
    margin-top: 0;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

.hero-content h3 {
    font-family: "Source Sans Pro", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 300;
    color: #fdfdfdff !important;
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

/* =========================================
   BOTONES NATIVOS (SQUARED / JOURNAL STYLE)
   ========================================= */

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

/* Estilo Base */
.btn-lg {
    padding: 12px 30px;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}

/* Botón Primario */
.btn-nemesis-primary {
    background-color: #ffffffff !important;
    border: 2px solid #ffffffff !important;
    color: #000000 !important;
    transition: all 0.2s ease;
}

.btn-nemesis-primary:hover {
    background-color: #fff !important;
    border-color: #fff !important;
    transform: translateY(-2px);
    color: #000000 !important;
}

/* Botón Secundario */
.btn-nemesis-outline {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid #ffffffff !important;
    color: #fdfdfdff !important;
    transition: all 0.2s ease;
}

.letra-cancion {
  text-align: center;
  color: #cc0000;
  font-weight: 600;
  margin: 1.5rem 0;
  font-style: italic;
}

.manifiesto-wrapper {
  max-width: 720px;
  margin: 4rem auto 6rem auto;
  text-align: center;
}

.manifiesto-logo img {
  display: block;
  max-width: 140px;
  margin: 0 auto 2rem auto;
}


.manifiesto-title {
  font-size: 2.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.manifiesto-text {
  list-style-position: inside;
  padding: 0;
  margin: 0 auto;
  text-align: left;
  font-size: 1.05rem;
  line-height: 1.9;
}

.manifiesto-text li {
  margin-bottom: 1.6rem;
}

/* HERO LAYOUT */
.home-hero {
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 4rem auto 6rem auto;
  padding: 0 1rem;
}

/* LEFT COLUMN */
.hero-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-logo {
  max-width: 160px;
  margin-bottom: 2rem;
}

.hero-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  color: #555;
}

/* SOCIALS */
.hero-socials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-socials a {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: inherit;
}

.hero-socials a:hover {
  text-decoration: underline;
}

/* VERTICAL DIVIDER */
.hero-divider {
  background-color: rgba(0,0,0,0.15);
  width: 1px;
}

/* RIGHT COLUMN */
.hero-right {
  padding-right: 1rem;
}

.manifiesto-text {
  list-style-position: inside;
  padding: 0;
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.9;
}

.manifiesto-text li {
  margin-bottom: 1.6rem;
}

/* BOTTOM LINE */
.manifiesto-bottom-line {
  margin-top: 3rem;
  width: 120px;
  height: 1px;
  background-color: rgba(0,0,0,0.25);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .home-hero {
    grid-template-columns: 1fr;
  }

  .hero-divider {
    display: none;
  }

  .hero-left {
    margin-bottom: 3rem;
  }
}

.proyecto-texto {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 680px;
}

.proyecto-texto p {
  margin-bottom: 1.6rem;
}


🔑 **Anclas correctas según tu documento**:
- `#creemos` → Manifiesto
- `#somos` → ¿Quiénes somos?
- `#novedades` → Escritos

---

## 3️⃣ CSS del banner (home.css)

Agrega esto a tu `home.css` (o `styles.css` si prefieres centralizar):

```css
/* ===== HOME BANNER ===== */

.home-banner {
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-overlay {
  width: 100%;
  height: 100%;
  min-height: 85vh;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 8%;
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.45),
    rgba(0,0,0,0.1),
    rgba(0,0,0,0)
  );
}

/* RIGHT COLUMN */
.banner-right {
  display: flex;
  align-items: center;
}

/* BUTTON STACK */
.banner-nav {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

/* BUTTON STYLE */
.banner-btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.7);
  text-align: center;
  min-width: 220px;
  transition: all 0.25s ease;
  background: rgba(0,0,0,0.25);
}

.banner-btn:hover {
  background: rgba(255,255,255,0.9);
  color: #000;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .banner-overlay {
    justify-content: center;
    padding-right: 0;
  }

  .banner-btn {
    min-width: 200px;
  }
}

/* ==============================
   HOME SECTION (NOT HERO)
   ============================== */

.home-section {
  display: grid;
  grid-template-columns: 280px 1px 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 3rem auto 4rem auto;
  padding: 0;
}

/* Divider */
.home-section .hero-divider {
  background-color: rgba(0,0,0,0.15);
  width: 1px;
}

/* Responsive */
@media (max-width: 900px) {
  .home-section {
    grid-template-columns: 1fr;
  }

  .home-section .hero-divider {
    display: none;
  }
}
