﻿/* ===========================================
   MAIN STYLESHEET - Import All Modules
   =========================================== */

/* Import modular CSS files in correct order */
@import url("base.css");
@import url("layout.css");
@import url("forms.css");
@import url("header-footer.css");
@import url("responsive.css");
@import url("utilities.css");

/* ===========================================
   ADDITIONAL CUSTOM STYLES
   =========================================== */

/* Welcome Page Styles */
.welcome-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem 2rem;
}

.welcome-intro {
  background: #f8fafc;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  max-width: 100%;
  margin: 1.5rem auto;
  font-family: "Poppins", sans-serif;
}

.welcome-intro h2 {
  color: #1e3a8a;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.welcome-intro .intro-text {
  color: #334155;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Requirements Grid Layout */
.requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1rem;
}

.requirement-column {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.requirement-column h4 {
  color: #1e40af;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.requirement-column h4 i {
  color: #3b82f6;
}

.tips-box {
  background: #f0f9ff;
  padding: 1rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  border-left: 4px solid #3b82f6;
}

.tips-box h5 {
  color: #1e40af;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.tips-list {
  margin: 0;
  padding-left: 1rem;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.5;
}

.data-list,
.berkas-list {
  margin: 0 0 1rem 1.2rem;
  color: #475569;
  line-height: 1.6;
  font-size: 0.95rem;
}

.data-list li::marker {
  color: #2563eb;
  font-weight: bold;
}

.berkas-list li::marker {
  color: #16a34a;
  font-weight: bold;
}

.welcome-intro strong {
  color: #1e40af;
}

/* Important Notes Section - Compact Grid */
.important-notes {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem auto;
  max-width: 100%;
}

.important-notes h3 {
  color: #856404;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-align: center;
}

.important-notes h3 i {
  color: #f39c12;
  margin-right: 0.5rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
}

.note-item {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.8rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.note-item i {
  color: #27ae60;
  margin-right: 0.8rem;
  font-size: 0.9rem;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

.note-item span {
  color: #856404;
  line-height: 1.4;
  font-size: 0.9rem;
  font-weight: 500;
}

/* Welcome Actions Section - More Compact */
.welcome-actions {
  text-align: center;
  padding: 1.8rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  border: 1px solid #dee2e6;
  margin-top: 1.5rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  min-width: 280px;
  transition: all 0.3s ease;
  border-radius: 12px;
}

.btn-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.btn-large i {
  margin-right: 0.8rem;
  font-size: 1rem;
}

.action-help {
  color: #6c757d;
  font-size: 0.9rem;
  margin-top: 0.8rem;
  font-style: italic;
}

.action-help i {
  color: #3498db;
  margin-right: 0.5rem;
}

/* Responsive Design for Welcome Page */
@media (max-width: 1024px) {
  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .welcome-content {
    max-width: 900px;
  }
}

@media (max-width: 768px) {
  .welcome-content {
    padding: 1rem 1rem 1.5rem;
  }

  .welcome-intro {
    padding: 1.2rem 1.5rem;
    margin: 1rem auto;
    border-radius: 12px;
  }

  .welcome-intro h2 {
    font-size: 1.6rem;
    gap: 8px;
    margin-bottom: 1rem;
  }

  .intro-text {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .requirement-column {
    padding: 1.2rem;
  }

  .requirement-column h4 {
    font-size: 1rem;
  }

  .data-list,
  .berkas-list {
    margin: 0 0 1rem 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .tips-box {
    padding: 0.8rem;
    margin-top: 1rem;
  }

  .tips-list {
    font-size: 0.85rem;
  }

  .important-notes {
    padding: 1.2rem;
    margin: 1.2rem auto;
  }

  .important-notes h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .notes-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
  }

  .note-item {
    padding: 0.4rem 0.6rem;
  }

  .note-item span {
    font-size: 0.85rem;
  }

  .welcome-actions {
    padding: 1.5rem 1.2rem;
    margin-top: 1.2rem;
  }

  .btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    min-width: 220px;
    width: 100%;
    max-width: 280px;
  }

  .action-help {
    font-size: 0.85rem;
    margin-top: 0.6rem;
  }
}

@media (max-width: 480px) {
  .welcome-content {
    padding: 0.8rem 0.6rem;
  }

  .welcome-intro {
    padding: 1rem;
    margin: 0.8rem auto;
  }

  .welcome-intro h2 {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }

  .intro-text {
    font-size: 0.9rem;
    text-align: center;
  }

  .requirement-column {
    padding: 1rem;
  }

  .requirement-column h4 {
    font-size: 0.95rem;
    text-align: center;
  }

  .data-list,
  .berkas-list {
    margin: 0 0 0.8rem 0.8rem;
    font-size: 0.85rem;
  }

  .tips-box {
    padding: 0.6rem;
    margin-top: 0.8rem;
  }

  .tips-box h5 {
    font-size: 0.85rem;
  }

  .tips-list {
    font-size: 0.8rem;
  }

  .important-notes {
    padding: 1rem;
  }

  .important-notes h3 {
    font-size: 1rem;
  }

  .notes-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .note-item {
    padding: 0.4rem 0.5rem;
  }

  .note-item span {
    font-size: 0.8rem;
  }

  .welcome-actions {
    padding: 1.2rem 1rem;
  }

  .btn-large {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    min-width: 200px;
  }

  .action-help {
    font-size: 0.8rem;
  }
}

/* Animation for loading state */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

/* Any project-specific overrides can be added here */
