.about-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  background: linear-gradient(135deg, rgba(207, 167, 167, 0.1) 0%, rgba(140, 93, 93, 0.1) 100%);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 40px;
}

.about-image {
  animation: fadeInRight 1s ease-out;
}

.about-image img {
  max-width: 300px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.about-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.about-content {
  flex: 1;
  animation: fadeInLeft 1s ease-out;
}

.about-content h1 {
  font-family: 'Lora', serif;
  font-size: 36px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #623838, #8c5d5d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.about-content h2 {
  margin-top: 30px;
  color: #623838;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.5s both;
  opacity: 0;
}

.about-content p:nth-child(even) {
  animation-delay: 0.7s;
}

.about-content p:nth-child(odd) {
  animation-delay: 0.6s;
}

.about-content ul {
  list-style: disc inside;
  margin-bottom: 20px;
}

.about-cta {
  display: inline-block;
  background: linear-gradient(135deg, #cfa7a7, #b89999);
  color: #492626;
  padding: 15px 30px;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(207, 167, 167, 0.4);
  animation: fadeInUp 1s ease-out 0.8s both;
  opacity: 0;
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8c5d5d, #623838);
  transition: left 0.3s ease;
  z-index: -1;
}

.about-cta:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(140, 93, 93, 0.4);
}

.about-cta:hover::before {
  left: 0;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column-reverse; /* ✅ to zmienia kolejność! */
    text-align: center;
  }

  .about-image img {
    max-width: 80%;  /* procent zamiast px! */
  height: auto;    /* proporcje! */
    margin-bottom: 20px;
  }

  .about-content ul {
    text-align: left;
    display: inline-block;
  }
}
