/* Prostia landing page styles*/

.navbar {
  justify-content: flex-end !important;
}

.prostia-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.prostia-layout {
  width: 90%;
  max-width: 1000px;
}

.prostia-content {
  background-color: #fff;
  padding: 3rem 4rem;
  border: 2px solid #f3bebe;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.prostia-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.prostia-logo {
  display: block;
  max-width: 500px;
  width: 45%;
  height: auto;
}

.prostia-actions-row {
  display: grid;
  grid-template-columns: 1fr 3px 1fr;
  gap: 2rem;
  align-items: stretch;
}

.prostia-action-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.button-container {
  display: grid;
  grid-template-rows: minmax(4rem, auto) auto auto;
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

.button-container h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  position: relative;
  padding-bottom: 1rem;
}

.button-container h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #6b7280;
}

.button-separator {
  width: 3px;
  height: auto;
  background: #6b7280;
  margin: 0.25rem 0;
}

.button-separator::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 0 0.75rem;
  color: #6b7280;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-prostia {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #667eea;
  color: white;
}

.btn-primary:hover {
  background-color: #5568d3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background-color: #5a6aa5;
  color: white;
}

.btn-secondary:hover {
  background-color: #4a5a95;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(90, 106, 165, 0.4);
}

.btn-prostia:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  color: #666;
}

.btn-prostia:disabled:hover {
  transform: none;
  box-shadow: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .prostia-content {
    padding: 2rem 1.5rem;
  }

  .prostia-actions-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .button-separator {
    width: 100%;
    height: 3px;
  }

  .prostia-title {
    font-size: 2rem;
  }

  .btn-prostia {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}