/* About Us page – VapeHaven
 * Scoped mostly under .vhn_about_page to avoid global conflicts.
 */

/* Google Fonts – Inter + Poppins (only for this page design) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700&display=swap');

/* এই CSS ফাইলটা শুধু About Us পেজে enqueue হয়,
   তাই এখানে .site-main এর padding override করাটা safe */
.site-main {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* CSS Variables */
:root {
  --vhn-dark-bg: #050505;
  --vhn-dark-gradient: radial-gradient(circle at top center, #1f1f1f 0%, #050505 80%);
  --vhn-light-bg: #fafafa;
  --vhn-white: #ffffff;
  --vhn-yellow: #ffb800;
  --vhn-yellow-hover: #e0a300;
  --vhn-text-dark: #171717;
  --vhn-text-muted: #52525b;
  --vhn-text-light: #e4e4e7;
  --vhn-text-light-muted: #a1a1aa;
  --vhn-border: #e4e4e7;
  --vhn-shadow-card: 0 12px 40px -10px rgb(0 0 0 / 38%);
  --vhn-shadow-hover: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
  --vhn-transition: all 0.3s ease;
}

/* Reset & Base Styles (scoped) */
.vhn_about_page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.vhn_about_page {
  font-family: 'Inter', sans-serif;
  background-color: var(--vhn-light-bg);
  color: var(--vhn-text-dark);
  overflow-x: hidden;
  line-height: 1.6;
}

.vhn_about_page h1,
.vhn_about_page h2,
.vhn_about_page h3,
.vhn_about_page h4,
.vhn_about_page h5,
.vhn_about_page h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.2;
  color: inherit;
}

.vhn_about_page a {
  text-decoration: none;
  color: inherit;
}

.vhn_about_page button {
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  border: none;
  background: none;
}

.vhn_about_page img {
  max-width: 100%;
  display: block;
}

/* Utility Classes */
.vhn_container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.vhn_full_bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.vhn_text_center {
  text-align: center;
}

/* Section Badges */
.vhn_badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1f1f1f !important;
  color: var(--vhn-yellow) !important;
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.vhn_badge svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.vhn_badge_light {
  background: #f4f4f5;
  color: var(--vhn-text-dark);
}

.vhn_badge_light svg {
  fill: var(--vhn-yellow);
}

/* Buttons */
.vhn_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--vhn-transition);
}

.vhn_btn_dark {
  background-color: var(--vhn-text-dark);
  color: var(--vhn-white) !important;
}

.vhn_btn_dark:hover {
  background-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vhn_btn_outline {
  background-color: transparent;
  border: 1px solid var(--vhn-text-dark);
  color: var(--vhn-text-dark);
}

.vhn_btn_outline:hover {
  background-color: var(--vhn-text-dark);
  color: var(--vhn-white);
  transform: translateY(-2px);
}

.vhn_btn_yellow {
  background-color: var(--vhn-yellow);
  color: var(--vhn-text-dark);
}

.vhn_btn_yellow:hover {
  background-color: var(--vhn-yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.vhn_btn_outline_yellow {
  background-color: transparent;
  border: 1px solid var(--vhn-text-muted);
  color: var(--vhn-white);
}

.vhn_btn_outline_yellow:hover {
  border-color: var(--vhn-yellow);
  color: var(--vhn-yellow);
  transform: translateY(-2px);
}

/* Header Section */
.vhn_header {
  background: var(--vhn-dark-gradient);
  color: var(--vhn-white);
  padding: 100px 0 160px;
  position: relative;
}

.vhn_header_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background-color: var(--vhn-yellow);
  border-radius: 16px;
  margin-bottom: 24px;
}

.vhn_header_icon svg {
  width: 32px;
  height: 32px;
  fill: var(--vhn-text-dark);
}

.vhn_header h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.vhn_header p {
  font-size: 1.125rem;
  color: var(--vhn-text-light-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Stats Section */
.vhn_stats {
  margin-top: -80px;
  position: relative;
  z-index: 10;
  margin-bottom: 80px;
}

.vhn_stats_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vhn_stat_card {
  background: var(--vhn-white);
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--vhn-shadow-card);
  transition: var(--vhn-transition);
}

.vhn_stat_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vhn-shadow-hover);
}

.vhn_stat_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #010100;
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--vhn-yellow);
}

.vhn_stat_icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.vhn_stat_value {
  font-size: 2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  color: var(--vhn-text-dark);
  margin-bottom: 4px;
}

.vhn_stat_label {
  font-size: 0.875rem;
  color: var(--vhn-text-muted);
  font-weight: 500;
}

/* Our Story Section */
.vhn_story {
  padding: 80px 0;
}

.vhn_story_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.vhn_story_content h2 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  font-weight: 700;
}

