/* Art Section - Geometric Layout Around Central Image */
.art-section {
  background: #000000;
  padding: 0 0 80px 0;
  margin: 0;
  color: white;
}

.art-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Header - Centered */
.art-header {
  text-align: center;
  margin-bottom: 60px;
  padding-top: 60px;
}

.art-section-title {
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "Times New Roman", Times, serif;
  color: #ffd700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.art-section-description {
  font-size: 1.1rem;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Geometric Layout - 3 Columns */
.art-geometric-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column - Right Aligned */
.art-column-left {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: right;
  padding-right: 30px;
  padding-top: 0;
}

/* Center Column - Main Image */
.art-column-center {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 120px;
}

.art-main-image {
  width: 500px;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
  border: 3px solid rgba(255, 215, 0, 0.5);
}

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

/* Right Column - Left Aligned */
.art-column-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  padding-left: 30px;
  padding-top: 0;
}

/* Info Items - Clickable with hover effects */
.art-info-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 15px;
}

.art-info-item:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
}

.art-column-left .art-info-item:hover {
  transform: translateX(-5px);
}

/* Left column items - curved formation wrapping around image */
.art-column-left .art-info-item:nth-child(1) {
  margin-top: -20px;
  transform: translateX(80px);
}

.art-column-left .art-info-item:nth-child(2) {
  margin-top: 40px;
  transform: translateX(50px);
}

.art-column-left .art-info-item:nth-child(3) {
  margin-top: 80px;
  transform: translateX(10px);
}

.art-column-left .art-info-item:nth-child(4) {
  margin-top: 130px;
  transform: translateX(50px);
}

/* Right column items - mirror curve wrapping around image */
.art-column-right .art-info-item:nth-child(1) {
  margin-top: -20px;
  transform: translateX(-80px);
}

.art-column-right .art-info-item:nth-child(2) {
  margin-top: 40px;
  transform: translateX(-50px);
}

.art-column-right .art-info-item:nth-child(3) {
  margin-top: 80px;
  transform: translateX(-10px);
}

.art-column-right .art-info-item:nth-child(4) {
  margin-top: 130px;
  transform: translateX(-50px);
}

/* Item Styling */
.art-info-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: color 0.3s ease;
}

.art-info-item:hover .art-info-title {
  color: #ffed4e;
}

.art-info-desc {
  font-size: 0.95rem;
  color: white;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .art-geometric-layout {
    gap: 40px;
  }

  .art-main-image {
    width: 350px;
    height: 450px;
  }

  .art-column-left,
  .art-column-right {
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .art-geometric-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .art-column-left,
  .art-column-right {
    text-align: center;
    padding: 0;
  }

  .art-column-left .art-info-item,
  .art-column-right .art-info-item {
    margin-top: 0 !important;
  }

  .art-main-image {
    width: 100%;
    max-width: 400px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .art-section {
    padding: 60px 0;
  }

  .art-container {
    padding: 0 20px;
  }

  .art-section-title {
    font-size: 2rem;
  }

  .art-main-image {
    height: 400px;
  }

  .art-info-title {
    font-size: 1.1rem;
  }

  .art-info-desc {
    font-size: 0.9rem;
  }
}
