/*
Theme Name: Contratantes AgroPlay Music
Theme URI: https://agroplaymusic.com.br
Author: Willy Fernandes
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/
:root{
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
  --maxw: 1100px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #ffffff;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 10;
}

.entry-content {
    color: #000 !important;
}
/* Header */
:root{
  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 2rem;
  --space-4: 4rem;
  --maxw: 1100px;
}

/* Container geral */
.header{
  margin: 0 auto var(--space-4);
  max-width: var(--maxw);
  padding: 0 var(--space-2);

  display: flex;
  flex-wrap: wrap;      /* permite quebrar em múltiplas linhas */
  gap: var(--space-2);  /* espaço entre os blocos */
  align-items: center;
  justify-content: space-between;
  text-align: center;   /* default mobile: centralizado */
}

/* Remover margens padrão */
.header h1,
.header p{
  margin: 0;
}

/* Blocos internos (ex.: .title e .subtitle) ocupam 100% no mobile */
.header > *{
  flex: 1 1 100%;
}

/* Imagem responsiva */
.title img{
  display: block;
  max-width: 70%;
  height: auto;
  width: min(70%, 320px);
  margin: 0;
}

/* Tipografia responsiva com clamp */
.header h1{
text-align: left;
}

.subtitle p{
  font-size: clamp(.8rem, 2vw, 0.8rem);
  color: #fff;
  max-width: 60ch;        /* melhor medida pra leitura */
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;     /* mobile: centralizado */
}

/* ====== Breakpoints ====== */

/* >= 600px: melhora layout em duas colunas quando couber */
@media (min-width: 600px){
  .header{
    text-align: left;
  }
  .header > *{
    flex: 1 1 45%;  /* duas colunas flexíveis */
  }
  .subtitle p{
    text-align: right;    /* volta seu alinhamento original se quiser */
    margin-left: auto;    /* mantém largura máxima e alinha ao lado */
  }
  .title img {
    margin: 0 auto;
  }
}

/* >= 900px: espaçamento mais folgado e imagem menos “apertada” */
@media (min-width: 900px){
  .header{
    gap: var(--space-3);
    margin-bottom: var(--space-4);
  }
  .title img{
    width: 50%;
  }
}

/* Artists Grid */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.artist-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #27272a;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.05);
}

.artist-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
}

.artist-name {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.05em;
    color: #ffffff;
    z-index: 2;
    text-transform: uppercase;
}

.artist-hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(34, 197, 94, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-card:hover .artist-hover-overlay {
    opacity: 1;
}

/* Footer */
.footer {
    text-align: center;
    padding: 2rem 0;
}


.contact-icon {
    margin-right: .5rem;
    font-size: 1.2rem;
    color: #25D366; /* cor do ícone do WhatsApp */
}

.contact-item a {
    color: inherit;
    text-decoration: none;
}


.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
      color: #fff;
}

.contact-item a {
    color: #fff; text-decoration: none
}

.contact-icon {
    font-size: 1.25rem;
}

/* Responsive */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .artists-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }
}

.banner-main-image {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin:0 auto 2rem;
}

/* Artist Page Styles */
.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #a1a1aa;
    text-decoration: none;
    font-size: 1rem;
    margin-bottom: 2rem;
    transition: color 0.2s;
}

.back-button:hover {
    color: #ffffff;
}

.artist-header {
    text-align: center;
    margin-bottom: 3rem;
}

.artist-main-image {
    width: 100%;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin:0 auto 2rem;
}

.artist-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Download Categories */
.download-categories {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.category {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid #27272a;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 1rem;
    text-align: center;
}

.category-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-button {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #22c55e;
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.download-button:hover {
    background: #16a34a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(34, 197, 94, 0.3);
}

.download-icon::before {
    content: "⬇️";
    font-size: 1.125rem;
}

.btn-logout {
  display: inline-block;
  padding: 10px 20px;
  background: #e63946;
  color: #fff;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn-logout:hover {
  background: #b71c1c;
}
