/* Projects List Page Styles - projects-list.css */

/* Page Header */
.page-header {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  padding: 150px 2rem 80px;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.page-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.breadcrumb {
  font-size: 1rem;
  margin-top: 2rem;
}

.breadcrumb a {
  color: var(--accent-gold);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.8;
}

.breadcrumb span {
  color: var(--white);
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Projects List Section */
.projects-list-section {
  padding: 80px 0;
  min-height: 60vh;
}

.projects-intro {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  color: var(--dark-gray);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

/* Project Item Card */
.project-item {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(26, 54, 93, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(26, 54, 93, 0.15);
  border-color: var(--accent-gold);
}

.project-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.project-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
}

.project-name a {
  color: var(--primary-navy);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  font-weight: 500;
}

.project-name a::after {
  content: "→";
  margin-left: 8px;
  opacity: 0;
  transition: all 0.3s ease;
}

.project-item:hover .project-name a {
  color: var(--accent-gold);
}

.project-item:hover .project-name a::after {
  opacity: 1;
  margin-left: 12px;
}

.project-location {
  color: var(--dark-gray);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.project-location::before {
  content: "📍";
  font-size: 0.9rem;
}

.project-year {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--primary-navy) 0%,
    var(--secondary-navy) 100%
  );
  padding: 80px 2rem;
  text-align: center;
  color: var(--white);
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--accent-gold);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover {
  background: #b8941f;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-header {
    padding: 120px 1rem 60px;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .page-subtitle {
    font-size: 1.1rem;
  }

  .projects-list-section {
    padding: 60px 0;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-item {
    padding: 2rem;
  }

  .cta-title {
    font-size: 2rem;
  }

  .cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .project-item {
    padding: 1.5rem;
  }

  .project-name {
    font-size: 1.2rem;
  }

  .cta-title {
    font-size: 1.75rem;
  }
}
