/* ==========================================================================
   HarNavCrafts — About / "Crafted with Passion" section
   Uses tokens from style.css (Fraunces / Outfit, rose palette)
   ========================================================================== */

.about-section {
  position: relative;
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--cream), #fff 60%);
  overflow: hidden;
}

.about-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

/* ================= TEXT COLUMN ================= */

.about-text-col {
  position: relative;
}

.about-section .why-divider {
    justify-content: flex-start;
	margin-bottom: 17px;
}
.about-section .why-divider span {
    width: 100px;
}
.btn.btn-dark {
    margin-top: 20px;
}

.about-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--color-rose-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.about-title .why-divider {
  margin-top: 16px;
  justify-content: flex-start;
}

.about-title .why-divider span {
  max-width: 70px;
}

.about-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 440px;
}

.about-desc p {
  margin: 0 0 18px;
}

.about-desc p:last-child {
  margin-bottom: 0;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding: 15px 30px;
  border-radius: 999px;
  background: var(--color-rose-soft);
  border: 1.5px solid var(--color-border);
  color: var(--color-rose-dark);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.94rem;
  transition: background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.about-cta svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .2s ease;
}

.about-cta:hover {
  background: var(--color-rose);
  border-color: var(--color-rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(224, 85, 128, 0.28);
}

.about-cta:hover svg {
  transform: translateX(3px);
}

/* Floating heart accents in the text column, like the reference */

.about-heart-float {
  position: absolute;
  color: var(--color-rose);
  opacity: 0.5;
  pointer-events: none;
}

.about-heart-float svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-heart-float.h1 {
  width: 22px;
  height: 22px;
  top: 6%;
  right: 6%;
}

.about-heart-float.h2 {
  width: 16px;
  height: 16px;
  top: 46%;
  right: 14%;
  opacity: 0.35;
}

/* ================= IMAGE COLUMN ================= */

.about-image-col {
  position: relative;
  display: flex;
  justify-content: center;
}

.about-image-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-frame);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(224, 85, 128, 0.18);
  border: 6px solid #fff;
}

.about-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* soft decorative blobs behind the image, matching the pink wash in the reference */

.about-image-col::before,
.about-image-col::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--color-rose-soft);
  z-index: -1;
  filter: blur(2px);
}

.about-image-col::before {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -30px;
  opacity: 0.7;
}

.about-image-col::after {
  width: 160px;
  height: 160px;
  bottom: -30px;
  left: -20px;
  opacity: 0.6;
}

/* ==========================================
   Story Banner
========================================== */

.about-story-banner {
    padding: 90px 80px;
    border-radius: 34px;
    position: relative;
    background: url("/images/about-bg.webp");
    box-shadow: 0 30px 70px rgba(232,105,145,.12);
    background-size: cover;
}

.about-story-content{

    max-width:620px;
    margin-left:auto;
    text-align:center;
}

.story-eyebrow{

    display:inline-block;

    color:#ea7898;

    font-size:.82rem;

    letter-spacing:.25em;

    text-transform:uppercase;

    font-weight:600;

    margin-bottom:18px;
}

.about-story-content h2{

    font-family:var(--font-display);

    font-size:3.1rem;

    line-height:1.1;

    color:#2a2323;

    margin-bottom:4px;
}
.about-story-content .why-divider{
    margin: 12px 0;
}

.about-story-content p{

    font-size:1rem;

    line-height:1.9;

    color:var(--ink-soft);

    margin-bottom:18px;
}
.about-inner-new {
    max-width: 1180px;
    margin: auto;
}
/* decorative heart */

.about-story-banner::after{

    content:"♡";

    position:absolute;

    right:60px;

    bottom:40px;

    font-size:60px;

    color:#ef8cab;

    opacity:.55;
}

@media (max-width:767px){

.about-story-banner {
    background: linear-gradient(rgba(255,247,249,.8), rgba(255,247,249,.8)),
        url("/images/about-bg.webp") center/cover no-repeat;
	padding: 42px 18px 42px;
    background-position: left center;
}

.about-story-content{

    margin:auto;
}

.about-story-content h2{

    font-size:2.3rem;
}

.about-story-banner::after{

    display:none;
}

}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 980px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .about-text-col {
    order: 2;
  }

  .about-image-col {
    order: 1;
  }

  .about-title .why-divider,
  .about-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .about-title .why-divider {
    justify-content: center;
  }

  .about-heart-float {
    display: none;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 40px 18px 50px;
  }

  .about-title {
    font-size: 2.1rem;
  }

  .about-desc {
    font-size: 0.94rem;
  }

  .about-cta {
    width: 100%;
    justify-content: center;
    margin-top: 26px;
  }

  .about-image-frame {
    border-width: 4px;
    border-radius: 24px;
  }
  .about-section .why-divider {
    justify-content: center;
	}
	.about-section .why-divider span {
		width: 60px;
	}
}
