/* Download Brochure Page Styles */

/* Simple Brochures Section */
.simple-brochures-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #e6f2ff 100%);
}

.section-header {
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #6c757d;
  margin: 0 auto;
}

/* Brochures Grid */
.brochures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Simple Brochure Card */
.simple-brochure-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.simple-brochure-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border-color: #667eea;
}

.brochure-icon {
  text-align: center;
  margin-bottom: 20px;
}

.brochure-icon i {
  font-size: 4rem;
  color: #dc3545;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.brochure-content h3 {
  color: #2c3e50;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.brochure-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-simple-download,
.btn-simple-read {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
}

.btn-simple-download {
  background: #28a745;
  color: white;
}

.btn-simple-download:hover {
  background: #218838;
  transform: translateY(-2px);
}

.btn-simple-read {
  background: #6c757d;
  color: white;
}

.btn-simple-read:hover {
  background: #5a6268;
  transform: translateY(-2px);
}

.simple-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-top: 15px;
  border-top: 1px solid #e9ecef;
}

.share-text {
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}

.simple-share-btn {
  width: 35px;
  height: 35px;
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.simple-share-btn:hover {
  transform: translateY(-2px);
}

.simple-share-btn.facebook {
  background: #3b5998;
}

.simple-share-btn.whatsapp {
  background: #25d366;
}

.simple-share-btn.copy {
  background: #6c757d;
}

/* Responsive Design */
@media (max-width: 768px) {
  .brochures-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .simple-brochure-card {
    padding: 20px;
  }
  
  .brochure-actions {
    flex-direction: column;
    gap: 10px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .simple-brochures-section {
    padding: 60px 0;
  }
  
  .brochure-icon i {
    font-size: 3rem;
  }
  
  .brochure-content h3 {
    font-size: 1.1rem;
  }
  
  .simple-share {
    gap: 8px;
  }
  
  .simple-share-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}

/* Modal Styles */
.brochure-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: white;
  border-radius: 15px;
  width: 90%;
  max-width: 1000px;
  height: 90%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h4 {
  margin: 0;
  font-weight: 600;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.modal-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.iframe-container {
  flex: 1;
  background: #f8f9fa;
}

.iframe-container iframe {
  width: 100%;
  height: 100%;
}

.modal-actions {
  padding: 20px 30px;
  background: #f8f9fa;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-modal-download, .btn-modal-fullscreen {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-modal-download {
  background: #28a745;
  color: white;
}

.btn-modal-fullscreen {
  background: #6c757d;
  color: white;
}