/* Project Detail */

/* Project Header */
.project-header {
  padding: 120px 40px 40px;
  max-width: 900px;
  margin: 0 auto;
}

.project-breadcrumb {
  margin-bottom: 30px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.project-breadcrumb a {
  color: var(--text-color);
  opacity: 0.7;
  transition: opacity 0.3s;
}

.project-breadcrumb a:hover,
.project-breadcrumb a:focus {
  opacity: 1;
}

.breadcrumb-separator {
  margin: 0 10px;
  opacity: 0.5;
}

.project-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 40px;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 30px;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 10px;
  opacity: 0.6;
}

.meta-value {
  font-size: 1.1rem;
  font-weight: 500;
}

.btn-external {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--text-color);
  color: white;
  font-weight: 500;
  transition: transform 0.3s, background-color 0.3s;
}

.btn-external:hover,
.btn-external:focus {
  transform: translateY(-5px);
  background-color: var(--accent-color);
}

/* Project Hero */
.project-hero {
  margin-bottom: 100px;
}

.hero-image {
  width: 100%;
  height: auto;
  max-width:1400px;
  margin-left:auto;
  margin-right:auto;
}

/* Content Sections */
.project-content {
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.content-column {
  flex: 1;
  min-width: 300px;
}

.content-column h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 30px;
}

.large-text {
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 20px;
}

.content-column p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Image Sections */
.project-image-section {
  padding: 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.project-image-section .content-container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.project-image-section .text-column,
.project-image-section .image-column {
  flex: 1;
  min-width: 300px;
}

.project-image-section img {
  width: 100%;
}

/* Full Width Image */
.project-full-image {
  width: 100%;
  margin-left:auto;
  margin-right:auto;
  max-width:1400px;
  padding-top:40px;
  padding-bottom:40px;
}

.project-full-image img {
  width: 100%;
  height: auto;
}

/* Image Grid */
.project-image-grid {
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.grid-item {
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  transition: transform 0.5s;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Results Section */
.results-section {
  background-color: var(--secondary-color);
}

.results-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.metric {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
}

.metric-label {
  font-size: 1.1rem;
  line-height: 1.4;
}

/* Next Project Navigation */
.project-navigation {
  padding: 80px 40px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

.next-project {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s;
}

.next-project:hover,
.next-project:focus {
  transform: translateX(10px);
}

.nav-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
  margin-bottom: 5px;
}

.nav-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.nav-arrow {
  margin-top: 10px;
}

/* Responsive Design */
/* Large Desktop: 1200px+ (default styles) */

/* Tablet and small desktop */
@media (max-width: 1024px) {
  .project-image-section {
    padding: 20px 40px 40px;
  }
  .project-hero {
    margin-bottom: 60px;
  }
  .project-header {
    padding: 120px 40px 40px;
  }

  .project-title {
    font-size: 3.8rem;
  }

  .project-meta {
    gap: 40px;
  }

  .content-column h2 {
    font-size: 2rem;
  }

  .large-text {
    font-size: 1.3rem;
  }

  .metric-number {
    font-size: 3rem;
  }

  .nav-title {
    font-size: 2rem;
  }
}

/* Mobile landscape and small tablets */
@media (max-width: 768px) {
 .project-image-section .image-column {
    padding-bottom: 40px;
}
.project-full-image {
    padding-top: 20px;
    padding-bottom: 20px;
}
.project-content {
    padding: 20px;
  }
  .project-navigation {
    padding: 60px 20px;
  }
  .project-full-image {
    padding-left: 20px;
    padding-right: 20px;
  }
  .project-hero {
    margin-bottom: 16px;
  }
  .content-column h2 {
    margin-top:0px;
    margin-bottom: 0px;
  }


  .project-header {
    padding: 80px 20px 30px;
  }

  .project-title {
    font-size: 2.8rem;
  }

  .project-meta {
    gap: 30px;
  }

  .project-content,
  .project-image-section,
  .project-image-grid {
    padding-left: 20px;
    padding-right: 20px;
  }

  .content-container,
  .project-image-section .content-container {
    gap:16px;
  }

  .content-column h2 {
    font-size: 1.8rem;
  }

  .large-text {
    font-size: 1.2rem;
  }

  .image-left .content-container {
    flex-direction: column;
  }

  .image-right .content-container {
    flex-direction: column-reverse;
  }

  .results-metrics {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .metric-number {
    font-size: 2.8rem;
  }

  .nav-title {
    font-size: 2rem;
  }
}

/* Mobile portrait */
@media (max-width: 480px) {
  .project-navigation {
    padding: 40px 15px;
  }
  .project-full-image {
    padding-left: 15px;
    padding-right: 15px;
  }
  .project-header {
    padding: 80px 20px 30px;
  }

  .project-title {
    font-size: 2.4rem;
  }

  .project-meta {
    gap: 20px;
    flex-direction: column;
  }

  .project-content,
  .project-image-section,
  .project-image-grid {
    padding-left: 15px;
    padding-right: 15px;
  }

  .content-container,
  .project-image-section .content-container {
    gap: 16px;
  }

  .content-column h2 {
    font-size: 1.6rem;
  }

  .large-text {
    font-size: 1.1rem;
  }

  .content-column p {
    font-size: 1rem;
  }

  .results-metrics {
    gap: 20px;
  }

  .metric-number {
    font-size: 2.5rem;
  }

  .nav-title {
    font-size: 1.8rem;
  }

  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Very small mobile screens */
@media (max-width: 375px) {
  .project-title {
    font-size: 2.2rem;
  }

  .content-column h2 {
    font-size: 1.5rem;
  }

  .large-text {
    font-size: 1rem;
  }

  .nav-title {
    font-size: 1.6rem;
  }
}


.project-page{
.services-cta {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
