/* ---------------------------- */
/* CSS para o arquivo base.html */
/* ---------------------------- */

body {
      margin: 0;
      font-family: 'Crimson Pro', serif;
      background-color: #f9f6f3;
      color: #3a2c1e;
      line-height: 1.6;
    }
    header {
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      padding: 2rem 1rem;
      text-align: center;
    }
    h1 {
      font-family: 'Cardo', serif;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    .subtitulo {
      font-size: 1.2rem;
      color: #7a5e40;
    }
    main {
      max-width: 800px;
      margin: 2rem auto;
      padding: 1rem;
    }
    .imagem-santa-cruz {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .frase-devocional {
      font-style: italic;
      margin: 2rem 0;
      font-size: 1.4rem;
      text-align: center;
      color: #5e4b38;
    }
    footer {
      margin-top: 3rem;
      text-align: center;
      font-size: 0.9rem;
      color: #999;
      padding-bottom: 1rem;
    }
    footer p {
      margin: 0;
      line-height: 1.4;
    }
    nav {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }
    nav a {
      text-decoration: none;
      color: #5e4b38;
      font-weight: bold;
      transition: color 0.3s;
    }
    nav a:hover {
      color: #8a6c4b;
    }

    /* -------------------------------------------- */
    /* CSS para a tabela do arquivo calendario.html */
    /* -------------------------------------------- */

    .liturgia-table-container {
    background-color: #f4f4f4;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-size: 16px;
  }

  .liturgia-table-container h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }

  .liturgia-table {
    width: 100%;
    border-collapse: collapse;
    background-color: white;
  }

  .liturgia-table th,
  .liturgia-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
  }

  .liturgia-table th {
    background-color: #eee;
  }

  .roxo { background-color: #dcd0ff; }
  .branco { background-color: #ffffff; }
  .vermelho { background-color: #ffd6d6; }
  .verde { background-color: #d6ffd6; }

  /* ---------------------------------------------------------- */
  /* CSS para remover o estilo de link padrão do título do site */
  /* ---------------------------------------------------------- */

  .logo-link {
  color: inherit;         /* Usa a cor do h1 */
  text-decoration: none;  /* Remove sublinhado */
}

/* ----------------------------------------------- */
/* CSS para adicionar o email no cabeçalho do site */
/* ----------------------------------------------- */

header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header-content h1 {
  margin: 0;
  flex-shrink: 0; /* Evita que o título encolha */
}

nav {
  flex-grow: 1; /* Faz o menu ocupar o espaço do meio */
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.header-email {
  font-size: 1.2rem;
  color: #5e4b38;
  white-space: nowrap;
}

.header-email a {
  color: #5e4b38;
  text-decoration: none;
}

.header-email a:hover {
  text-decoration: underline;
}

/* -------------------------------- */
/* CSS para a aba de vídeos e fotos */
/* -------------------------------- */

h2 {
  border-bottom: 2px solid #ccc;
  padding-bottom: 5px;
}

.videos, .fotos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.video-item, .foto-item {
  width: 300px;
  text-align: center;
}

.video-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.foto-item img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}

/* --------------------------------------------------- */
/* Ajustes finais - Estilo da barra de navegação (nav) */
/* --------------------------------------------------- */

/*
.navbar .nav-link {
  font-size: 1.5rem; /* ou 18px, conforme preferir
  font-weight: 500; /* ou bold
  font-family: 'Cardo', serif; /* se quiser usar a mesma do título
}
*/

.navbar {
  background: linear-gradient(to right, #b12a2a, #3a70a1); /* vermelho sangue → azul água */
  border-bottom: 2px solid #ddd;
}

.navbar .nav-link {
  color: #fff; /* branco para contraste */
  font-family: 'Cardo', serif;
  font-size: 1.3rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* leve relevo */
}

.navbar .nav-link:hover {
  color: #f8f0e3;
}

/* ------------------------------------------ */
/* Ajustes finais - Estilo do rodapé (footer) */
/* ------------------------------------------ */

footer {
  background: linear-gradient(to right, #621414, #123a5a); /* tom escuro do sangue e água */
  color: #f8f0e3;
  padding: 2rem 1rem;
  font-family: 'Crimson Pro', serif;
  font-size: 0.95rem;
  border-top: 2px solid #ddd;
}

footer p {
  margin: 0;
  line-height: 1.5;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------- */
/* CSS para remover heranças do footer da página */
/* --------------------------------------------- */

.citacao-footer {
  all: unset; /* remove heranças do rodapé da página */
  display: block;
  text-align: center;
  font-style: italic;
  font-size: 18px;
  color: #5e4b38;
  margin-top: 0.5rem;
}



.menu-text {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}



.img-pequena {
  max-width: 400px; /* ou outra largura fixa que quiser */
  width: 100%; /* para responsividade */
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto; /* para centralizar */
}

.imagem-legenda {
  max-width: 600px;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

figcaption {
  text-align: center;
  font-size: 16px;
  color: #555;
  margin-top: 8px;
  font-style: italic;
}

