/* ============================================================
   Lorla Florist — About Us Page Stylesheet
   Matches the home page design system
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Outfit:wght@300;400;500;600&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --lorla-cream: #FDF6F0;
  --lorla-lavender: #C4A7E7;
  --lorla-lavender-light: #E8D5F5;
  --lorla-rose: #E8A0BF;
  --lorla-rose-light: #F5D5E5;
  --lorla-gold: #D4A574;
  --lorla-gold-light: #E8C9A0;
  --lorla-charcoal: #2D2D2D;
  --lorla-text: #4A4A4A;
  --lorla-text-light: #7A7A7A;
  --lorla-white: #FFFFFF;
  --lorla-bg-gradient: linear-gradient(135deg, #FDF6F0 0%, #F5E6D8 50%, #E8D5F5 100%);
  --lorla-font-display: 'Cormorant Garamond', 'Georgia', serif;
  --lorla-font-body: 'Outfit', 'Segoe UI', sans-serif;
  --lorla-radius: 16px;
  --lorla-radius-sm: 8px;
  --lorla-shadow: 0 4px 24px rgba(0,0,0,0.06);
  --lorla-shadow-hover: 0 8px 40px rgba(0,0,0,0.12);
  --lorla-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Page Base ─────────────────────────────────────────────── */
.page-about-lorla {
  background: var(--lorla-cream);
  font-family: var(--lorla-font-body);
  color: var(--lorla-text);
}

.page-about-lorla .container-fluid,
.page-about-lorla .breadcrumb-wrap {
  display: none;
}

/* ── Hero Banner ───────────────────────────────────────────── */
.about-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--lorla-bg-gradient);
  overflow: hidden;
  padding: 80px 24px 60px;
}

.about-hero__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}

.about-hero__decor--1 {
  width: 400px;
  height: 400px;
  background: var(--lorla-lavender);
  top: -120px;
  right: -100px;
  animation: aboutFloat 8s ease-in-out infinite;
}

.about-hero__decor--2 {
  width: 280px;
  height: 280px;
  background: var(--lorla-rose);
  bottom: -80px;
  left: -60px;
  animation: aboutFloat 6s ease-in-out infinite reverse;
}

.about-hero__decor--3 {
  width: 150px;
  height: 150px;
  background: var(--lorla-gold);
  top: 30%;
  left: 10%;
  animation: aboutFloat 10s ease-in-out infinite;
}

.about-hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.about-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 167, 231, 0.12);
  border: 1px solid rgba(196, 167, 231, 0.25);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--lorla-lavender);
  margin-bottom: 20px;
  animation: aboutFadeUp 0.8s ease forwards;
}

.about-hero__badge svg {
  width: 16px;
  height: 16px;
}

.about-hero__title {
  font-family: var(--lorla-font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.15;
  color: var(--lorla-charcoal);
  margin: 0 0 16px;
  animation: aboutFadeUp 0.8s 0.15s ease both;
}

.about-hero__title em {
  font-style: italic;
  color: var(--lorla-lavender);
  font-weight: 400;
}

.about-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--lorla-text-light);
  margin: 0;
  animation: aboutFadeUp 0.8s 0.3s ease both;
}

/* ── Introduction Section ──────────────────────────────────── */
.about-intro {
  padding: 80px 24px;
  background: var(--lorla-white);
}

.about-intro__container {
  max-width: 900px;
  margin: 0 auto;
}

.about-intro__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-intro__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lorla-gold);
  margin-bottom: 12px;
  position: relative;
}

.about-intro__label::before,
.about-intro__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--lorla-gold);
}

.about-intro__label::before { right: calc(100% + 16px); }
.about-intro__label::after { left: calc(100% + 16px); }

.about-intro__heading {
  font-family: var(--lorla-font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--lorla-charcoal);
  margin: 0;
}

.about-intro__body {
  background: linear-gradient(135deg, rgba(253,246,240,0.6), rgba(232,213,245,0.2));
  border: 1px solid rgba(196,167,231,0.12);
  border-radius: var(--lorla-radius);
  padding: 48px 56px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.03);
  position: relative;
  overflow: hidden;
}

.about-intro__body::before {
  content: '🌸';
  position: absolute;
  top: -10px;
  right: 20px;
  font-size: 80px;
  opacity: 0.06;
  pointer-events: none;
}

.about-intro__body p {
  font-size: 16px;
  line-height: 2;
  color: var(--lorla-text);
  margin: 0 0 20px;
}

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

.about-intro__body p strong {
  color: var(--lorla-charcoal);
  font-weight: 600;
}

/* ── Services Section ──────────────────────────────────────── */
.about-services {
  padding: 80px 24px;
  background: var(--lorla-bg-gradient);
  position: relative;
  overflow: hidden;
}

.about-services::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--lorla-lavender);
  opacity: 0.05;
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.about-services::after {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--lorla-rose);
  opacity: 0.05;
  bottom: -120px;
  left: -100px;
  pointer-events: none;
}

.about-services__container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-services__header {
  text-align: center;
  margin-bottom: 56px;
}

.about-services__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lorla-gold);
  margin-bottom: 12px;
  position: relative;
}

.about-services__label::before,
.about-services__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--lorla-gold);
}

.about-services__label::before { right: calc(100% + 16px); }
.about-services__label::after { left: calc(100% + 16px); }

.about-services__heading {
  font-family: var(--lorla-font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--lorla-charcoal);
  margin: 0 0 8px;
}

