/* ========================================
   ABOUT SECTION STYLES
   ======================================== */

.about {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--black) 100%);
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.about-text {
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.about-text h3 {
  color: var(--gold);
  /* font-family: "Playfair Display", serif; */
  font-size: 2.2rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--light-gray);
  margin-bottom: 25px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-visual {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("../img/chandon1.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  z-index: 1;
  transition: transform 0.3s ease;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
  transition: opacity 0.3s ease;
}

.about-visual:hover {
  transform: scale(1.02);
}

.about-visual:hover::before {
  opacity: 0.8;
}

/* About Responsive */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .about-text {
    padding-right: 0;
    order: 2;
  }

  .about-visual {
    order: 1;
    height: 350px;
  }

  .about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .about-visual {
    height: 300px;
    border-radius: 15px;
  }

  .about-text h3 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}
