/* Nicolau Page Overrides */

/* Corpo da página */
body {
  background-color: #e8f1f8; /* azul bem clarinho */
  background-image: none; /* remove o plaid do geral */
  color: #4a5d73; 
  line-height: 1.6;
}

/* Container principal */
#container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fdfdfd; /* quase branco */
  border: 3px solid #aac3e0;
  border-radius: 24px;
  padding: 20px 25px 30px 25px;
  box-shadow: 0 8px 24px rgba(74,93,115,0.15), 0 0 40px 5px rgba(170,195,224,0.3);
  outline: none; /* remove outline do geral */
}

/* Header */
header, #headerArea, #header {
  display: none; /* escondemos header genérico */
}

nav {
  text-align: center;
  background-color: #d7e6f5;
  border: 2px solid #aac3e0;
  border-radius: 12px;
  padding: 8px 0;
  margin-bottom: 20px;
}

nav a {
  color: #3a4a5a;
  font-weight: bold;
  font-size: 1rem;
}

nav a:hover {
  color: #5577a0;
  text-decoration: underline;
}

/* Título da página */
main h1 {
  text-align: center;
  font-size: 2.8rem;
  color: #5577a0;
  text-shadow: 0 0 8px rgba(170,195,224,0.5);
  margin-bottom: 24px;
}

/* Seções */
main section {
  margin-bottom: 24px;
}

main section h2 {
  font-size: 1.6rem;
  color: #7fa8c9;
  margin-bottom: 12px;
  text-align: center;
  text-shadow: 0 0 4px rgba(170,195,224,0.3);
}

/* Boxes especiais para o altar do Nicolau */
.box {
  background: linear-gradient(135deg, #f4f9fc, #dceaf3); 
  border: 2px solid #aac3e0;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(74,93,115,0.1), inset 0 0 8px rgba(220,234,243,0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(74,93,115,0.2), inset 0 0 12px rgba(220,234,243,0.6);
}

/* Galeria de fotos */
.foto-galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.foto-galeria img {
  max-width: 240px;
  border-radius: 12px;
  border: 2px solid #aac3e0;
  box-shadow: 2px 2px 0 rgba(170,195,224,0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.foto-galeria img:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 12px rgba(170,195,224,0.5);
}

/* Sidebars */
aside {
  margin-bottom: 20px;
}

#leftSidebar, #rightSidebar {
  background: #f7fbfe;
  border: 2px solid #aac3e0;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(74,93,115,0.1);
}

/* Tooltips do Nicolau */
.cat-tooltip::after {
  content: "Click Nicolau to visit his page 🐾";
  background-color: #fff;
  color: #3a4a5a;
  padding: 5px 8px;
  border-radius: 8px;
  border: 1px solid #aac3e0;
  font-size: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 2px 2px 0 rgba(170,195,224,0.3);
}

.cat-tooltip:hover::after {
  opacity: 1;
}

/* Footer */
footer {
  text-align: center;
  background-color: #f4f9fc;
  border-top: 2px solid #aac3e0;
  border-radius: 12px;
  padding: 10px;
  font-style: italic;
  color: #3a4a5a;
}

/* Mobile */
@media (max-width: 600px) {
  .foto-galeria {
    flex-direction: column;
    align-items: center;
  }

  #container {
    padding: 16px 18px;
  }

  main h1 {
    font-size: 2.2rem;
  }
}