body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans', sans-serif;
  color: #F8F8F8;
  box-sizing: border-box;
}

h1, h2, h3 {
  font-family: 'Rubik Dirt', cursive;
}

.background {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #000 url('../img/background.png') center center/cover no-repeat;
  filter: brightness(0.5);
  z-index: 0;
}

header .logo {
  position: fixed;
  top: 32px;
  left: 32px;
  width: 150px;
  height: auto;
  z-index: 2;
}

.content-pane {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  padding: 20px 24px 48px 24px;
  z-index: 1;
  min-height: 100vh;
}

.anchor-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
}
.anchor-nav a {
  color: #F5C85D;
  text-decoration: none;
  font-weight: 700;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  transition: color 0.2s;
}
.anchor-nav a:hover {
  color: #fffbe6;
}

h1{
  text-align: center;
  margin-bottom: 0.1em;
  font-size: 2.9em;
  font-weight: 400;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
h2 {
  margin-bottom: -0.5em;
  font-weight: 300;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}
p {
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

@media (max-width: 700px) {
  .content-pane {
    max-width: 100%;
    padding: 100px 8px 32px 8px;
  }
  header .logo {
    top: 12px;
    left: 12px;
    width: 80px;
  }
  .anchor-nav {
    gap: 12px;
    font-size: 0.95em;
  }
}

ul {
  margin: 1.5em 0;
  padding-left: 1.5em;
}
ul li {
  margin-bottom: 0.7em;
  line-height: 1.4;
}

.team-section {
  width: 100%;
  margin-top: 64px;
  margin-bottom: 32px;
}
.team-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.5);
  border-radius: 16px;
  padding: 24px 20px 20px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  flex: 1 1 0;
  min-width: 240px;
  max-width: 320px;
  height: 100%;
  box-sizing: border-box;
}
.team-cv {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
}
.team-member:first-child {
  align-items: center;
  text-align: center;
}
.team-member:last-child {
  align-items: center;
  text-align: center;
}
.team-photo {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  border: 3px solid #F5C85D;
  margin-left: auto;
  margin-right: auto;
}
.team-cv h3 {
  margin: 0 0 8px 0;
  font-size: 1.2em;
  color: #F5C85D;
  font-family: 'Montserrat', sans-serif;
}
.team-cv p {
  margin: 0;
  font-size: 0.85em;
  color: #F8F8F8;
}
.team-contact {
  margin-top: auto;
  font-size: 0.98em;
  line-height: 1.5;
}
.team-contact a {
  color: #F5C85D;
  text-decoration: none;
  word-break: break-all;
  transition: color 0.2s;
}
.team-contact a:hover {
  color: #fffbe6;
  text-decoration: underline;
}

@media (max-width: 700px) {
  .team-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-member {
    min-width: 0;
    max-width: 95vw;
    height: auto;
  }
}

.highlight-gold {
  color: #E6C885;
  background: rgba(230, 200, 133, 0.08);
  padding: 0 2px;
  border-radius: 3px;
}

.contact-avatars {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
.contact-avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.avatar-img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #F5C85D;
  margin-bottom: 10px;
  background: #222;
}
.avatar-name {
  font-family: 'Montserrat', sans-serif;
  color: #F5C85D;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 700px) {
  .contact-avatars {
    flex-direction: column;
    gap: 20px;
  }
}

.intro-highlight {
  padding-top: 1em;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  margin: 0 auto 1.0em auto;
  letter-spacing: 0.01em;
  line-height: 1.7;
  color: #F5C85D;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

.intro-title {
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #F5C85D;
  display: block;
  margin-bottom: -0.4em;
}

.cv-break {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.team-member:first-child .team-photo {
  object-position: calc(50% - 0px) center;
} 

.price {
  font-size: 1.5em;
  font-weight: 700;
}