/* HOME */
body {
  cursor: url('cursorpog.cur'), auto;
  background-image: url("back1.jpg"); /* Substitua pela sua imagem depois */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'VT323', monospace;
  color: white;
  margin: 0;
  padding: 0;
}

/* Menu lateral */
.sidebar {
  position: fixed;
  top: 80px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px; /* aumentei um pouco o espaço */
  z-index: 1000;
}

/* Ícones (gifs/botões) do menu */
.sidebar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border: none;
  border-radius: 0;
  transition: transform 0.3s;
}

.sidebar img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 0 black) drop-shadow(2px 0 0 black) drop-shadow(-2px 0 0 black)
          drop-shadow(0 2px 0 black) drop-shadow(0 -2px 0 black);
}

/* Gifs decorativos nos cantos */
.gif {
  position: fixed;
  width: 60px;
  z-index: 999;
}

.top-left {
  top: 10px;
  left: 10px;
}

.top-right {
  top: 10px;
  right: 10px;
}

.bottom-left {
  bottom: 10px;
  left: 10px;
}

.bottom-right {
  bottom: 10px;
  right: 10px;
}

.quote-box {
  background-color: black;
  border: 2px solid hotpink;
  padding: 20px 0;
  max-width: 500px;
  margin: 120px auto 0 auto;
  text-align: left;
  position: relative;
}


.quote-box h2 {
  color: hotpink;
  text-transform: uppercase;
  font-size: 1.4em;
  letter-spacing: 1px;
  margin: 0 0 10px 0;
  padding: 0 20px;
  border-bottom: 2px solid hotpink;
  box-sizing: border-box;
}


.quote-box p {
  color: hotpink;
  font-size: 1.2em;
  font-family: 'VT323', monospace;
  margin: 10px 0 10px 0;
  padding: 0 20px 10px 20px;
  border-bottom: 1px solid hotpink;
  box-sizing: border-box;
}


.quote-box p:last-child {
  border-bottom: none;
  padding-bottom: 0;
}


.header-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.header-box .main-logo {
  max-width: 800px;
  height: auto;
}


.welcome-text {
  text-align: center;
  margin-top: 0px;
}

.welcome-text p {
  margin: 5px 0;
}

/* ----- PHOTOS ----- */
.photos-page {
  background-image: url("back.jpg"); /* troque se quiser outro fundo */
}

.photos-page .header-box p {
  color: white;
  font-size: 1.6em;
  text-align: center;
  margin-top: 100px;
}

.photo-grid {
  column-count: 3;
  column-gap: 20px;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.photo-grid img {
  width: 100%;
  margin-bottom: 20px;
  display: block;
  border: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); /* sombra leve */
  break-inside: avoid;
}
/* ----- GUESTBOOK ----- */
.guestbook-page {
  background-color: black; /* fundo preto da página */
  margin: 0;
  padding: 0;
}

.guestbook-container {
  max-width: 600px;
  margin: 120px auto 0 auto;
  padding: 20px;
  background-color: black;
  border: 2px solid #ad54d6; /* substituído hotpink */
  color: #ad54d6;
  font-family: 'VT323', monospace;
  text-align: center;
}

.guestbook-container h1 {
  font-size: 2em;
  margin-bottom: 10px;
  border-bottom: 2px solid #ad54d6; /* substituído hotpink */
  padding-bottom: 5px;
}

.guestbook-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.guestbook-container input,
.guestbook-container textarea {
  background: black;
  border: 1px solid #ad54d6; /* substituído hotpink */
  color: #ad54d6;
  font-family: 'VT323', monospace;
  padding: 10px;
  resize: vertical;
}

.guestbook-container button {
  background: #ad54d6; /* substituído hotpink */
  color: black;
  border: none;
  padding: 10px;
  font-family: 'VT323', monospace;
  cursor: pointer;
  font-size: 1.2em;
}

.guestbook-container button:hover {
  background: #c075e1; /* tom mais claro para hover */
}
/* ----JOURNAL----*/
/* Estilo para as páginas fixas no caderno (sem rolagem e altura total) */
.pagina {
  position: absolute;
  width: 46.5%;
  height: 86%;
  top: 8.8%;
  color: #5C4033;
  font-size: 16px;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 10px;
  box-sizing: border-box;
}

.pagina.esquerda {
  left: 6.2%;
}

.pagina.direita {
  right: 6.2%;
}

/* BOTÃO VOLTAR */
.back-home {
  position: fixed;
  top: 20px;
  left: 20px;
}

.back-home a {
  font-family: 'VT323', monospace;
  font-size: 1.4em;
  color: #000;
  background-color: transparent;
  padding: 6px 10px;
  text-decoration: none;
}

.back-home a:hover {
  text-decoration: underline;
}
/* ART PAGE */
.art-page {
  background-image: url('aquario.jpg');
  background-size: cover;
  background-position: center;
  font-family: Verdana, sans-serif;
  color: #ffff00;
}

/* Container geral */
.art-container {
  display: flex;
  justify-content: space-between;
  padding: 120px 30px;
  gap: 50px;
}

/* Lado esquerdo */
.art-side {
  width: 25%;
  background: #2e005f;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
  color: #ffff00;
  min-height: 90vh; /* mais longa */
}

.pixel-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 1em;
  margin-bottom: 20px;
  color: #ffff00;
}

.art-side p {
  font-size: 0.8em;
  color: #ffff00;
  margin-bottom: 20px;
}

.art-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.art-menu li {
  margin: 25px 0; /* mais distantes entre si */
}

.art-menu a {
  color: #ffff00;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 10px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.art-menu a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Galeria */
.art-gallery {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-left: 120px; /* agora bem mais para a direita */
  color: #ffff00;
}

.art-gallery h3 {
  grid-column: 1 / -1;
  font-size: 1.2em;
  margin: 30px 0 10px;
  color: #ffff00;
}

.art-gallery img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.art-gallery img:hover {
  transform: scale(1.05);
}

/* Botão voltar */
.back-home a {
  color: #000;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 5px 10px;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}

.back-home a:hover {
  background-color: #fff;
}