/* ==============================
    NAVBAR — plain white, dark links
    ============================== */
.navbar-detail {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;   
  border-bottom: 1px solid #000;   
}
.broder-bottom{
  border-bottom:0.5px solid #232323;
}
.navbar-detail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  height: 64px;
}
.navbar-detail__logo img { height: 36px; width: auto; }

.navbar-detail__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.navbar-detail__links a {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #232323;
  transition: color 0.2s;
}
.navbar-detail__links a:hover,
.navbar-detail__links a.active { color: #A2150E; }

.navbar-detail__right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.navbar-detail__social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-detail__social a {
  color: #555;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.navbar-detail__social a:hover { color: #A2150E; }
.navbar-detail__contact {
  background: #A2150E;
  color: #fff;
  padding: 8px 22px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.navbar-detail__contact:hover { background: #8B0000; }

/* Hamburger */
.hamburger-detail {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger-detail span {
  display: block; width: 22px; height: 2px;
  background: #232323; border-radius: 2px;
}

/* ==============================
    BREADCRUMB
    ============================== */
.breadcrumb-bar {
  background: #fff;
  padding: 18px 60px;     
}
.breadcrumb-bar__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding-top: 50px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0;      
  min-height: 30px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  color: #7A7979;
  background: #EEEEEE;
  border-radius: 9.5px;
  padding: 4px 14px;
}
.breadcrumb__item a {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7A7979;
  transition: color 0.2s;
}
.breadcrumb__item a:hover { color: #A2150E; }
.breadcrumb__item a svg {
  width: 12px; height: 12px;
  fill: #7A7979;
  flex-shrink: 0;
}
.breadcrumb__sep {
  margin: 0 8px;
  color: #7A7979;
  font-size: 12px;
}
/* Current page: bold black */
.breadcrumb__item--current {
  font-weight: 700;
  color: #000;
}

/* ==============================
    PROJECT HERO IMAGE (full width)
    ============================== */
.project-detail-hero {
  width: 100%;
  max-width: 1140px;
  margin: 36px auto 0;
  padding: 0;
}
.project-detail-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

/* ==============================
    PROJECT DETAIL CONTENT
    ============================== */
.project-detail-content {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 60px 60px;
}

.project-detail-content__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 12px;
}
.project-detail-content__client {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 20px;
}
.project-detail-content__desc {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 40px;
}

/* ── Collage image grid ── */
.project-collage {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
/* Left: one tall image spanning both rows */
.project-collage__main {
  grid-row: span 2;
  height: 427px;
}
.project-collage__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Right: two stacked images */
.project-collage__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.project-collage__side img {
  width: 100%;
  height: 182px;
  object-fit: cover;
  display: block;
}

/* ── Additional text paragraphs ── */
.project-detail-body p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0px;
  color: #000;
  margin-bottom: 24px;
}
.project-detail-body p:last-child { margin-bottom: 0; }

/* ==============================
    RELATED PROJECTS
    ============================== */
.related-projects {
  padding: 72px 60px 80px;
  background: #fff;
}
.related-projects__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.related-projects__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0px;
  color: #000;
  text-align: center;
  margin-bottom: 40px;
}
.related-projects__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.related-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.related-card__img {
  width: 100%;
  height: 323px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.related-card:hover .related-card__img { transform: scale(1.03); }
.related-card__img-wrap {
  overflow: hidden;
}
.related-card__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0px;
  color: #000;
}
/* Learn More link with arrow */
.related-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #000;
  transition: gap 0.2s, color 0.2s;
}
.related-card__link svg {
  width: 16px; height: 16px;
  stroke: #000; fill: none; stroke-width: 2;
  transition: stroke 0.2s;
  flex-shrink: 0;
}
.related-card__link:hover { color: #A2150E; gap: 14px; }
.related-card__link:hover svg { stroke: #A2150E; }
.navbar-detail__close-item {
    display: none;
}

/* ==============================
    FOOTER (reuse existing styles)
    ============================== */
/* footer styles come from projects-contact-footer.css */

/* ==============================
    RESPONSIVE
    ============================== */
@media (max-width: 1024px) {
  .navbar-detail__inner,
  .breadcrumb-bar,
  .project-detail-hero,
  .project-detail-content,
  .related-projects { padding-left: 32px; padding-right: 32px; }
  .related-projects__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar-detail__links,
  .navbar-detail__social,
  .navbar-detail__contact { display: none; }
  .hamburger-detail { display: flex; }
  .navbar-detail__inner,
  .breadcrumb-bar,
  .project-detail-hero,
  .project-detail-content,
  .related-projects { padding-left: 20px; padding-right: 20px; }
  .project-detail-hero img { height: 240px; }
  .project-detail-content__title { font-size: 28px; }
  .project-detail-content__client { font-size: 22px; }
  .project-collage { grid-template-columns: 1fr; }
  .project-collage__main { grid-row: span 1; height: 220px; }
  .project-collage__side img { height: 160px; }
  .related-projects__grid { grid-template-columns: repeat(2, 1fr); }
  .related-projects__title { font-size: 28px; }
  .navbar-detail__links { display: none; }
  .navbar-detail__links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background: #fff;
      padding: 20px;
      z-index: 999;
  }
  .navbar-detail__close-item {
      display: flex;
      justify-content: flex-end;
      padding-bottom: 10px;
      border-bottom: 1px solid #eee;
      margin-bottom: 8px;
      list-style: none;
  }
  .navbar-detail__close {
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: #333;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .navbar-detail__close:hover {
      color: #000;
  }
}
@media (max-width: 480px) {
  .navbar-detail__right { width:100%; justify-content: end;}
  .related-projects__grid { grid-template-columns: 1fr; }
  .project-detail-content__title { font-size: 24px; }
}