/* Heritage Studio Visual Polish */

/* Shimmer Loading Effect */
@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

.shimmer-loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 8px;
  min-height: 200px;
}

/* Parchment Storybook Container */
.heirloom-storybook {
  background: linear-gradient(135deg, #fdfbf7 0%, #f5f1e8 100%);
  border: 2px solid #d4c5a9;
  border-radius: 16px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: 0 10px 40px rgba(139, 115, 85, 0.15);
  font-family: 'Georgia', 'Garamond', serif;
  position: relative;
}

.heirloom-storybook::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, #8b7355 0%, #d4c5a9 50%, #8b7355 100%);
  border-radius: 16px 16px 0 0;
}

/* Storybook Title */
.storybook-title {
  font-size: 2.5rem;
  color: #5d4037;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Chapter Headings */
.heirloom-storybook h3 {
  font-size: 1.8rem;
  color: #6d4c41;
  margin: 2rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #d4c5a9;
  font-weight: 600;
}

/* Paragraph Styling */
.heirloom-storybook p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #4e342e;
  margin: 1.5rem 0;
  text-align: justify;
  text-indent: 2rem;
}

/* Historian's Note */
.historians-note {
  margin-top: 3rem;
  padding: 1.5rem;
  background: rgba(255, 248, 225, 0.6);
  border-left: 4px solid #8b7355;
  border-radius: 8px;
  font-style: italic;
  font-size: 0.95rem;
  color: #5d4037;
}

/* Studio Intelligence Report Header */
.insight-header {
  background: linear-gradient(135deg, #fdfbf7 0%, #fff8e1 100%);
  border-left: 6px solid #d4a574;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 0 12px 12px 0;
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.15);
}

.insight-header h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b7355;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.insight-header p {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #5d4037;
  font-family: 'Georgia', serif;
  margin: 0;
}

/* Bridge Cards Premium Styling */
.bridge-card {
  background: white;
  border: 1px solid #e8dcc8;
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(139, 115, 85, 0.08);
}

.bridge-card:hover {
  box-shadow: 0 8px 24px rgba(139, 115, 85, 0.15);
  transform: translateY(-2px);
  border-color: #d4a574;
}

/* Primary CTA (Amber) */
.bridge-card button.bg-amber-700 {
  background: linear-gradient(135deg, #d4a574 0%, #b8935f 100%);
  box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
  transition: all 0.2s ease;
}

.bridge-card button.bg-amber-700:hover {
  background: linear-gradient(135deg, #b8935f 0%, #a07d4a 100%);
  box-shadow: 0 6px 16px rgba(212, 165, 116, 0.4);
  transform: scale(1.02);
}

/* Secondary CTA (Gray) */
.bridge-card button.bg-stone-100 {
  background: linear-gradient(135deg, #f5f5f4 0%, #e7e5e4 100%);
  transition: all 0.2s ease;
}

.bridge-card button.bg-stone-100:hover {
  background: linear-gradient(135deg, #e7e5e4 0%, #d6d3d1 100%);
  transform: scale(1.02);
}

/* Loading Overlay Enhancement */
#loading-overlay {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(8px);
}

#loading-message {
  font-family: 'Georgia', serif;
  color: #5d4037;
  font-size: 1.2rem;
  text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .heirloom-storybook {
    padding: 2rem 1.5rem;
  }
  
  .storybook-title {
    font-size: 2rem;
  }
  
  .heirloom-storybook h3 {
    font-size: 1.5rem;
  }
  
  .heirloom-storybook p {
    font-size: 1rem;
    text-indent: 1rem;
  }
}
