/* Showcases Page Styles */

/* Header solid variant */
.header-solid {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

/* Hero Section */
.showcases-page {
  padding-top: 72px;
}

.hero-section {
  background: #000000;
  padding: 80px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Showcases Section */
.showcases-section {
  background: #000000;
  padding: 60px 0;
}

/* Showcase Card */
.showcase-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(212, 175, 55, 0.4);
}

.showcase-card:last-child {
  margin-bottom: 0;
}

/* Showcase Image */
.showcase-image {
  width: 100%;
  overflow: hidden;
}

.showcase-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-image img {
  transform: scale(1.02);
}

/* Showcase Content */
.showcase-content {
  padding: 32px;
}

.showcase-content h2 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 16px;
}

/* Tags */
.showcase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.4);
  transition: all 0.2s ease;
}

.tag:hover {
  background: rgba(212, 175, 55, 0.35);
  border-color: rgba(212, 175, 55, 0.6);
}

/* Prompt Section */
.showcase-prompt {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}

.showcase-prompt h3 {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.showcase-prompt p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: #000000;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 1.125rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.125rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .showcase-content {
    padding: 24px;
  }

  .showcase-content h2 {
    font-size: 1.5rem;
  }

  .cta-section h2 {
    font-size: 1.5rem;
  }

  .btn-large {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

/* RTL Support */
html[dir="rtl"] .showcase-tags {
  direction: rtl;
}

html[dir="rtl"] .showcase-prompt {
  text-align: right;
}
