/* project-pages.css
   Gradient + animated "Style C" visual language.
   Drop this file next to the HTML pages. */

:root{
  --bg1: #ff7a59; /* orange */
  --bg2: #ffb86b; /* light orange */
  --accent: #06b6d4;
  --muted: #adbac7;
  --card: rgba(255,255,255,0.06);
  --glass: rgba(255,255,255,0.04);
  --max: 1100px;
  --radius: 12px;
}

*{box-sizing:border-box}
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: #2a2c30;
  margin: 0;
  background: linear-gradient(135deg,var(--bg1),var(--bg2));
  -webkit-font-smoothing:antialiased;
}

.pp-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 6%;
  max-width:var(--max);
  margin:0 auto;
}
.brand{color:#fff; text-decoration:none; font-weight:700}
.pp-topnav a{color:#fff; text-decoration:none; margin-left:16px; opacity:0.95}

.pp-main{max-width:var(--max); margin: 20px auto 80px; padding:0 6%}

/* HERO */
.pp-hero{
  display:flex;
  gap:24px;
  align-items:center;
  padding:28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.9));
  border-radius:14px;
  box-shadow: 0 30px 80px rgba(16, 16, 16, 0.15);
  overflow:hidden;
}
.pp-hero.alt { background: linear-gradient(180deg, rgba(240, 241, 234, 0.85), rgba(3,6,22,0.95)); color:#cfe8ee }
.gradient-animated{
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,255,255,0.94));
  animation: floatbg 10s ease-in-out infinite;
}
@keyframes floatbg{
  0%{transform:translateY(0)}
  50%{transform:translateY(-8px) scale(1.01)}
  100%{transform:translateY(0)}
}

.pp-hero-left{flex:1}
.pp-hero-left h1{font-size:34px; margin:0 0 12px; color: #062d36}
.pp-hero-left .muted{color:var(--muted)}
.meta{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0}
.meta span{background:var(--glass); padding:8px 10px; border-radius:8px; color:#062d36; font-size:14px}

.pp-hero-right img{width:320px; border-radius:12px; object-fit:cover; box-shadow:0 18px 50px rgba(2,6,23,0.45)}

/* sections */
.pp-section{background:rgba(255,255,255,0.9); margin-top:18px; padding:20px; border-radius:12px}
.pp-section h2{margin:0 0 10px; color:#062d36}
.two-col{display:grid; grid-template-columns:1fr 1fr; gap:16px}
.card{background:rgba(255,255,255,0.98); border-radius:10px; padding:12px; box-shadow: 0 8px 30px rgba(2,6,23,0.06)}
.wide-img{width:100%; margin-top:12px; border-radius:10px}

/* gallery & grid */
.grid-3{display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:12px; margin-top:12px}
.gallery img{width:100%; border-radius:10px; display:block}
.gallery figcaption{font-size:13px; color:var(--muted); margin-top:8px}

/* badges */
.badges{display:flex; gap:14px; margin-top:12px}
.badge{display:flex; gap:10px; align-items:center; background:var(--glass); padding:10px; border-radius:10px}
.badge img{width:64px; height:64px; object-fit:cover; border-radius:8px}

/* accordion */
.accordion .acc-btn{width:100%; text-align:left; padding:12px; border-radius:8px; background:linear-gradient(90deg,#fff,#f7f7f7); margin-top:8px; border:none; font-weight:600; cursor:pointer}
.acc-panel{display:none; padding:12px 14px; background:rgba(0,0,0,0.03); border-radius:8px; margin-bottom:6px}

/* timeline */
.timeline{display:flex; flex-direction:column; gap:8px}
.tl-item{display:flex; gap:12px; align-items:flex-start; background:var(--card); padding:12px; border-radius:10px}
.tl-item img{width:80px; height:60px; object-fit:cover; border-radius:6px}

/* footer */
.pp-footer{display:flex; justify-content:space-between; align-items:center; margin-top:18px; color:#062d36}
.btn{background:#062d36;color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none}
.btn.outline{background:transparent;border:2px solid rgba(6,45,54,0.08); color:#062d36}
.btn.small{padding:8px 10px;font-size:14px}

/* responsive */
@media (max-width:900px){
  .pp-hero{flex-direction:column}
  .two-col{grid-template-columns:1fr}
}
