
:root {
  --bg-dark: #111;
  --fg-light: #fff;
  --accent-green: #228B22;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--fg-light);
  height: 100vh;
  height: 100dvh;
  padding: 0 1rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('../images/kairos2.jpg') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  position: relative;
}

/* ---------- GENERAL LAYOUT ---------- */

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 1rem auto;
  line-height: 1.6;
  color: #cccccc;
}

.coming-soon {
  margin-top: 2rem;
  font-weight: bold;
  color: #fff;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.footer {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

/* ---------- PROFILE MODULE ---------- */

.team-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 12px;
}

.profile-box {
  background: #000;
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.profile-box-link {
  text-decoration: none;
  color: inherit;
}

.profile-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.profile-content {
  padding: 20px;
  font-family: monospace;
  background: var(--bg-dark);
}

.profile-content h2 {
  margin: 0 0 10px;
  font-size: 20px;
}

.profile-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: #ccc;
}

.profile-role {
  color: var(--accent-green);
  font-weight: bold;
  margin-bottom: 10px;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 600px) {
  h1 {
    font-size: 2.2rem;
  }

  p {
    font-size: 1rem;
  }

  .coming-soon {
    font-size: 1rem;
  }
}

/* ---------- MENU ---------- */

.site-header {
  position: sticky;
  top: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 1000;
  padding: 0.8rem 2rem;
  border-bottom: 1px solid #222;
}

.main-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.main-nav .logo {
  color: #fff;
  font-family: monospace;
  font-weight: bold;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-family: monospace;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: #228B22;
}

/* ---------- FOOTER ---------- */


.site-footer {
  background-color: rgba(0, 0, 0, 0.85);
  padding: 20px 40px;
  font-family: monospace;
  font-size: 13px;
  color: #999;
  border-top: 1px solid #222;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

.footer-right a {
  margin-left: 20px;
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-right a:hover {
  color: #228B22;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .footer-right a {
    margin-left: 10px;
  }
}

?>
