/* About Section - Mobile First */
.about-section {
  background-color: #fdf5f8;
  padding: 40px 0;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  text-align: center;
}

.about-text {
  width: 100%;
  order: 2;
}

.about-text .tagline {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
  line-height: 1.3;
}

.about-text p {
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.about-text .btn:hover {
  background: #c91c75;
  transform: translateY(-1px);
}

.about-image {
  width: 100%;
  max-width: 300px;
  order: 1;
  position: relative;
  cursor: pointer;
}

.about-image img {
  border-radius: 20px;
  width: 60%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
  margin: auto;
  transition: all 0.4s ease;
  border: 3px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-image:hover img {
  transform: translateY(-10px);
  border: 3px solid var(--primary-color);
  box-shadow: 0 8px 30px rgba(193, 52, 118, 0.3);
}

/* Tablet - 768px and up */
@media (min-width: 768px) {
  .about-section {
    padding: 50px 0;
  }

  .about-section .container {
    padding: 0 40px;
  }

  .about-content {
    flex-direction: row;
    gap: 40px;
    text-align: left;
  }

  .about-text {
    flex: 1.2;
    order: 1;
  }

  .about-text .tagline {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .about-text h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }

  .about-text p {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .about-image {
    flex: 0.8;
    max-width: none;
    order: 2;
  }

  .about-image img {
    border-radius: 20px;
    height: 450px;
    width: auto;
    transition: all 0.4s ease;
    border: 3px solid transparent;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .about-image:hover img {
    transform: translateY(-12px);
    border: 3px solid var(--primary-color);
    box-shadow: 0 12px 40px rgba(193, 52, 118, 0.3);
  }
}

/* Desktop - 1024px and up */
@media (min-width: 1024px) {
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    gap: 60px;
  }

  .about-text .tagline {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
  }

  .about-image img {
    height: 500px;
  }

  .about-image:hover img {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(193, 52, 118, 0.4);
  }
}
