/* 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
   ================================ */

/* ================================
   INTERIOR PAGE - CORNER LOGO & NAV
   Same as contact and services pages
   ================================ */
.corner-logo {
  position: fixed;
  top: 12px;
  left: calc(4% + 12px);
  z-index: 1001;
  display: block;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.corner-logo img {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 3px rgba(255, 255, 255, 1)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  transition: transform var(--transition-base), width var(--transition-base), filter var(--transition-base);
}

.corner-logo:hover img {
  transform: scale(1.05);
}

.corner-logo.scrolled img {
  width: 96px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

/* Interior Nav - Starts with white background */
.page-interior .nav-interior {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-interior .nav-no-logo .nav-content {
  justify-content: flex-end;
  padding-left: 140px;
}

.page-interior .nav-links {
  margin-right: 40px;
}

/* Desktop: show first Christmas Light Show link, hide mobile one */
.nav-link-mobile-last {
  display: none;
}

.page-interior .nav-interior .nav-link,
.page-interior .nav-interior .nav-phone {
  color: var(--color-text);
}

.page-interior .nav-interior .nav-link:hover {
  color: var(--color-orange);
}

.page-interior .nav-interior .nav-phone-icon {
  color: var(--color-orange);
}

.page-interior .nav-interior .hamburger span {
  background-color: var(--color-text);
}

/* Scrolled state */
.page-interior .nav.scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

/* ================================
   ABOUT HERO SECTION
   Full-width image with overlay
   ================================ */
.about-hero {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 400px;
  overflow: hidden;
  margin-top: 80px;
}

.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;
}

/* ================================
   CTA SECTION (Blue)
   ================================ */
.cta-section.section-blue {
  background-color: var(--color-blue);
}

.cta-content h2 {
  color: var(--color-white);
  margin-bottom: 16px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: var(--text-lg);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background-color: var(--color-white);
  color: var(--color-blue);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.btn-white:hover {
  background-color: var(--color-gray-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--color-white);
  padding: 14px 28px;
  font-weight: var(--weight-semibold);
  border: 2px solid var(--color-white);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.btn-outline-white:hover {
  background-color: var(--color-white);
  color: var(--color-blue);
}

/* ================================
   FOOTER STYLES
   Same as other interior pages
   ================================ */
.footer.section-dark {
  background-color: var(--footer-bg);
  padding-top: 80px;
  padding-bottom: 40px;
}

.footer-grid {
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  max-width: 280px;
}

.footer-logo {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--footer-text);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.footer h3 {
  color: var(--footer-heading);
  font-size: var(--text-base);
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer ul a {
  color: var(--footer-link);
  font-size: var(--text-sm);
}

.footer ul a:hover {
  color: var(--footer-link-hover);
}

.footer-contact p,
.footer-contact a {
  color: var(--footer-text);
  font-size: var(--text-sm);
  margin-bottom: 8px;
  display: block;
}

.footer-contact a:hover {
  color: var(--footer-link-hover);
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.footer-social a {
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-bottom p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  margin: 0;
}

.footer-bottom a {
  color: var(--color-orange);
}

/* ================================
   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 above Meet section
   ================================ */
.owners-photo-card {
  display: none;
}

@media (max-width: 768px) {
  /* Hide Hero on Mobile */
  .about-hero {
    display: none;
  }

  /* 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;
  }

  /* Corner Logo Mobile */
  .corner-logo {
    top: 8px;
    left: 8px;
  }

  .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;
  }

  .corner-logo img {
    width: 84px;
  }

  .corner-logo.scrolled img {
    width: 72px;
  }

  .page-interior .nav-no-logo .nav-content {
    padding-left: 90px;
  }

  /* Mobile Nav Fixes */
  .page-interior .nav-links {
    margin-right: 0;
    width: 240px;
  }

  .page-interior .hamburger {
    margin-left: 8px;
  }

  /* Mobile: hide desktop-first Light Show, show mobile-last one */
  .nav-link-desktop-first {
    display: none;
  }

  .nav-link-mobile-last {
    display: block;
  }

  /* 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;
  }

  /* CTA Section Mobile */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Footer Mobile */
  .footer-grid {
    text-align: center;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

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