/* Synthograsizer Suite — Shared Base Styles */

/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Roboto+Mono:wght@300;400;500;600;700&family=Press+Start+2P&display=swap');

/* ========== Layout ========== */

body {
  background-color: #f4f7f6;
  margin: 0;
  padding: 0;
  color: #2d3748;
  line-height: 1.6;
  font-family: 'Inter', Arial, sans-serif;
}

.page-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

/* ========== Navbar ========== */

.suite-navbar {
  max-width: 700px;
  margin: 32px auto 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  font-family: 'Inter', 'Roboto Mono', monospace;
  font-size: 1.07em;
  position: relative;
  z-index: 10;
  flex-wrap: wrap;
  padding: 20px;
}

.suite-navbar a {
  color: #5e60ce;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.2s;
}

.suite-navbar a:hover {
  color: #4a4dbf;
}

.suite-navbar .dropdown {
  position: relative;
  display: inline-block;
}

.suite-navbar .dropbtn {
  color: #5e60ce;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 0;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
}

.suite-navbar .dropdown-content {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  background: #fff;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 16px rgba(94, 96, 206, 0.1);
  min-width: 250px;
  padding: 8px 0;
  z-index: 100;
}

.suite-navbar .dropdown-content a {
  display: block;
  padding: 10px 24px;
  font-weight: 500;
  color: #5e60ce;
  text-decoration: none;
  transition: background-color 0.2s;
}

.suite-navbar .dropdown-content a:hover {
  background-color: #f7f7ff;
}

.suite-navbar .dropdown-content a.active {
  text-decoration: underline;
  font-weight: 600;
}

/* ========== Page Header ========== */

.about-header {
  font-size: 2.1em;
  font-weight: bold;
  margin: 40px 0 20px 0;
  text-align: center;
  font-family: 'Press Start 2P', 'Roboto Mono', monospace, cursive;
  color: #232946;
  text-shadow: 1px 1px 0 #fff;
}

/* ========== Content Area ========== */

.about-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px 40px 20px;
}

.about-content p {
  margin-bottom: 1.5em;
  line-height: 1.6;
  color: #2d3748;
}

.about-content h2 {
  font-size: 1.5em;
  margin: 1.8em 0 1em 0;
  color: #2d3748;
  font-weight: 600;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 8px;
}

.about-content ul {
  margin: 1em 0 1.5em 1.5em;
  padding: 0;
}

.about-content li {
  margin-bottom: 0.6em;
  color: #4a5568;
}

/* ========== Footer ========== */

.about-footer {
  text-align: center;
  padding: 30px 20px;
  margin-top: 40px;
  color: #4a5568;
  font-size: 0.9em;
  border-top: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 0 0 12px 12px;
  margin-bottom: 20px;
}

.about-footer a {
  color: #5e60ce;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.about-footer a:hover {
  color: #4a4dbf;
  text-decoration: underline;
}

/* ========== Responsive ========== */

@media (max-width: 768px) {
  .suite-navbar {
    gap: 20px;
    font-size: 1em;
    padding: 0 15px;
  }

  .about-header {
    font-size: 1.6em;
    margin: 30px 0 15px 0;
  }

  .about-content {
    padding: 0 15px 30px 15px;
  }
}

@media (max-width: 480px) {
  .suite-navbar {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .about-header {
    font-size: 1.4em;
  }
}
