@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/source-sans-3/SourceSans3-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Source Sans 3';
  src: url('/fonts/source-sans-3/SourceSans3-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 200 900;
  font-style: italic;
  font-display: swap;
}

/* =========================
   Základní typografie
   ========================= */
html {
  font-size: 21px;
  scroll-behavior: smooth;
}

body {
  background-image: url('/images/background.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  scroll-behavior: smooth;
  font-family: 'Source Sans 3', sans-serif;
  /*font-family: sans-serif;*/
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #333;
}

/* Nadpisy – klidné, neagresivní */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

/* Seznamy – lepší čitelnost */
li {
  margin-bottom: 0.5rem;
}

/* Odkazy – decentní */
a {
  color: #2f6f5f;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Responzivní drobnosti */
@media (max-width: 768px) {
  body {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }

}

.section {
  scroll-margin-top: 90px;
  padding: 1.5rem 0;
}

.section-title {
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  padding: 0.2em 0 0.2em 1em;
  border-radius: 10px;
  background-color: #ffffff;
  max-resolution: res;
}

.soft-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.profile-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.title-purple {
  background: #f3f0ff;
  color: #4b3f72;
}

.title-blue {
  background: #eef6ff;
  color: #2c5282;
}

.title-green {
  background: #edf7f2;
  color: #276749;
}

.title-peach {
  background: #fdeeee;
  color: #9b2c2c;
}

.title-beige{
  background: #f7f5f2;
  color: #6b5e4a;
}

.title-contact {
  background: #f5f3ff;
  color: #553c9a;
}

.nav-link {
  background: #f7f5f2;
}

.active-lang {
  font-weight: 600;
  color: #276749 !important;
  cursor: default;
}

.active-lang:hover {
  text-decoration: none;
}
#cooperation-model .list-unstyled li::before,
#services .list-unstyled li::before {
  content: "—";
  font-weight: bold;
  margin-right: 8px;
  color: #4b3f72;
}

.btn-soft-primary {
  background-color: #e7efff;
  color: #3b5b8a;
  border: 1px solid #d4e0ff;
  border-radius: 30px;
  transition: all 0.25s ease;
}

.btn-soft-primary:hover {
  background-color: #dbe7ff;
  color: #2f4a73;
  transform: translateY(-1px);
}

