/* styles.css */
:root{--accent:#0b6b83;--muted:#666;--bg:#f7f9fa;--maxw:1100px}
*{box-sizing:border-box}
html,body{height:100%}
body{font-family:Inter,system-ui,Segoe UI,Roboto,Arial;line-height:1.5;color:#222;margin:0;background:var(--bg)}
.container{max-width:var(--maxw);margin:0 auto;padding:24px}


/* Header */
header{background:#fff;position:sticky;top:0;z-index:10}
.topbar{display:flex;align-items:center;justify-content:space-between;padding:18px 0}
.brand{display:flex;align-items:center;gap:14px}
.logo{width:56px;height:56px;border-radius:8px;background:linear-gradient(135deg,var(--accent),#7fc1cc);display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700}
.brand-text .brand-name{font-weight:800;color:#000}
.brand-text .brand-sub{font-size:13px;color:var(--muted)}
nav ul{display:flex;gap:18px;list-style:none;padding:0;margin:0}
nav a{color:var(--muted);text-decoration:none;font-weight:600}
nav a:hover{color:var(--accent)}


/* Hero with constrained background */
.hero-wrapper{background:#fff}
.hero{position:relative;max-width:var(--maxw);margin:0 auto;background:url('../images/warehouse.jpg') center/cover no-repeat;height:480px;display:flex;align-items:center;color:#fff;border-radius:8px;overflow:hidden}
.hero .overlay{position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.45)}
.hero .container{position:relative;z-index:2}
.hero-inner{background:rgba(255,255,255,0.9);padding:36px;border-radius:12px;color:#222}


/* Hero text */
.eyebrow{color:var(--accent);font-weight:700;margin-bottom:8px}
h1{font-size:28px;margin:0 0 10px}
p.lead{margin:0;color:#333}
.cta{margin-top:18px}
.btn{display:inline-block;padding:10px 16px;border-radius:8px;text-decoration:none;font-weight:700}
.btn-primary{background:var(--accent);color:#fff}
.btn-ghost{border:2px solid var(--accent);color:var(--accent);background:transparent}


/* Services */
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:36px 0}
.card{background:#fff;padding:20px;border-radius:10px;min-height:120px}
.card h3{margin:0 0 8px}
.muted{color:var(--muted)}


/* About / Footer */
.split{display:grid;grid-template-columns:1fr 360px;gap:24px;margin-bottom:36px}
footer{background:#fff;padding:20px;border-top:1px solid #e6eef0}
footer .foot-grid{display:flex;justify-content:space-between;align-items:center}
.muted-link{color:var(--muted);text-decoration:none;margin-right:12px}


/* Responsive */
@media (max-width:900px){
.grid{grid-template-columns:repeat(2,1fr)}
.split{grid-template-columns:1fr}
nav ul{display:none}
}
@media (max-width:520px){
.grid{grid-template-columns:1fr}
h1{font-size:22px}
.logo{width:48px;height:48px}
}

footer {
  text-align: center;
  font-size: 0.9em;
  background: #fff;
  border-top: 1px solid #e6eef0;
  margin: 3em auto 0 auto;
  max-width: var(--maxw);   /* constrain width like hero */
  border-radius: 8px;       /* optional to match hero styling */
  padding: 20px 24px;
}

footer a {
  color: #333;
  font-weight: normal;
  text-decoration: underline;
}

footer a:hover {
  color: #555;
}

.rodo-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #222;
  color: #fff;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9em;
  z-index: 9999;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.3);
}

.rodo-banner p {
  margin: 0;
}

.rodo-banner a {
  color: #66ccff;
  text-decoration: underline;
}

.rodo-banner button {
  background: #66ccff;
  border: none;
  color: #222;
  padding: 0.5em 1em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}

.rodo-banner button:hover {
  background: #3399ff;
}