.vhn_story_content p {
  color: var(--vhn-text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.vhn_story_actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.vhn_story_image {
  position: relative;
  border-radius: 24px;
  z-index: 1;
}

.vhn_story_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow: var(--vhn-shadow-card);
}

/* Tilted yellow background exactly matching the design */
.vhn_story_image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--vhn-yellow);
  border-radius: 24px;
  z-index: 1;
  transform: rotate(-3deg);
  transform-origin: center;
}

/* Values Section */
.vhn_values {
  padding: 80px 0;
  text-align: center;
}

.vhn_section_header {
  margin-bottom: 60px;
}

.vhn_section_header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.vhn_section_header p {
  color: var(--vhn-text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.vhn_values_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: left;
}

.vhn_value_card {
  background: var(--vhn-white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--vhn-shadow-card);
  transition: var(--vhn-transition);
}

.vhn_value_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vhn-shadow-hover);
  border-bottom: 4px solid var(--vhn-yellow);
}

.vhn_value_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background-color: var(--vhn-text-dark);
  color: var(--vhn-yellow);
  border-radius: 16px;
  margin-bottom: 24px;
}

.vhn_value_icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.vhn_value_card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.vhn_value_card p {
  font-size: 0.875rem;
  color: var(--vhn-text-muted);
  line-height: 1.6;
}

/* Timeline Section */
.vhn_timeline_section {
  padding: 80px 0;
  background: var(--vhn-light-bg);
}

.vhn_timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 0;
}

.vhn_timeline::before {
  content: '';
  position: absolute;
  width: 2px;
  background-color: #d4d4d8;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.vhn_timeline_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 60px;
  position: relative;
}

.vhn_timeline_item:last-child {
  margin-bottom: 0;
}

.vhn_timeline_item.vhn_left {
  flex-direction: row-reverse;
}

.vhn_timeline_content {
  width: calc(50% - 40px);
  background: var(--vhn-white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--vhn-shadow-card);
  position: relative;
  transition: var(--vhn-transition);
}

.vhn_timeline_content:hover {
  transform: translateY(-3px);
  box-shadow: var(--vhn-shadow-hover);
}

.vhn_timeline_dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--vhn-yellow);
  border: 4px solid var(--vhn-light-bg);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 0 4px #d4d4d8;
}

.vhn_timeline_year {
  color: var(--vhn-yellow);
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.vhn_timeline_content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.vhn_timeline_content p {
  font-size: 0.875rem;
  color: var(--vhn-text-muted);
}

/* Team Section */
.vhn_team {
  padding: 80px 0 100px;
}

.vhn_team_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.vhn_team_card {
  background: var(--vhn-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--vhn-shadow-card);
  transition: var(--vhn-transition);
}

.vhn_team_card:hover {
  transform: translateY(-5px);
  box-shadow: var(--vhn-shadow-hover);
}

.vhn_team_image {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.vhn_team_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--vhn-transition);
}

.vhn_team_card:hover .vhn_team_image img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.vhn_team_info {
  padding: 24px;
  text-align: center;
}

.vhn_team_info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.vhn_team_info p {
  font-size: 0.875rem;
  color: var(--vhn-text-muted);
}

/* Footer CTA */
.vhn_footer_cta {
  background: var(--vhn-dark-bg);
  color: var(--vhn-white);
  padding: 100px 0;
  text-align: center;
}

.vhn_footer_cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.vhn_footer_cta p {
  font-size: 1rem;
  color: var(--vhn-text-light-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.vhn_footer_actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .vhn_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 768px) {
  .vhn_header h1 {
    font-size: 2.25rem;
  }

  .vhn_story_grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .vhn_story_content {
    order: 2;
  }

  .vhn_story_image {
    order: 1;
  }

  /* Timeline Mobile Fixes */
  .vhn_timeline::before {
    left: 20px;
    transform: none;
  }

  .vhn_timeline_item,
  .vhn_timeline_item.vhn_left {
    flex-direction: column;
    align-items: flex-end;
  }

  .vhn_timeline_content {
    width: calc(100% - 60px);
  }

  .vhn_timeline_dot {
    left: 20px;
    transform: translateX(-50%);
  }

  .vhn_footer_actions {
    flex-direction: column;
    align-items: center;
  }

  .vhn_footer_actions .vhn_btn {
    width: 100%;
    max-width: 300px;
  }
}

/* 🔥 Mobile breakpoint */
@media (max-width: 480px) {
  /* Stats – mobile এ ২ কলাম */
  .vhn_stats_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Values – mobile এ ১ কলাম (আগের মতোই single) */
  .vhn_values_grid {
    grid-template-columns: 1fr;
  }

  /* Team – mobile এ ২ কলাম */
  .vhn_team_grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vhn_header {
    padding: 80px 0 120px;
  }
}