/*
Theme Name: Serigraf
Theme URI: https://ninjacoder.com.br/modelos/serigraf
Author: NinjaCoder.com.br
Author URI: https://ninjacoder.com.br
Description: Tema WordPress premium artístico para estamparias e camisetas autorais.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: serigraf
*/

/* CSS Variables */
:root {
  --primary: #F2F0EB;
  --highlight: #E63946;
  --support: #1D1D1D;
  --text: #2A2A2A;
  --border: #1D1D1D;
  --white: #FFFFFF;
  --font-title: 'Abril Fatface', serif;
  --font-mono: 'IBM Plex Mono', monospace;
  --transition: all 0.25s steps(4); /* Risograph feel style */
  --container-max: 1200px;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-mono);
  background-color: var(--primary);
  color: var(--support);
  line-height: 1.6;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Header & Nav */
.header {
  background-color: var(--primary);
  border-bottom: 3px solid var(--border);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--highlight);
  letter-spacing: -1px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-link:hover, .nav-link.active {
  color: var(--highlight);
  background-color: var(--support);
  color: var(--primary);
  padding: 3px 8px;
}

.btn-stamp {
  border: 2px solid var(--border);
  background-color: var(--highlight);
  color: var(--white);
  padding: 8px 18px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 12px;
}

.btn-stamp:hover {
  background-color: var(--support);
  color: var(--primary);
}

/* Footer */
.footer {
  background-color: var(--support);
  color: var(--primary);
  padding: 80px 0 40px 0;
  border-top: 3px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 32px;
  color: var(--highlight);
  margin-bottom: 15px;
}

.footer-title {
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(242, 240, 235, 0.2);
  padding-bottom: 8px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--highlight);
}

.footer-bottom {
  border-top: 1px solid rgba(242, 240, 235, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 12px;
}

.developer-link {
  color: var(--highlight);
  font-weight: bold;
}

/* Hero Section */
.hero {
  margin-top: 66px;
  padding: 100px 0;
  text-align: center;
  border-bottom: 3px solid var(--border);
  background-color: #EDECE6;
}

.hero-headline {
  font-family: var(--font-title);
  font-size: 72px;
  line-height: 1.0;
  color: var(--support);
  margin-bottom: 25px;
  text-transform: uppercase;
}

.hero-headline span {
  color: var(--highlight);
}

/* Poster Grid Layout (6 Tees as Art Gallery) */
.poster-grid-section {
  padding: 100px 0;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.poster-card {
  border: 2px solid var(--border);
  background-color: var(--white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.poster-card::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 16px;
  background-color: rgba(230, 57, 70, 0.3); /* simulated tape/risograph print tag */
  border: 1px dashed var(--border);
}

.poster-img-box {
  background-color: var(--primary);
  border: 1px solid var(--border);
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.poster-img {
  max-height: 100%;
  object-fit: contain;
}

.poster-title {
  font-family: var(--font-title);
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 1.1;
}

.poster-artist {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--highlight);
  font-weight: bold;
}

.poster-price {
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

/* Artists Profile section */
.artists-section {
  padding: 100px 0;
  background-color: var(--support);
  color: var(--primary);
  border-top: 3px solid var(--border);
}

.artists-section-title {
  font-family: var(--font-title);
  font-size: 42px;
  text-align: center;
  margin-bottom: 60px;
  color: var(--highlight);
}

.artists-profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.artist-profile-card {
  text-align: center;
  border: 1px solid rgba(242, 240, 235, 0.2);
  padding: 30px;
}

.artist-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px auto;
  border: 2px solid var(--highlight);
}

/* Personalize page customizer */
.personalizer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  margin-top: 100px;
  margin-bottom: 80px;
}

.custom-preview-box {
  border: 2px solid var(--border);
  background-color: var(--white);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
}

.custom-canvas {
  width: 100%;
  height: 100%;
  max-height: 350px;
  object-fit: contain;
}

/* Product Detail */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  margin-top: 100px;
  margin-bottom: 80px;
}

.product-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.product-img-item {
  border: 2px solid var(--border);
  padding: 10px;
  background-color: var(--white);
}

.artist-bio-box {
  background-color: #EDECE6;
  border: 1px solid var(--border);
  padding: 20px;
  margin-top: 30px;
  display: flex;
  gap: 15px;
  align-items: center;
}

/* B2B contact form */
.form-b2b {
  background-color: var(--white);
  border: 2px solid var(--border);
  padding: 40px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 10px;
  border: 2px solid var(--border);
  background-color: var(--primary);
  font-family: var(--font-mono);
}

.form-control:focus {
  outline: none;
  border-color: var(--highlight);
}

@media(max-width: 992px) {
  .poster-grid, .artists-profiles-grid, .personalizer-layout, .product-detail-layout, .product-images {
    grid-template-columns: 1fr;
  }
  .hero-headline {
    font-size: 42px;
  }
}
