/* BASE */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, #0a3d91, #003c7f);
  color: #0f1b2d;
}


.project-page {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 1000px;
  margin: 0 auto 5rem;
  padding: 2rem;
}


.project-header {
  background: #ffffff;
  padding: 2.5rem;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
  margin-bottom: 2rem;
}

.project-header h1 {
  margin: 0;
  font-size: 2.4rem;
  font-weight: 700;
  color: #00356d;
}

.subtitle {
  opacity: 0.7;
  margin-top: 0.5rem;
  color: #00356d;
  font-size: 1.1rem;
}

/* MAIN CONTENT CARD */
.project-content {
  background: #ffffff;
  padding: 2.2rem;
  border-radius: 26px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* HERO IMAGE */
.project-hero img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 2rem;
}

/* TITLES */
.section-title {
  font-size: 1.45rem;
  font-weight: 700;
    color: #00356d;
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.section-title span {
  font-size: 1.4rem;
    color: #00356d;
}


.project-content p {
    padding-top: 1rem;
  line-height: 1.7;
  font-size: 1.05rem;
    color: #00356d;
}


.divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 2rem 0;
  border-radius: 2px;
}


.bullet-list {
  padding-top: 1rem;
    color: #00356d;
  line-height: 1.7;
}


.project-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-grid img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
  transition: 0.2s ease;
}

.gallery-grid img:hover {
  transform: scale(1.02);
}


.back-btn-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.back-btn {
  background: #0f1b2d;
  color: white;
  padding: 0.8rem 1.6rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.back-btn:hover {
  background: #162941;
}
