/* Page-specific styles for Skrzynka modlitwy */

.page-skrzynka main {
  background: linear-gradient(135deg, #f2f2f2 0%, #e8e8e8 100%);
  min-height: 60vh;
  padding: 40px 20px;
}

.prayer-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}

.prayer-header {
  background: linear-gradient(135deg, #F8B24D 0%, #f4a536 100%);
  color: #fff;
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.mail-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  font-size: 35px; /* rozmiar emoji */
}

.mail-icon::before {
  content: "✉️"; /* emoji koperty */
}

/* Usuń stare reguły dla img w .mail-icon */
.mail-icon img {
  display: none;
}

.prayer-header h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 15px 0;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.prayer-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  margin: 0;
  opacity: 0.95;
  line-height: 1.4;
}

.prayer-content {
  padding: 40px;
}

.prayer-info h2 {
  color: #F8B24D;
  text-align: center;
  margin-bottom: 30px;
  font-size: clamp(22px, 3vw, 28px);
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  align-items: center;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  border-left: 4px solid #F8B24D;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #F8B24D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  flex-shrink: 0;
}

.step p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.contact-card {
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  border-radius: 15px;
  padding: 30px;
  border: 2px solid #F8B24D;
  text-align: center;
}

.contact-card h3 {
  color: #F8B24D;
  margin-bottom: 20px;
  font-size: clamp(20px, 3vw, 26px);
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
}

.contact-info a {
  color: #F8B24D;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.privacy-note {
  font-size: 14px !important;
  color: #666;
  font-style: italic;
  margin-top: 15px !important;
}

.prayer-quote {
  margin-top: 25px;
  padding: 20px;
  background: rgba(248, 178, 77, 0.1);
  border-radius: 10px;
  border-left: 4px solid #F8B24D;
}

.prayer-quote blockquote {
  margin: 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  color: #555;
}

.prayer-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #F8B24D;
  font-weight: bold;
}

/* Mobile optimizations */
@media screen and (max-width: 768px) {
  .prayer-container {
    margin: 0 10px;
    border-radius: 10px;
  }
  
  .prayer-header {
    padding: 30px 15px;
  }
  
  .prayer-content {
    padding: 25px 20px;
  }
  
  .info-steps {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .step {
    padding: 15px;
  }
  
  .contact-card {
    padding: 20px;
  }
}