/* Cohyba basic site styling */

/* Reset / base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #0f172a;
  background-color: #ffffff;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header / nav */
.header,
.footer {
  background-color: #0f172a;
  color: #ffffff;
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-left img.logo {
  height: 40px;
  width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 2px;
}

.nav-brand {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.nav-links a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
  color: #ffffff;
}

/* Hero */
.hero {
  background-color: #1e293b;
  color: #ffffff;
  padding: 3rem 1.25rem;
  border-bottom: 1px solid #334155;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.hero-copy h1 {
  font-size: clamp(1.8rem, 1vw + 1.4rem, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #ffffff;
  letter-spacing: -0.04em;
}

.hero-copy p {
  font-size: 1rem;
  color: #cbd5e1;
  max-width: 45ch;
  margin-bottom: 1rem;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(200px,100%),1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.pillar {
  background-color: #334155;
  color: #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 1rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.4;
}

.hero-media img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #475569;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  background-color: #0f172a;
}

@media(min-width: 768px){
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

/* Content sections */
.section {
  max-width: 1200px;
  margin: 2.5rem auto;
  padding: 0 1.25rem;
}

.section h2 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 0.75rem;
}

.section p,
.section li {
  font-size: 1rem;
  color: #334155;
  line-height: 1.5;
  max-width: 70ch;
}

.section ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px,100%),1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.team-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1rem 1rem 1.25rem;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.04);
}

.team-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 1px solid #cbd5e1;
  margin-bottom: 0.75rem;
  background-color: #f8fafc;
}

.team-card .name {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.team-card .role {
  font-size: 0.9rem;
  font-weight: 500;
  color: #475569;
  margin-bottom: 0.5rem;
}

.team-card .bio {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.45;
}

/* Contact card */
.contact-card {
  border: 1px solid #e2e8f0;
  border-radius: 0.75rem;
  padding: 1.25rem 1rem 1.5rem;
  max-width: 480px;
  background-color: #ffffff;
  box-shadow: 0 20px 40px rgba(15,23,42,0.05);
}

.contact-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.contact-card p {
  font-size: 0.95rem;
  color: #334155;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.contact-card a {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Footer */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.4;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: -0.03em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  font-size: 0.75rem;
  color: #64748b;
}
