/* /var/www/html/css/header.css */

/* Шапка */
.hero {
  padding: 100px 0 80px;
  text-align: center;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.profile-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  flex-wrap: wrap; /* мобилка/узкие экраны */
}

/* КЛЮЧЕВОЕ: на десктопе НЕ даём переноситься в столбик */
@media (min-width: 980px) {
  .profile-section {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    text-align: left;
  }

  .profile-info {
    text-align: left;
  }
}

.profile-photo {
  width: 280px;
  height: 320px;
  border-radius: 15px;
  object-fit: cover;
  object-position: top center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  border: 5px solid white;
  transition: transform 0.4s ease;
  flex: 0 0 280px;
}

.profile-photo:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.profile-info {
  flex: 1 1 520px; /* даём место тексту */
  min-width: 320px; /* чтобы не ломало верстку */
}

.profile-info h1 {
  font-size: 3em;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 700;
}

.profile-info h2 {
  font-size: 1.6em;
  color: #2962ff;
  margin-bottom: 20px;
  font-weight: 500;
}

.profile-desc {
  max-width: 650px;
  font-size: 1.1em;
  line-height: 1.8;
  color: #444;
  text-align: left;
}
