
/* assets/style.css - basic, professional styling with subtle animations */
:root{
  --accent:#1e3a8a;
  --accent-light:#3b82f6;
  --gold:#ffd700;
  --muted:#cbd5e1;
  --bg-overlay: rgba(0,0,0,0.5);
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Inter, Poppins, system-ui, -apple-system, 'Segoe UI', Roboto;
  color:#fff;
  background: linear-gradient(180deg, rgba(3,7,18,0.6), rgba(3,7,18,0.4));
  min-height:100vh;
  -webkit-font-smoothing:antialiased;
}
header{
  padding:38px 20px;
  text-align:center;
  background-image: url('../assets/hero-bg.svg');
  background-size:cover;
  background-position:center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  animation:fadeInDown .9s ease both;
}
.logo{width:72px;height:72px;margin-bottom:12px}
header h1{margin:0;font-size:28px;letter-spacing:0.3px}
header p{margin-top:8px;color:#e6eef8}

.container{max-width:1100px;margin:0 auto;padding:20px}
section{background:var(--bg-overlay);backdrop-filter: blur(4px);border-radius:12px;padding:18px;margin:28px auto;max-width:1000px;box-shadow:0 6px 22px rgba(2,6,23,0.4);transition:transform .35s ease}
section:hover{transform:translateY(-6px)}
h2{color:var(--gold);text-align:center;margin-top:0}

.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:18px;margin-top:14px}
.card{background:rgba(255,255,255,0.04);padding:14px;border-radius:10px;text-align:center;transition:transform .35s ease,box-shadow .35s ease}
.card img{width:100%;border-radius:8px;transition:transform .35s ease}
.card:hover{transform:translateY(-10px) scale(1.02);box-shadow:0 12px 30px rgba(0,0,0,0.5)}
.card img:hover{transform:scale(1.04)}
.price{font-weight:800;color:var(--accent-light)}

.btn{display:inline-block;padding:10px 14px;border-radius:10px;border:none;background:linear-gradient(90deg,var(--accent),var(--accent-light));color:#fff;font-weight:700;cursor:pointer;box-shadow:0 6px 18px rgba(30,58,138,0.18);transition:transform .25s ease,box-shadow .25s ease}
.btn:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(30,58,138,0.25)}

.testimonial-list{display:flex;flex-direction:column;gap:12px;margin-top:12px}
.review{background:rgba(255,255,255,0.03);padding:12px;border-radius:10px}
.stars{color:var(--gold);margin-bottom:6px}

form{display:flex;flex-direction:column;gap:10px}
input,textarea,select{padding:12px;border-radius:8px;border:1px solid rgba(255,255,255,0.06);background:rgba(255,255,255,0.02);color:#fff}

footer{text-align:center;padding:18px;color:#cbd5e1}

/* animations */
@keyframes fadeInDown{from{opacity:0;transform:translateY(-24px)}to{opacity:1;transform:none}}
