*, 
*:before, 
*:after{
    box-sizing: border-box;
}
html{
    font-size: 16px;
}
body{
    margin: 0;
    padding:0;
    background-color: #1B3C73;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

.pointer {
    cursor: pointer;
}



body > header {
    width: 100%;
    height: 50%;
    /*position: fixed;*/
    color: white;
    margin-bottom: 60px;
}


.header-container{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1B3C73;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  padding-bottom: 10px;
}

.project-page{
  padding-top: 140px; /* ✅ enough space under fixed header */
}

.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo{
  width: 54px;      /* consistent size */
  height: auto;
  padding: 0;
}

.click-home{
  font-family: "Marhey", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  padding: 0;
  color: #fff;
}


/* ---- page base ---- */
.project-page {
  margin: 0 auto;
  padding: 140px 60px 80px; 
  background: #ffd0d8;
  min-height: 100vh;
  box-sizing: border-box;
}

/* ---- top hero ---- */
.hero-img{
  height: 165px;
  background:#787a93;    
  border-radius: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:700;
  font-size: 1.8rem;
  letter-spacing: .5px;
  margin-top: 120px;
}

/* ---- CTA ---- */
.cta-wrap{
  display:flex;
  justify-content:center;
  margin: 90px 0 90px;
}
.cta-btn{
  background:#1c2f66;     /* deep navy */
  color:#fff;
  text-decoration:none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  display:inline-block;
}

/* ---- content blocks ---- */
.block{
  display:grid;
  grid-template-columns: 1.4fr 1fr; /* more space for text */
  gap: 100px;
  align-items:start;
  margin-bottom: 180px;
}

.block-left h2{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.block-left p{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.35;
  color:#0c0c0c;
  word-break: break-word; 
  background-color: white;
  height: 230px;
}

/* ---- right “image” cards ---- */
.block-right{
  display:flex;
  flex-direction:column;
  gap: 20px;
}

.side-card{
  height: 180px;   /* taller on desktop */
  background:#787a93;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 10px;
}

/* ---- optional: make it responsive if you view wider ---- */
@media (max-width: 360px){
  .block{
    grid-template-columns: 1fr 120px;
  }
  .block-left h2{ font-size: 2rem; }
}

/* ---------- Desktop ---------- */
@media (min-width: 900px){

  .project-page{
    padding: 60px 80px 100px;
  }

  .hero-img{
    height: 260px;
    font-size: 2.4rem;
  }

  .cta-btn{
    font-size: 1.05rem;
    padding: 12px 24px;
  }

  .block{
    grid-template-columns: 1.6fr 1fr;
  }

  .side-card{
    height: 200px;
  }

}