/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
/* ================================
   ABOUT PAGE - CURLY TAIL SCREEN & WINDOW
   Blue theme for informational sections
   Matching homepage and services styling patterns
   ================================ */

/* ================================
   ABOUT HERO SECTION
   Full-width image with overlay
   Base .about-hero layout moved to internal-critical.css.
   ================================ */
/* .about-hero base moved to internal-critical.css */

.about-hero-image {
  width: 100%;
  height: auto;
}

.about-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 7;
}

.about-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}

.about-hero-content {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 40px 0;
  padding-left: 8%;
  text-align: left;
}

.about-hero-content .section-label {
  display: inline-block;
  background-color: var(--color-orange);
  color: var(--color-white);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.about-hero-content h1 {
  color: var(--color-white);
  font-size: var(--text-4xl);
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.about-hero-content p {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-2xl);
  white-space: nowrap;
  margin-bottom: 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* ================================
   ABOUT INTRO SECTION
   ================================ */
.about-intro-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-intro-content h2 {
  margin-bottom: 20px;
}

.about-intro-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: var(--text-lg);
}

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

/* ================================
   WHY DIFFERENT SECTION
   ================================ */
.features-grid.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card.card {
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  text-align: center;
}

.feature-card .card-body {
  padding: 32px 24px;
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-blue-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
}

.feature-card .feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-blue);
}

.feature-card h3 {
  font-size: var(--text-lg);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ================================
   MEET OWNERS SECTION
   ================================ */
.owners-grid.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.owner-card.card {
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.owner-card .card-body {
  padding: 32px;
}

.owner-card h3 {
  font-size: var(--text-xl);
  margin-bottom: 16px;
  color: var(--color-blue);
}

.owner-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.owner-card p:last-child {
  margin-bottom: 0;
}

.owner-card strong {
  color: var(--color-text);
}

/* ================================
   SERVICE AREA SECTION
   ================================ */
.area-grid.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.area-item {
  text-align: center;
  padding: 24px 16px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.area-item h4 {
  font-size: var(--text-base);
  margin-bottom: 0;
  color: var(--color-text);
}

/* ================================
   KRISTEN AT WORK SECTION
   ================================ */
.kristen-photos.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.kristen-photo {
  text-align: center;
}

.kristen-photo img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-caption {
  margin-top: 16px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  font-style: italic;
}

/* Future Owners - Twins Photo */
.future-owners {
  text-align: center;
  margin-top: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.future-owners img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.future-owners .photo-caption {
  font-size: var(--text-base);
  font-weight: var(--weight-medium);
  color: var(--color-orange);
  font-style: normal;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */
@media (max-width: 1024px) {
  .features-grid.grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .owners-grid.grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

/* ================================
   OWNERS PHOTO CARD
   Desktop: hidden. Mobile: shown at top of page (above about-intro).
   ================================ */
.owners-photo-card {
  display: none;
}

@media (max-width: 768px) {
  /* .about-hero { display: none } moved to internal-critical.css */

  /* Reduce gap between top photo and intro text on mobile */
  .about-intro.section {
    padding-top: 40px;
  }

  /* Show Owners Photo Card on Mobile */
  .owners-photo-card {
    display: block;
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }

  .owners-photo-card img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Kristen Photos Mobile */
  .kristen-photos.grid-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-hero-content {
    padding-left: 20px;
  }

  .about-hero-content p {
    font-size: var(--text-lg);
    white-space: normal;
  }

  .about-hero-content p br {
    display: none;
  }

  /* Features Grid Mobile */
  .features-grid.grid-3 {
    grid-template-columns: 1fr;
  }

  /* Owner Cards Mobile */
  .owner-card .card-body {
    padding: 24px;
  }

  /* Area Grid Mobile */
  .area-grid.grid-4 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .area-item {
    padding: 16px 12px;
  }
}

/* This site was custom designed by Sitethreesixty.com and is actively managed by Sitethreesixty.com */
