
:root{
  --bg:#f7fbf8;
  --surface:#ffffff;
  --text:#0f1720;
  --muted:#556074;
  --brand:#0ea5a4;
  --accent:#047857;
  --logo-purple: #6b21a8; /* purple for logo */
}

@import url('https://fonts.googleapis.com/css2?family=Audiowide&family=Inter:wght@400;600&family=Poppins:wght@600;700&display=swap');

*{box-sizing:border-box}
body{
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  margin:0;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.container{max-width:1100px;margin:0 auto;padding:0 1rem}

.site-header{background:linear-gradient(90deg,#ffffff,#f7fafc);color:var(--text);border-bottom:1px solid rgba(15,23,32,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1rem}
.brand{display:flex;align-items:center;gap:1rem}
.brand h1{font-size:1.125rem;margin:0}
.logo{width:56px;height:56px;object-fit:cover;border-radius:8px}
.logo-text{font-family:'Audiowide', cursive;color:var(--logo-purple);font-size:1.9rem;letter-spacing:1px;text-transform:lowercase;font-weight:700}
.main-nav a{color:var(--text);margin-left:1rem;text-decoration:none;font-weight:600}
.main-nav a:hover{opacity:.9}

.hero{padding:3rem 0}
.hero-inner{display:grid;grid-template-columns:1fr 420px;gap:2rem;align-items:center}
.hero h2{font-family:'Poppins', system-ui, Arial;font-size:2.1rem;margin:0 0 .5rem}
.container h2{font-family:'Poppins', system-ui, Arial;margin:0 0 1rem}
.lead{color:var(--muted);font-size:1.05rem}
.hero-image img{width:100%;border-radius:12px;box-shadow:0 10px 30px rgba(2,6,23,0.12)}

.btn{display:inline-block;background:var(--logo-purple);color:#ffffff !important;padding:.75rem 1.1rem;border-radius:8px;text-decoration:none;font-weight:700;border:2px solid rgba(0,0,0,0.04)}
.btn:hover{background:#5a189a}
.btn:focus{outline:3px solid rgba(107,33,168,0.18);outline-offset:2px}

/* Ensure general link color in containers doesn't override buttons */
.container a{color:var(--brand)}

section{padding:2.5rem 0}

.products-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;margin-top:1.25rem}
.card{background:var(--surface);border-radius:12px;box-shadow:0 8px 24px rgba(16,24,40,0.06);padding:1rem;overflow:hidden;transition:transform .18s ease,box-shadow .18s ease}
.card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(16,24,40,0.12)}
.product img{width:100%;height:210px;object-fit:cover;border-radius:10px;margin-bottom:1rem;transition:transform .18s ease}
.product img:hover{transform:scale(1.02)}
.product h3{margin:.25rem 0 .5rem}
.product p{margin:0;color:var(--muted);font-size:.95rem}

footer{background:#061517;color:#9fb6b4;text-align:center;padding:1.25rem;margin-top:2rem}

/* Responsive */
@media (max-width:900px){
  .hero-inner{grid-template-columns:1fr;}
  .products-grid{grid-template-columns:1fr 1fr}
}
@media (min-width:1200px){
  .products-grid{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:600px){
  .main-nav{display:none}
  .hero{padding:2rem 0}
  .products-grid{grid-template-columns:1fr}
  .product img{height:200px}
}

@media (max-width:420px){
  .logo-text{font-size:1.25rem}
  .logo{width:40px;height:40px}
  .header-inner{padding:0.75rem}
}

.container a{color:var(--brand)}
.container h2{margin:0 0 1rem}
.container p{color:var(--muted)}
