/* about.css */
/* Page-specific styles for About page */
/* Mega menu styles are in styles.css - do not duplicate here */

/* ===================================
   HERO SECTION
   =================================== */
.ab-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.ab-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("https://storage.googleapis.com/kws-clientele/Marsh%20Creek%20Boat%20Rental/Optimized/drone-marsh-creek-lake-aerial-sunset-panorama-landscape.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.ab-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.35) 100%
  );
  z-index: 1;
}

.ab-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 5%;
}

.ab-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.ab-hero-content h2 {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: var(--medium-text);
  letter-spacing: 1px;
  text-align: center;
}

.ab-hero-content h2::after {
  display: none;
}

/* ===================================
   MISSION SECTION
   =================================== */
.ab-mission {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.ab-mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ab-mission-text h2 {
  text-align: left;
  font-size: 2.2rem;
}

.ab-mission-text h2::after {
  left: 0;
  transform: none;
}

.ab-mission-text p {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.8;
}

.ab-mission-image {
  border-radius: 8px;
  overflow: hidden;
}

.ab-mission-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* ===================================
   THE LAKE SECTION
   =================================== */
.ab-lake {
  background: var(--darker-bg);
  padding: 6rem 0;
}

.ab-lake h2 {
  margin-bottom: 3rem;
}

.ab-lake-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.ab-lake-image {
  border-radius: 8px;
  overflow: hidden;
}

.ab-lake-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.ab-lake-text > p {
  font-size: 1.05rem;
  color: rgba(245, 245, 245, 0.85);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ab-lake-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.ab-lake-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.ab-lake-feature i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.2rem;
  min-width: 2rem;
  text-align: center;
}

.ab-lake-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--light-text);
}

.ab-lake-feature p {
  font-size: 0.95rem;
  color: rgba(245, 245, 245, 0.7);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===================================
   VALUES SECTION
   =================================== */
.ab-values {
  background: var(--dark-bg);
  padding: 6rem 0;
}

.ab-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ab-value-card {
  background: var(--primary-color);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ab-value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(25, 90, 159, 0.3);
}

.ab-value-card i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1.25rem;
  display: block;
}

.ab-value-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #fff;
}

.ab-value-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ===================================
   CROSS-SELL STRIP
   =================================== */
.ab-cross-sell {
  background: var(--darker-bg);
  padding: 5rem 0;
}

.ab-cross-sell h2 {
  color: #fff;
}

.ab-cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.ab-cross-sell-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: flex-end;
}

.ab-cross-sell-card img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ab-cross-sell-card:hover img {
  transform: scale(1.05);
}

.ab-cross-sell-card-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
}

.ab-cross-sell-card-content h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.ab-cross-sell-card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.ab-cross-sell-card-content .btn {
  font-size: 0.85rem;
  padding: 0.5rem 1.2rem;
}

/* ===================================
   CTA SECTION
   =================================== */
.ab-cta {
  position: relative;
  padding: 6rem 0;
  text-align: center;
  overflow: hidden;
}

.ab-cta .container {
  position: relative;
  z-index: 2;
}

.ab-cta h2 {
  color: #fff;
  font-size: 2.5rem;
}

.ab-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.ab-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */

/* Tablet */
@media (max-width: 1024px) {
  .ab-mission-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ab-mission-text h2 {
    text-align: center;
  }

  .ab-mission-text h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .ab-lake-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .ab-values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .ab-hero-content {
    padding: 0 5%;
    margin-top: 4rem;
  }

  .ab-hero-content h1 {
    font-size: 2.2rem;
  }

  .ab-mission,
  .ab-lake,
  .ab-values,
  .ab-cross-sell,
  .ab-cta {
    padding: 4rem 0;
  }

  .ab-cross-sell-grid {
    grid-template-columns: 1fr;
  }

  .ab-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ab-cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .ab-hero-content h1 {
    font-size: 1.8rem;
    letter-spacing: 1.5px;
  }

  .ab-value-card {
    padding: 2rem 1.5rem;
  }
}
