/* Общие стили */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.site-header {
  background: #d4af37;
  color: white;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-title {
  font-size: 28px;
  margin: 0;
}

.main-nav {
  margin: 15px 0;
}

.main-nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

.main-nav select {
  margin-left: 15px;
  padding: 5px;
}

.contact-quick a {
  display: block;
  color: white;
  margin-top: 5px;
}

.hero {
  background-color: #eee;
  padding: 30px 0;
}

.section {
  padding: 40px 0;
}

.bg-light {
  background-color: #f4f4f4;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.portfolio-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.site-footer {
  background-color: #333;
  color: white;
  padding: 20px 0;
  text-align: center;
}

/* Сетка анкет */
.profiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) {
  .profiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .profiles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .profiles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Карточка анкеты */
.profile-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.profile-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.profile-card h3 {
  margin: 10px 0;
  color: #222;
}

.profile-card .meta {
  font-size: 14px;
  color: #666;
}

.profile-card .interests {
  font-size: 14px;
  margin-top: 8px;
}

/* Кнопки слайдера */
.swiper-button-prev,
.swiper-button-next {
  color: white;
  --swiper-navigation-size: 20px;
}

/* Телефон */
.phone-link {
  color: blue;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
}
body { font-family: Arial, sans-serif; margin: 0; padding: 0; background: #fafafa; color: #333; }
.container { width: 90%; max-width: 1200px; margin: auto; }
.site-header { background: #d4af37; color: white; padding: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.site-title { font-size: 28px; margin: 0; }
.main-nav a { color: white; margin: 0 10px; text-decoration: none; font-weight: bold; }
.contact-quick a { display: block; color: white; margin-top: 5px; }
.hero { background-color: #eee; padding: 30px 0; }
.section { padding: 40px 0; }
.bg-light { background-color: #f4f4f4; }
.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.portfolio-grid img { width: 100%; height: auto; border-radius: 8px; }
.site-footer { background-color: #333; color: white; padding: 20px 0; text-align: center; }
.profiles-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .profiles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .profiles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .profiles-grid { grid-template-columns: repeat(4, 1fr); } }
.profile-card { background: white; border-radius: 10px; padding: 15px; box-shadow: 0 2px 6px rgba(0,0,0,0.1); text-align: center; }
.profile-card img { width: 100%; height: auto; border-radius: 8px; }
.profile-card h3 { margin: 10px 0; color: #222; }
.profile-card .meta { font-size: 14px; color: #666; }
.profile-card .interests { font-size: 14px; margin-top: 8px; }
.swiper-button-prev, .swiper-button-next { color: white; --swiper-navigation-size: 20px; }
.phone-link { color: blue; font-size: 18px; font-weight: bold; text-decoration: none; }
/* Dropdown languages */
.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 18px;
}
.dropbtn {
  background: #000;
  color: #fff;
  padding: 6px 12px;
  font-size: 14px;
  border: 1px solid #fff;
  border-radius: 6px;
  cursor: pointer;
}
.dropbtn:hover {
  background: #222;
}
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background: #000;
  min-width: 140px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  z-index: 1000;
}
.dropdown-content a {
  color: #fff;
  padding: 10px 14px;
  text-decoration: none;
  display: block;
}
.dropdown-content a:hover {
  background: #222;
}
.dropdown:hover .dropdown-content {
  display: block;
}
