/* Hero image – wider and taller */
.hero-area .image-wrapper img {
  width: 100%;
}

/* About section – main photo */
.about-section .about-img-1 {
  width: 70%;
}

/* About section – small overlay mascot */
.about-section .about-img-2 {
  width: 25%;
}

/* Equal-height intro cards */
.intro-section .item-wrapper {
  height: 100%;
}

/* Center icon in intro cards */
.intro-section .icon-box {
  text-align: center;
}

/* Consistent portfolio card image height */
.portfolio-section .box img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Journey section */
.journey-section {
  background-color: #333;
  position: relative;
}
.journey-section .journey-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 32px;
  height: 100%;
  transition: background 0.3s;
}
.journey-section .journey-card:hover {
  background: rgba(255,255,255,0.09);
}
.journey-section .journey-icon {
  font-size: 40px;
  color: #fd562a;
  margin-bottom: 16px;
}
.journey-section .journey-era {
  font-size: 0.78rem;
  color: #b0aac0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.journey-section h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 12px;
}
.journey-section p {
  color: #b0aac0;
  margin-bottom: 10px;
  line-height: 1.75;
}
.journey-section .journey-card p:last-child {
  margin-bottom: 0;
}
.journey-section .journey-card.future {
  border-style: dashed;
  border-color: rgba(253, 86, 42, 0.3);
  background: rgba(253, 86, 42, 0.04);
}

/* Tools section */
.tools-section .tool-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  height: 100%;
  transition: background 0.3s;
}
.tools-section .tool-card:hover {
  background: rgba(255, 255, 255, 0.08);
}
.tools-section .tool-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.tools-section .tool-icon {
  font-size: 28px;
  color: #fd562a;
  flex-shrink: 0;
  line-height: 1.1;
}
.tools-section .tool-card h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 3px;
}
.tools-section .tool-meta {
  font-size: 0.72rem;
  color: #b0aac0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.tools-section .tool-card p {
  color: #b0aac0;
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* Placeholder for portfolio cards without a screenshot */
.portfolio-section .no-img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #1a1a2e 0%, #2b2b42 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.portfolio-section .no-img-placeholder i {
  font-size: 72px;
  color: rgba(253, 86, 42, 0.55);
}
.portfolio-section .no-img-placeholder span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.04em;
}

/* Darker overlay so white text is readable on light screenshots */
.portfolio-section .box:before,
.portfolio-section .box:after {
  background: rgba(20, 20, 20, 0.88);
}
