/* === ART PAGE BACKGROUND === */
.art-body {
  margin: 0;
  font-family: "subway-berlin-sc", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #f8f4f0cd;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8)),
    url("images/art-background.jpg") center center / cover no-repeat fixed;
}

/* HEADER */

header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 25px 0;              
  display: flex;
  justify-content: center;      
  align-items: center;
  z-index: 10;
  pointer-events: none; 
  color: #fdf6ecc5;
}

header .logo {
  position: absolute;
  left: 40px;                   
  font-size: 14px;
  pointer-events: auto;
  color: #f0e7d6;
  text-decoration: none;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 1px;
  pointer-events: auto;
}

nav {
  pointer-events: auto;
}

nav a {
  margin: 0 15px;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 1px;
  text-decoration: none;
  color: #f0e7d6;
  pointer-events: auto;
}

header .icons span {
  margin-left: 15px;
  font-size: 14px;
  pointer-events: auto;
}

/* MAIN LAYOUT */
.art-page {
  min-height: 100vh;
  padding: 40px 40px 60px 40px;
}

.art-layout {
  position: relative;
  width: 100%;
}

.art-stickers {
  position: relative;
  width: 100%;
}

.art-item {
  position: relative;
}

.art-card {
  width: 230px;
  height: 230px;
  margin-left: 40px;
  margin-bottom: 35px;
  border-radius: 10px;
  border: 6px solid #f8f4f0;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  background: #333;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.art-card-1 { transform: rotate(-3deg); }
.art-card-2 { transform: translateX(80px) rotate(2deg); }
.art-card-3 { transform: rotate(-1deg); }
.art-card-4 { transform: translateX(60px) rotate(3deg); }

.art-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-card:hover {
  transform: scale(1.03);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.8);
}

/* INFO PANEL OF ART */
.art-info {
  position: absolute;
  top: 0;
  left: 45%;
  width: 50%;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding: 60px 40px 140px 40px;
  text-align: center;
  background: radial-gradient(
    circle at top,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.85)
  );

  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 2;
  box-sizing: border-box;
  font-family: "ink-free", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.art-item:hover .art-info {
  opacity: 1;
  pointer-events: auto;
}

.art-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.art-paragraph {
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 520px;
  margin: 0 auto 14px auto;
}

.art-strip {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  display: flex;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(20, 20, 20, 0.85);
  border-radius: 10px;
}

.art-strip img {
  height: 80px;
  width: auto;
  border-radius: 6px;
  object-fit: cover;
}

/* FOOTER  */

.site-footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 8px 0 10px 0;
  z-index: 5;
}
.footer-nav {
  margin-bottom: 15px;
}
.footer-nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #f8f4f0;
  font-size: 14px;
  text-transform: lowercase;
  letter-spacing: 0.12em;
}

.footer-nav a:hover {
  opacity: 0.7;
}

.site-footer p {
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 6px;
  opacity: 0.85;
}
