/* ...............About Page Custom Styling.................  */

.about-hero {
  padding: 120px 0;
  background-color: #fff;
}

.sub-heading {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-pink);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
  margin-bottom: 30px;
}

.lead-text {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

.hero-image-container img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease;
}

.hero-image-container:hover img {
  transform: scale(1.02);
}

.divider {
  width: 60px;
  height: 3px;
  background-color: var(--color-pink);
  margin-top: 15px;
}

.philosophy-card {
  background: white;
  border-radius: 8px;
  transition: all 0.3s ease;
  height: 100%;
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.icon-box {
  font-size: 32px;
  color: var(--color-pink);
  margin-bottom: 20px;
}

.philosophy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #333;
}

.philosophy-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.grand-quote {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-style: italic;
  color: #5c4033;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
  padding: 40px 0;
}

.grand-quote::before,
.grand-quote::after {
  content: '"';
  font-size: 80px;
  color: rgba(92, 64, 51, 0.1);
  position: absolute;
}

.grand-quote::before {
  top: -20px;
  left: -20px;
}

.grand-quote::after {
  bottom: -60px;
  right: -20px;
}

/* Header Adjustments */
header {
  background-color: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navigation.navbar-dark .navbar-nav .nav-link {
  color: #333 !important;
}

@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
  }
  .about-hero {
    padding: 60px 0;
    text-align: center;
  }
  .hero-text {
    text-align: center !important;
    margin-top: 40px;
  }
}
