/* ===================================
   MURAL PROCESS PAGE STYLES
   =================================== */

/* CSS Variables for easy customization */
:root {
  --process-primary: #2c3e50;
  --process-secondary: #3498db;
  --process-accent: #e74c3c;
  --process-success: #27ae60;
  --process-warning: #f39c12;
  --process-light: #ecf0f1;
  --process-dark: #34495e;
  --process-text: #2c3e50;
  --process-muted: #7f8c8d;
  --process-border: #bdc3c7;
  --process-shadow: rgba(0, 0, 0, 0.1);
  --process-gradient: linear-gradient(135deg, #49feec 0%,	#4283b9 100%);
}

/* Mural Process Section */
.mural-process-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

/* Process Header */
.process-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.process-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--process-primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.3;
  position: relative;
}

.process-header h1::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--process-gradient);
  border-radius: 2px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: var(--process-muted);
  margin-top: 30px;
}

/* Process Steps Container */
.process-steps {
  max-width: 1000px;
  margin: 0 auto;
}

/* Step Cards */
.step-card {
  display: flex;
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--process-shadow);
  margin-bottom: 40px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Step Number */
.step-number {
  flex: 0 0 120px;
  background: var(--process-gradient);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 700;
  position: relative;
}

.step-number::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 0 40px 20px;
  border-color: transparent transparent transparent rgba(102, 126, 234, 0.1);
}

/* Step Content */
.step-content {
  flex: 1;
  padding: 40px;
}

.step-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--process-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--process-text);
  margin-bottom: 20px;
}

/* Requirements Lists */
.requirements {
  background: #f8f9fa;
  border-left: 4px solid var(--process-secondary);
  padding: 20px;
  margin: 20px 0;
  border-radius: 0 8px 8px 0;
}

.requirements h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--process-secondary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.requirements ul {
  margin: 0;
  padding-left: 20px;
}

.requirements li {
  font-size: 15px;
  line-height: 1.5;
  color: var(--process-text);
  margin-bottom: 8px;
}

/* Note Text */
.note {
  font-style: italic;
  color: var(--process-muted);
  font-size: 14px;
  background: #fff3cd;
  padding: 15px;
  border-radius: 8px;
  border-left: 4px solid var(--process-warning);
  margin-top: 20px;
}

/* Note Box */
.note-box {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  border: 1px solid #e1bee7;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.note-box i {
  color: var(--process-secondary);
  font-size: 20px;
  margin-top: 2px;
}

.note-box p {
  margin: 0;
  font-size: 14px;
}

/* Location Types */
.location-types {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 30px 0;
}

.location-card {
  background: white;
  border: 2px solid var(--process-border);
  border-radius: 12px;
  padding: 25px;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: var(--process-secondary);
  box-shadow: 0 8px 25px var(--process-shadow);
}

.location-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--process-primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.location-card.local h3 {
  color: var(--process-success);
}

.location-card.remote h3 {
  color: var(--process-accent);
}

.location-subtitle {
  font-size: 14px;
  color: var(--process-muted);
  margin-bottom: 20px;
  font-style: italic;
}

.location-card ul {
  margin: 15px 0;
  padding-left: 20px;
}

.location-card li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

/* Deposit Box */
.deposit-box {
  background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
  border: 2px solid #ffd54f;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.deposit-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--process-warning);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.deposit-details {
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin: 20px 0;
}

.deposit-details ul {
  margin: 0;
  padding-left: 20px;
}

.deposit-details li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

/* Important Notes */
.important-notes {
  background: #ffebee;
  border: 2px solid #ffcdd2;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.important-notes h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--process-accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.important-notes ul {
  margin: 15px 0;
  padding-left: 20px;
}

.important-notes li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.important-notes li ul {
  margin-top: 8px;
  margin-left: 20px;
}

.important-notes li ul li {
  font-size: 14px;
  margin-bottom: 5px;
}

/* Responsibilities */
.responsibilities {
  background: #e8f5e8;
  border: 2px solid #c8e6c9;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.responsibilities h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--process-success);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.additional-finishes {
  background: #f3e5f5;
  border: 2px solid #e1bee7;
  border-radius: 12px;
  padding: 20px;
  margin: 20px 0;
}

/* Special Sections */
.special-sections {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 60px auto;
}

.section-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 8px 30px var(--process-shadow);
  padding: 40px;
  transition: transform 0.3s ease;
}

.section-card:hover {
  transform: translateY(-5px);
}

.section-card h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--process-primary);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.section-card li {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Rights Box */
.rights-box {
  background: linear-gradient(135deg, #f3e5f5 0%, #e8eaf6 100%);
  border: 2px solid #c5cae9;
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
}

.rights-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #673ab7;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Final Notes Section */
.final-notes {
  max-width: 800px;
  margin: 60px auto 40px;
}

.notes-card {
  background: linear-gradient(135deg, #49feec 0%, #03076c 100%);
  color: white;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.notes-card h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.notes-card p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* CTA Section */
.cta-section {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: white;
  color: var(--process-primary);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: var(--process-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
  .process-header h1 {
    font-size: 32px;
  }
  
  .step-card {
    flex-direction: column;
  }
  
  .step-number {
    flex: 0 0 80px;
    height: 80px;
    font-size: 32px;
  }
  
  .step-number::before {
    display: none;
  }
  
  .step-content {
    padding: 30px 25px;
  }
  
  .step-content h2 {
    font-size: 24px;
  }
  
  .location-types {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .special-sections {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .section-card {
    padding: 30px 25px;
  }
  
  .cta-section {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .mural-process-section {
    padding: 40px 0;
  }
  
  .process-header {
    margin-bottom: 40px;
  }
  
  .step-content {
    padding: 25px 20px;
  }
  
  .section-card,
  .notes-card {
    padding: 30px 20px;
  }
}

/* Print Styles */
@media print {
  .mural-process-section {
    background: white;
    padding: 20px 0;
  }
  
  .step-card {
    box-shadow: none;
    border: 1px solid #ddd;
    break-inside: avoid;
    margin-bottom: 20px;
  }
  
  .step-number {
    background: #f5f5f5 !important;
    color: #333 !important;
  }
  
  .cta-section {
    display: none;
  }
}