.about-services__desc {
  font-size: 16px;
  color: var(--lorla-text-light);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Services Grid */
.about-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-svc {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--lorla-radius);
  padding: 40px 28px 36px;
  text-align: center;
  transition: var(--lorla-transition);
  position: relative;
  overflow: hidden;
}

/* Gradient top border on hover */
.about-svc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--lorla-radius) var(--lorla-radius) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-svc:nth-child(1)::before { background: linear-gradient(90deg, var(--lorla-lavender), var(--lorla-rose)); }
.about-svc:nth-child(2)::before { background: linear-gradient(90deg, var(--lorla-rose), var(--lorla-gold)); }
.about-svc:nth-child(3)::before { background: linear-gradient(90deg, var(--lorla-gold), var(--lorla-lavender)); }
.about-svc:nth-child(4)::before { background: linear-gradient(90deg, var(--lorla-rose), var(--lorla-lavender)); }
.about-svc:nth-child(5)::before { background: linear-gradient(90deg, var(--lorla-lavender), var(--lorla-gold)); }
.about-svc:nth-child(6)::before { background: linear-gradient(90deg, var(--lorla-gold), var(--lorla-rose)); }

.about-svc:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.about-svc:hover::before {
  opacity: 1;
}

.about-svc__emoji {
  font-size: 48px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.4s ease;
}

.about-svc:hover .about-svc__emoji {
  transform: scale(1.2) rotate(-5deg);
}

.about-svc__title {
  font-family: var(--lorla-font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--lorla-charcoal);
  margin: 0 0 12px;
  line-height: 1.3;
}

.about-svc__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lorla-text-light);
  margin: 0;
}

/* ── Gallery Strip ─────────────────────────────────────────── */
.about-gallery {
  padding: 80px 24px;
  background: var(--lorla-white);
}

.about-gallery__container {
  max-width: 1100px;
  margin: 0 auto;
}

.about-gallery__header {
  text-align: center;
  margin-bottom: 48px;
}

.about-gallery__label {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--lorla-gold);
  margin-bottom: 12px;
  position: relative;
}

.about-gallery__label::before,
.about-gallery__label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 1px;
  background: var(--lorla-gold);
}

.about-gallery__label::before { right: calc(100% + 16px); }
.about-gallery__label::after { left: calc(100% + 16px); }

.about-gallery__heading {
  font-family: var(--lorla-font-display);
  font-size: 38px;
  font-weight: 400;
  color: var(--lorla-charcoal);
  margin: 0;
}

.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.about-gallery__item {
  position: relative;
  border-radius: var(--lorla-radius);
  overflow: hidden;
  box-shadow: var(--lorla-shadow);
  height: 260px;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45,45,45,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.about-gallery__item:hover::after {
  opacity: 1;
}

.about-gallery__item:hover img {
  transform: scale(1.08);
}

.about-gallery__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: var(--lorla-white);
  font-family: var(--lorla-font-display);
  font-size: 18px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.4s ease 0.1s;
}

.about-gallery__item:hover .about-gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA Strip ─────────────────────────────────────────────── */
.about-cta {
  background: linear-gradient(135deg, var(--lorla-lavender) 0%, var(--lorla-rose) 50%, var(--lorla-gold-light) 100%);
  padding: 72px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-cta__decor {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  pointer-events: none;
  background: var(--lorla-white);
}

.about-cta__decor--1 {
  width: 350px;
  height: 350px;
  top: -140px;
  right: -80px;
}

.about-cta__decor--2 {
  width: 220px;
  height: 220px;
  bottom: -80px;
  left: -50px;
}

.about-cta__container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-cta__title {
  font-family: var(--lorla-font-display);
  font-size: 40px;
  font-weight: 400;
  color: var(--lorla-white);
  margin: 0 0 16px;
}

.about-cta__text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0 0 28px;
  line-height: 1.7;
}

.about-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--lorla-white);
  color: var(--lorla-charcoal);
  font-family: var(--lorla-font-body);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--lorla-transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.about-cta__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  color: var(--lorla-charcoal);
  text-decoration: none;
}

.about-cta__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.about-cta__btn:hover svg {
  transform: translateX(4px);
}

/* ── Scroll Reveal ─────────────────────────────────────────── */
.about-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.about-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Animations ────────────────────────────────────────────── */
@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes aboutFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(3deg); }
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-hero__title {
    font-size: 44px;
  }

  .about-services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro__heading,
  .about-services__heading,
  .about-gallery__heading {
    font-size: 32px;
  }

  .about-cta__title {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: auto;
    padding: 60px 20px 48px;
  }

  .about-hero__title {
    font-size: 34px;
  }

  .about-hero__subtitle {
    font-size: 15px;
  }

  .about-intro,
  .about-services,
  .about-gallery {
    padding: 56px 16px;
  }

  .about-intro__body {
    padding: 28px 24px;
  }

  .about-intro__body p {
    font-size: 15px;
    line-height: 1.85;
    text-align: left;
  }

  .about-services__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-gallery__grid {
    grid-template-columns: 1fr;
  }

  .about-gallery__item {
    height: 220px;
  }

  .about-intro__heading,
  .about-services__heading,
  .about-gallery__heading {
    font-size: 28px;
  }

  .about-cta__title {
    font-size: 28px;
  }

  .about-cta {
    padding: 56px 16px;
  }

  .about-cta__btn {
    padding: 14px 28px;
    font-size: 14px;
  }
}
