/* Global */
:root{
  --cream: #fdf6e3;
  --gold: #ffd500;
  --blue: #0066cc;
  --green: #2e8b57;
  --purple: #6a1b9a;
  --muted: #666;
  --purple: #0c075c;
  --yellow: #ffee00;
  
}
*{box-sizing:border-box}
body{
  font-family: Arial, Helvetica, sans-serif;
  margin:0;
  color:#222;
  background:var(--cream);
  line-height:1.6;
}

/* Header / Navigation */
.site-header{
  background: linear-gradient(90deg,var(--purple));
  color: white;
  padding: 18px 16px;
  position: sticky;
  top:0;
  z-index:100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px; /* adjust size */
  width: auto;
  margin-right: 10px;
}

.site-header .wrap{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand h1{font-size:1.15rem; margin:0}
nav.main-nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
nav.main-nav a{
  color: white;
  text-decoration:none;
  font-weight:600;
  padding:8px 12px;
  border-radius:8px;
}
nav.main-nav a:hover{background: rgba(255,255,255,0.12)}

/* Hero */
.hero{
  max-width:1100px;
  margin:28px auto;
  padding:28px;
  display:grid;
  grid-template-columns: 1fr 420px;
  gap:28px;
  align-items:center;
  background: white;
  border-radius:12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.hero h2{margin-top:0;color:var(--blue)}
.hero p{color:var(--muted)}
.hero img{width:100%; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.12)}

/* Sections */
.section{max-width:1100px; margin:26px auto; padding:0 18px;}
.section .card{background:white; padding:20px; border-radius:12px; box-shadow:0 6px 18px rgba(0,0,0,0.06);}

/* Grid boxes for about/ objectives */
.grid-boxes{display:grid; gap:20px; grid-template-columns: repeat(auto-fit, minmax(250px,1fr));}
.box{border-radius:12px; padding:18px; color:white; min-height:120px; box-shadow:0 6px 16px rgba(0,0,0,0.07);}
.gold{background: linear-gradient(180deg, #ffe66a, #ffd500); color:#223;}
.blue{background: linear-gradient(180deg, #4d88ff, #0066cc);}
.green{background: linear-gradient(180deg, #48b785, #2e8b57);}
.purple{background: linear-gradient(180deg, #8e57bf, #6a1b9a);}
.yellow{background: liner-gradient(180deg, #ffee00, #ffe600);}
.purple{background: linear-gradient(180deg, #8e57bf, #6a1b9a);}
.cream-box{background: #fff8e6; color:#223; border-left:6px solid var(--gold);}

/* Gallery */
.gallery{display:grid; gap:15px; grid-template-columns: repeat(auto-fit, minmax(180px,1fr));}
.gallery img{width:100%; display:block; border-radius:10px; box-shadow:0 6px 12px rgba(0,0,0,0.12);}

/* CTA */
.cta{background: linear-gradient(90deg,var(--green),var(--purple)); color:white; padding:28px; border-radius:12px; text-align:center;}
.cta a{background:var(--gold); color:#222; padding:10px 18px; border-radius:8px; text-decoration:none; font-weight:700;}

/* Footer */
footer { 
  background: #333; 
  color: white; 
  text-align: center; 
  padding: 20px; 
  margin-top: 40px; 
}
footer .social {
  margin-top: 10px;
}
footer .social a {
  color: #ffd500; /* golden icons */
  margin: 0 10px;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}
footer .social a:hover {
  color: #0066cc; /* blue on hover */
}

/* Responsive */
@media (max-width:880px){
  .hero{grid-template-columns: 1fr; padding:18px;}
  .site-header .wrap{flex-direction:column; align-items:stretch; gap:10px;}
  .brand h1{font-size:1rem}
}
@media (max-width:480px){
  nav.main-nav a{padding:8px 10px; font-size:0.95rem;}
}

p {
  text-align: justify;
}



