/*
Theme Name: DVK Artwork
Author: Seu Nome
Version: 1.0
*/

body {
  font-family: Arial, sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
  margin: 0;
}

/* CONTAINER (estilo Bootstrap) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(16px, 4vw, 32px);
}

/* Grid na área principal */
main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

/* Card de cada álbum */
article {
  background: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Pequeno hover (opcional, mas dá vida) */
article:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

/* Imagem responsiva */
article img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
  border-radius: 4px;
}

/* Espaçamento interno */
article h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

article p {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Remove o <hr> visualmente (já que temos grid) */
main hr {
  display: none;
}

/* LOGO */
.custom-logo-link {
  display: block;
  max-width: 50%;
}

.custom-logo {
  width: 100%;
  height: auto;
  display: block;
}

header {
  text-align: center;
}

.custom-logo-link {
  margin: 0 auto 20px;
}

/* Logo maior no mobile */
@media (max-width: 768px) {
  .custom-logo-link {
    max-width: 80%;
  }
}

/* Footer */
.site-footer {
  text-align: center;
  margin-top: 40px;
  padding-bottom: 30px;
}

/* Linha separadora */
.site-footer hr {
  border: none;
  border-top: 1px solid #333;
  margin-bottom: 20px;
}

/* Texto do copyright */
.site-footer p {
  font-size: 0.9rem;
  color: #aaa;
}