:root {
  --bg: #0b132b;
  --card-bg: #1c2541;
  --text-main: #ffffff;
  --accent: #3a506b;
  --button-bg: #1c2541;
  --button-hover: #3a506b;
  --border-radius: 12px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background-color: var(--bg);
  color: var(--text-main);
}

.container {
  display: flex;
  flex-direction: column;
    align-items: center;
  padding: 20px;
  gap: 20px;
}

@media (min-width: 768px) {
  .container {
    flex-direction: row;
    align-items: flex-start;
  }

  .company-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 33%;
    }

  .team-section {
    width: 67%;
  }
}

#company-title,
#employees-title {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 12px;
}

.card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  max-width: 320px;
  width: 100%;

}

.company-logo {
  display: block;
  max-width: 240px;
  margin: 0 auto 12px;
  border-radius: 8px;
}

.company-name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}

#org-links a {
  display: block;
  margin: 8px 0;
  padding: 10px 14px;
  background-color: var(--company-link-bg, #4a5568); /* Slate-ish */
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
  
}

#org-links a:hover {
  background-color: var(--company-link-hover, #2d3748); /* Darker slate */
  transform: translateY(-1px);
  cursor: pointer;
}


#employees {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  justify-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.employee-card {
  background-color: var(--card-bg);
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 320px;
}


.employee-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 2px solid var(--accent);
}

.employee-name {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 16px;
}

.employee-links a {
  display: block;
  margin: 8px 0;
  padding: 10px 14px;
  background-color: var(--primary-color, #4a5568);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

.employee-links a:hover {
  background-color: var(--primary-hover-color, #2d3748);
  transform: translateY(-1px);
  cursor: pointer;
}
