/* Title + Hero */
.about-title {
    color: rgb(165, 0, 0); /* soft boutique red */
    font-weight: 700;
}

.about-subtitle {
    color: #28a745; /* boutique green */
    font-size: 1.2rem;
}

/* Section Headings */
.section-heading {
    color: rgb(255, 0, 0); /* intense red accent */
    font-weight: 600;
    margin-bottom: 20px;
}
.offer-list{
    color: rgb(165, 0, 0);
    list-style-type: none;
    padding-left: 0;
}

/* Body Text */
.section-text {
      color: rgb(165, 0, 0);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-subtitle {
    color: #28a745;
    font-weight: 600;
    letter-spacing: 1px;
}

.philosophy-quote {
    font-size: 1.8rem;
    font-weight: 500;
    color: rgb(165, 0, 0); /* soft red for elegance */
    margin: 20px 0;
    font-family: "Playfair Display", serif;
}

.philosophy-author {
    color: #007bff; /* default blue */
    font-style: italic;
}

/* Offer List */
.offer-list li {
    color: rgb(165, 0, 0);
  
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.offer-list li::before {
    content: "✓"; /* checkmark bullet */
    color: #28a745; /* boutique green */
    margin-right: 10px;
  }

  body{
    background: 
        linear-gradient(rgba(255,255,255,0.9), rgba(255,255,255,0.9)),
        url(./Images/BoutiqueMain.jpg) center/cover no-repeat;
}

.breadcrumb-item a {
    color: rgb(165, 0, 0);
    font-weight: 500;
}

/* Slow fade-in effect */
.about-hero,
.about-story,
.about-philosophy,
.about-offer,
.about-promise {
    opacity: 0.9;
    transition: opacity 10.5s ease, color 10.5s ease;
}

.about-hero.show,
.about-story.show,
.about-philosophy.show,
.about-offer.show,
.about-promise.show {
    opacity: 1;
}
