/* D&K IT - clean base styles */

/* Фон и базовый текст */
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;

  /* Background image */
  background: url("/images/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

/* Тёмный оверлей поверх фона для читаемости */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: -1;
}

/* Переменные (можем использовать для ссылок и бордеров) */
:root {
  --bg: #ededed;
  --text: #424242;
  --heading: #333;
  --link: #3282e6;
  --link-hover: #165db5;
  --card: #ffffff;
  --border: #d6d6d6;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
h1,
h2,
h3 {
  color: #ffffff; /* светлые заголовки поверх тёмного фона */
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

h1 {
  font-size: 44px;
}
h2 {
  font-size: 32px;
  margin-top: 0;
}
h3 {
  font-size: 20px;
}

p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.88);
}

.lead {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.92);
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Header / Nav */
.site-header {
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}

.brand-link {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}

.nav a {
  margin-left: 16px;
  font-weight: 600;
}

/* Основные секции (карточки) */
.section {
  margin: 42px 0;
  padding: 28px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  color: #ffffff;
  backdrop-filter: blur(6px);
}

/* Team — горизонтальный ряд карточек */
.team {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  margin-top: 18px;
  flex-wrap: nowrap;
}

.team-member {
  width: 260px;
  text-align: center;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.team-member img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
  background: #f5f5f5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-bottom: 12px;
}

/* Contact */
.contact-card {
  margin-top: 10px;
  padding: 18px 16px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
}

.contact-title {
  font-weight: 700;
  margin-bottom: 8px;
}

.hours-title {
  margin-top: 14px;
}

/* Footer */
.site-footer {
  padding: 26px 0;
  text-align: center;
  color: #cccccc;
}

/* Адаптив */
@media (max-width: 980px) {
  .team {
    flex-wrap: wrap; /* на средних экранах карточки могут переходить на вторую строку */
  }
}

@media (max-width: 700px) {
  h1 {
    font-size: 34px;
  }

  .site-header .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .nav a {
    margin-left: 0;
    margin-right: 14px;
  }

  .team-member {
    width: 100%; /* на мобильном по одной карточке в строку */
  }
}
.play-button {
  display: inline-block;
  padding: 10px 18px;
  background: #1DB954;
  border-radius: 10px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.play-button:hover {
  background: #19a24b;
  text-decoration: none;
}

