/* === Our Story Page Styles === */
/* Inherits base styles from style.css */

/* Hero */
.story-hero {
  position: relative;
  height: 70vh;
  min-height: 450px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
}

.story-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(26, 26, 26, 0.4) 100%);
  z-index: 2;
}

.story-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}

.story-hero-content h1 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: -0.01em;
}

.story-hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.9;
  max-width: 550px;
  margin: 0 auto 25px;
  font-weight: 300;
}

.story-hero-content .divider .divider-line {
  background-color: rgba(255, 255, 255, 0.4);
}

.story-hero-content .divider i {
  color: var(--accent);
}

/* Story Sections */
.story-section {
  padding: 100px 20px;
  background-color: var(--bg);
}

.story-section.alt {
  background-color: #fff;
}

.story-container {
  max-width: 1100px;
  margin: 0 auto;
}

.story-flex {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.story-flex.reverse {
  flex-direction: row-reverse;
}

/* Story Images */
.story-image {
  flex: 1;
  min-width: 300px;
}

.story-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease;
}

.story-image:hover img {
  transform: scale(1.02);
}

/* Story Content */
.story-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.story-tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.story-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.story-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.8;
  margin-bottom: 15px;
}

/* Quote */
.story-quote {
  border-left: 3px solid var(--accent);
  padding: 20px 24px;
  margin: 25px 0;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--dark);
  background: rgba(209, 191, 167, 0.08);
  border-radius: 0 8px 8px 0;
  line-height: 1.7;
}

.story-quote i {
  color: var(--accent);
  margin-right: 8px;
  font-size: 0.9rem;
}

/* Stats */
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--dark);
  opacity: 0.6;
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features */
.story-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 25px;
}

.story-features .feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(209, 191, 167, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.story-features .feature-item:hover {
  background: rgba(209, 191, 167, 0.2);
  transform: translateX(6px);
}

.story-features .feature-item i {
  color: var(--accent);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.story-features .feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
}

/* CTA Section */
.story-cta {
  background-color: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.story-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
  color: var(--white);
}

.story-cta p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.story-cta .btn.primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .story-hero {
    height: 50vh;
    min-height: 350px;
  }

  .story-section {
    padding: 70px 20px;
  }

  .story-flex,
  .story-flex.reverse {
    flex-direction: column;
    text-align: center;
    gap: 35px;
  }

  .story-content {
    max-width: none;
  }

  .story-image img {
    height: 280px;
  }

  .story-stats {
    justify-content: center;
    gap: 50px;
  }

  .story-features .feature-item {
    justify-content: center;
  }

  .story-cta {
    padding: 60px 20px;
  }
}
