/*
Theme Name: Abnoba
Author: Sebás
Version: 1.0
*/

body {
  margin: 0;
  background: #fff;
  color: #111;
  font-family: Georgia, serif;
}

.art-page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px;
}

.hero {
  text-align: center;
  margin-bottom: 300px;
}

.logo {
  max-width: 40px;
  height: auto;
  margin-bottom: 250px;
}

.hero h1 {
  font-size: clamp(18px, 6vw, 24px);
  font-weight: 400;
  margin: 0;
}

.artworks {
  display: flex;
  flex-direction: column;
  gap: 300px;
}

/* Bilder */
.artwork-landscape {
  width: 380px;
  max-width: 100%;
}

.artwork-portrait {
  max-height: 380px;
  width: auto;
}

.artwork-square {
  max-height: 320px;
  width: auto;
}

/* Rahmen + Schatten */
.art-item {
  display: block;
  box-shadow:
    0 0 0 1px #000,
    0 0 0 28px #fff,
    0 20px 60px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}

.art-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Positionierung */
.left {
  align-self: flex-start;
}

.right {
  align-self: flex-end;
}

.center {
  align-self: center;
}
.contact-section {
  text-align: center;
  margin-top: 200px;
  margin-bottom: 100px;
}

.contact-button {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

/* Hover */

.contact-button:hover {
  background: #000;
  color: #fff;
}

.site-footer {
  text-align: center;
  margin-top: 200px;
  margin-bottom: 20px;
  font-size: 12px;
  color: #777;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
}

.site-footer a:hover {
  color: #000;
  border-color: #000;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  font-size: 16px;
  line-height: 1.7;
}

/* Mobile */
@media (max-width: 768px) {
  .artworks {
    gap: 200px;
  }

  .art-item {
    width: 88%;
    max-width: 320px;
    align-self: center;
  }
}

.woocommerce {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
  font-family: Georgia, serif;
}

.woocommerce h1,
.woocommerce h2,
.woocommerce h3 {
  font-weight: 400;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 80px;
}

.woocommerce ul.products li.product {
  text-align: center;
}

.woocommerce ul.products li.product img {
  box-shadow:
    0 0 0 1px #000,
    0 0 0 18px #fff,
    0 20px 50px rgba(0,0,0,0.25);
  margin-bottom: 40px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px;
  font-weight: 400;
  color: #111;
}

.woocommerce ul.products li.product .price {
  color: #555;
  font-size: 14px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: transparent;
  color: #111;
  border: 1px solid #111;
  border-radius: 0;
  padding: 14px 28px;
  font-weight: 400;
  text-transform: none;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: #111;
  color: #fff;
}

.woocommerce div.product {
  max-width: 1000px;
  margin: 0 auto;
}

.woocommerce div.product .product_title {
  font-size: 28px;
  font-weight: 400;
}

.woocommerce div.product p.price {
  color: #555;
  font-size: 18px;
}

.woocommerce div.product div.images img {
  box-shadow:
    0 0 0 1px #000,
    0 0 0 24px #fff,
    0 20px 60px rgba(0,0,0,0.3);
}