/* =====================================================
   about.css — Maris Vlora Boat Tours
   About page. Requires shared.css.
   ===================================================== */

/* ── HERO ── */
.about-hero {
  position: relative;
  min-height: 560px;
  height: auto;
  overflow: hidden;
}

.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,27,42,0.3) 0%, rgba(13,27,42,0.72) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-top: calc(var(--nav-h) + 24px);
}

.about-breadcrumb a,
.about-breadcrumb span {
  color: rgba(255,255,255,0.72) !important;
}

.about-hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--white);
  margin: 16px 0 16px;
}

.about-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  max-width: 540px;
}

/* ── SHARED SECTION ── */
.about-section {
  padding: 80px 0;
}

.about-section:nth-child(even) {
  background: var(--cream);
}

.about-section:nth-child(odd) {
  background: var(--white);
}

/* ── TWO COLUMN LAYOUT ── */
.about-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-two-col--reverse {
  direction: rtl;
}

.about-two-col--reverse > * {
  direction: ltr;
}

.about-text .section-tag {
  display: block;
  margin-bottom: 12px;
}

.about-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

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

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.about-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── STATS BAR ── */
.about-stats {
  background: var(--navy);
  padding: 48px 0;
}

.about-stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.about-stat {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.about-stat strong {
  display: block;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat span {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}

/* ── WHY CHOOSE US ── */
.about-why {
  background: var(--cream) !important;
}

.about-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.about-why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.about-why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.about-why-icon {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.about-why-icon svg {
  color: var(--orange);
}

.about-why-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

/* ── CTA ── */
.about-cta {
  background: var(--orange);
  padding: 64px 0;
}

.about-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.about-cta h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  margin-bottom: 8px;
}

.about-cta p {
  font-size: 16px;
  color: var(--white);
  line-height: 1.6;
}

.about-cta-btns {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}

.about-cta .btn-primary {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
}

.about-cta .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-two-col {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 460px;
    height: auto;
  }

  .about-section {
    padding: 56px 0;
  }

  .about-two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-two-col--reverse {
    direction: ltr;
  }

  .about-stats-inner {
    gap: 24px;
  }

  .about-stat {
    min-width: 80px;
  }

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

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .about-cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .about-cta-btns a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 380px;
    height: auto;
  }

  .about-hero-title {
    letter-spacing: -1.5px;
  }

  .about-stats-inner {
    grid-template-columns: 1fr 1fr;
    display: grid;
  }
}
