@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400&family=Montserrat:wght@500;700&display=swap');

/* === ZÁKLADNÉ === */
body {
  font-family: 'Roboto', sans-serif;
  background-color: #F6F7F9;
  color: #27364B;
  margin: 0;
  padding: 0;
}

/* === HLAVNÝ KONTEJNER === */
.about-container {
  padding: 80px 20px;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* === PROFIL (FOTKA + MENO) === */
.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.about-image {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #FF9100;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
}

.about-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #27364B !important;
  margin-top: 15px;
  text-shadow: none;
}


/* === TEXT === */
.about-text {
  background: #ffffff;
  border-radius: 16px;
  padding: 50px 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  text-align: justify;
  max-width: 800px;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #27364B;
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  text-align: center;
}

/* === LINKY === */
.about-text a {
  color: #FF9100;
  text-decoration: none;
  font-weight: 600;
}

.about-text a:hover {
  color: #e58a00;
  text-decoration: underline;
}

/* === RESPONSIVITA === */
@media (max-width: 992px) {
  .about-text {
    padding: 35px 30px;
  }
  .about-image {
    width: 180px;
    height: 180px;
  }
  .about-header h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .about-text {
    padding: 25px 22px;
    font-size: 1rem;
  }
  .about-image {
    width: 150px;
    height: 150px;
  }
  .about-header h2 {
    font-size: 1.4rem;
  }
}
