/* SIMplify EDMS Brand Styles */

body {
  margin: 0;
  background: #282425;
  color: #fff;
  font-family: 'Segoe UI', Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Header and Logo Styles */
.logo-container {
  margin-top: 60px;
  text-align: center;
}

.logo-img {
  max-width: 300px;
  width: 60vw;
  height: auto;
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(102,38,40,.3);
}

h1 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-weight: 600;
  background: linear-gradient(90deg, #873032, #a5282b, #e42b2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #e42b2e;
  font-weight: 500;
}

/* Typography */
p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 40px auto;
  color: #bdbdbd;
  line-height: 1.6;
}

/* Content Container for Pages */
.content-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 30px;
  text-align: center;
  background: linear-gradient(90deg, #873032, #a5282b, #e42b2e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section {
  margin-bottom: 40px;
}

.content-section h2 {
  color: #e42b2e;
  font-size: 1.4rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(102,38,40,.3);
  padding-bottom: 10px;
}

.content-section h3 {
  color: #a5282b;
  font-size: 1.2rem;
  margin: 20px 0 10px 0;
}

.content-section p {
  margin: 0 0 15px 0;
  text-align: left;
}

.content-section ul, .content-section ol {
  color: #bdbdbd;
  margin: 15px 0;
  padding-left: 20px;
}

.content-section li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Features Grid */
.features {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
}

.feature {
  background: rgba(102,38,40,.1);
  border: 1px solid rgba(102,38,40,.3);
  border-radius: 15px;
  padding: 20px;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.feature h3 {
  color: #e42b2e;
  margin: 0 0 10px 0;
  font-size: 1.1rem;
}

.feature p {
  margin: 0;
  font-size: 0.95rem;
  color: #bdbdbd;
}

/* Button Styles */
.cta-container {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-btn {
  background: linear-gradient(90deg, #662628, #a5282b);
  color: #fff;
  border: none;
  padding: 16px 40px;
  font-size: 1.1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.cta-btn:hover {
  background: linear-gradient(90deg, #a5282b, #e42b2e);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102,38,40,.4);
}

.cta-btn.secondary {
  background: transparent;
  border: 2px solid #662628;
  color: #fff;
}

.cta-btn.secondary:hover {
  background: rgba(102,38,40,.2);
  border-color: #a5282b;
}

/* Navigation */
.nav-link {
  display: inline-block;
  color: #e42b2e;
  text-decoration: none;
  padding: 10px 20px;
  border: 1px solid rgba(102,38,40,.3);
  border-radius: 25px;
  margin: 10px;
  transition: all 0.3s;
  font-weight: 500;
}

.nav-link:hover {
  background: rgba(102,38,40,.2);
  border-color: #a5282b;
  text-decoration: none;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 20px;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Footer */
footer {
  margin-top: auto;
  padding: 20px 0;
  color: #888;
  font-size: 0.95rem;
  text-align: center;
  letter-spacing: 0.05em;
  max-width: 600px;
}

footer a {
  color: #e42b2e;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

footer .footer-links {
  margin: 10px 0;
}

footer .footer-links a {
  margin: 0 15px;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  
  .page-title {
    font-size: 1.6rem;
  }
  
  .tagline {
    font-size: 1.2rem;
  }
  
  p {
    font-size: 1.1rem;
    padding: 0 20px;
  }
  
  .features {
    flex-direction: column;
    padding: 0 20px;
  }
  
  .cta-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  
  .content-container {
    padding: 0 15px;
  }
  
  .nav-link {
    display: block;
    margin: 5px 0;
    text-align: center;
  }
  
  footer .footer-links a {
    display: block;
    margin: 5px 0;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}