/**
 * Jaunt Studio - About Page Styles
 */

body {
  background-color: #fff;
}

/* Header Always Visible */
.header {
  opacity: 1 !important;
  transform: translateY(0) !important;
  pointer-events: auto !important;
  background: rgba(255, 255, 255, 0.75) !important;
}

/* About Hero Section */
.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 40px 80px;
  background: #f7f7f5;
  z-index: 2;
}

.about-container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text {
  max-width: 600px;
}

.about-title {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #000;
}

.about-subtitle {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  max-width: 700px;
  margin: 0 0 40px 0;
}

.about-bio {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 48px;
}

.about-bio p {
  margin: 0 0 24px 0;
}

.about-bio em {
  font-style: italic;
  color: #000;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
  padding: 32px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.detail-label {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #f05a22;
  font-weight: 400;
}

.detail-value {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cta-link {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  color: #f05a22 !important;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-link:hover,
.cta-link:visited {
  color: #f05a22 !important;
}

/* Blob Image Effect */
.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blob-svg {
  max-width: 550px;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1.7;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
  will-change: transform;
}

.blob-svg image {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.blob-svg #blobClip {
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-svg:hover #blobClip {
  transform: scale(1.08);
}

.blob-text {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  fill: #000;
  opacity: 0.8;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.blob-svg:hover .blob-text {
  fill: #fff;
  opacity: 1;
  mix-blend-mode: overlay;
}

/* Clients Section */
.clients-section {
  position: relative;
  padding: 100px 40px;
  background: #fff;
  z-index: 2;
}

.clients-title {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  margin: 0 0 60px 0;
  color: #000;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px 48px;
  max-width: 1000px;
  margin: 0 auto;
}

.client-name {
  font-family: 'Strawford', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #666;
  text-align: center;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.client-name:hover {
  color: #f05a22;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image {
    order: -1;
  }

  .blob-svg {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 140px 24px 60px;
  }

  .about-content {
    gap: 48px;
  }

  .about-bio {
    font-size: 16px;
  }

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

  .clients-section {
    padding: 80px 24px;
  }

  .clients-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px 32px;
  }

  .blob-svg {
    max-width: 320px;
  }
}

@media (max-width: 480px) {
  .about-details {
    gap: 16px;
  }

  .detail-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .clients-grid {
    grid-template-columns: 1fr;
  }
}

/* Blob Parallax Effect */
.blob-svg {
  will-change: transform;
  transition: transform 0.1s linear;
}
