/* ===== ДИЗАЙН ИСПРАВЛЕНИЯ MEDAKAD ===== */

/* 1. ЕДИНАЯ ЦВЕТОВАЯ ПАЛИТРА */
:root {
  --primary: #2196F3;
  --primary-dark: #1976D2;
  --primary-light: #BBDEFB;
  --bg-light: #F5F5F5;
  --text-dark: #333;
  --text-light: #555;
  --overlay: rgba(30, 136, 229, 0.85);
}

/* 2. HERO - читаемость текста */
#main {
  position: relative;
}

#main::before {
/*  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--overlay) 0%, rgba(13, 71, 161, 0.6) 100%);
  z-index: 1; */ 
  display: none; /* убираем голубой градиент */
}

#main-content-1 {
  background: rgba(255, 255, 255, 0.2); /* чуть больше непрозрачности */
  backdrop-filter: blur(12px); /* сильнее размытие */
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#main-container {
  position: relative;
  z-index: 2;
}

#main-title,
#main-item {
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

#main-title {
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#main-item {
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7); /* усилить */
  font-weight: 500; /* чуть жирнее */
}

/* 3. КАРТОЧКИ - единая высота */
.service-card img,
.blog-card-image {
  height: 240px;
  object-fit: cover;
}

/* 4. КАРТОЧКИ ВРАЧЕЙ - мягкий overlay */
.testimonial-card img {
  filter: brightness(1.1);
}

/* 5. АДАПТИВНЫЙ GRID */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.services-grid,
.blog-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* Адаптивные стили для карточек врачей */
@media (max-width: 768px) {
  /* Для секции врачей на мобильных - карточки на всю ширину */
  .services-grid .doctor-card {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-grid .doctor-card {
    max-width: 100%;
  }
}

/* 6. ФУТЕР - показывать на мобильных */
@media (max-width: 768px) {
  .footer {
    display: block !important; /* отменяет display: none */
    padding: 20px 15px;
  }
  
  .footer-section {
    margin-bottom: 15px;
  }
}

/* 7. ТИПОГРАФИКА - единая шкала */
h1, .main-hero-h1, #main-title { font-size: clamp(2rem, 5vw, 3rem); }
h2, .section-title { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.3rem); }
p, .section-subtitle { font-size: clamp(0.9rem, 2.5vw, 1.1rem); }

/* 8. КНОПКИ - единый стиль */
.btn,
#main-action,
.blog-card-btn {
  background: var(--primary);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.btn:hover,
#main-action:hover,
.blog-card-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(33, 150, 243, 0.3);
}

/* 9. КАРТОЧКИ - единая тень */
.service-card,
.blog-card,
.feature-item .icon-wrapper {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.service-card:hover,
.blog-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

/* 10. HEADER - улучшенная читаемость */
#main-header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);
}

#main-header-menu a.menu-item {
  color: var(--primary);
}

#main-header-menu a.menu-item:hover,
#main-header-menu a.menu-item.active {
  color: var(--primary-dark);
  border-bottom-color: var(--primary);
}