:root{--bg:#CEBAA5; --white:#fff; --ink:#222}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font:16px/1.6 system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg); color:var(--white);
}

/* ===== HEADER: logo duże na środku, menu pod logo ===== */
.header{
  background:var(--bg);
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding:20px 24px; gap:18px; text-align:center;
}
.brand img.logo{
  width:clamp(320px, 75vw, 1100px);  /* DUŻE logo */
  height:auto; display:block;
  filter:drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

/* Menu – outline, przezroczyste, hover biały */
.nav{ display:flex; flex-wrap:wrap; gap:8px; justify-content:center; }
.nav a{
  text-decoration:none; color:var(--white);
  background:transparent; border:2px solid var(--white);
  padding:6px 12px; border-radius:999px; display:inline-block;
  font-size:15px; transition:all .25s ease;
}
.nav a:hover{ background:var(--white); color:var(--bg); }

/* Hero – ukrywamy tekst, bo będzie na zdjęciu */
.hero h1{ display:none; }

/* ===== Stopka ===== */
.footer{ background:var(--bg); padding:24px; }
.social-icons{
  display:flex; justify-content:center; align-items:center; gap:16px; margin-bottom:10px;
}
.social-icons .ico svg{
  display:block; width:28px; height:28px;
  fill:var(--white); transition:transform .2s, opacity .2s;
}
.social-icons .ico:hover svg{ transform:translateY(-1px); opacity:.85; }

/* Copyright wyśrodkowany */
.copy.centered{ text-align:center; color:var(--white); opacity:.8; }

/* Sekcje (na przyszłe podstrony) */
.wrap{max-width:1100px;margin:0 auto;padding:24px}
.section{background:#fff;padding:32px;border-radius:16px;box-shadow:0 8px 26px #00000012;margin:24px 0; color:#000}
.section h2{
  margin:0 0 12px;
  font-weight:400;                /* lżejsze */
  font-size:clamp(20px, 3.2vw, 34px); /* mniejsze */
  letter-spacing:.2px;
  color:#8F7A67;                  /* subtelny kawowy */
}
.section p{ margin:0 0 14px; color:#333; }

/* ===== Projekty – ramki ===== */
.grid-3{
  display:grid; gap:14px;
  grid-template-columns: repeat(3, 1fr);
}
.grid-3 img{
  width:100%; height:auto; display:block;
  border-radius:10px; box-shadow:0 6px 18px #00000012;
}
@media (max-width:900px){ .grid-3{ grid-template-columns:1fr; } }
}
.project-title{
  margin:0 0 12px;
  font-weight:800;
  font-size:clamp(22px, 3.2vw, 34px);
}
.project-desc{
  margin:0 0 18px;
  font-size:clamp(16px, 1.8vw, 18px);
  line-height:1.6;
}
.project-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:12px;
}
.project-grid img{
  width:100%;
  height:auto;
  display:block;
  border-radius:12px;
  box-shadow:0 2px 12px #00000014;
}

/* responsywka */
@media (max-width:900px){
  .project-grid{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px){
  .nav a{ font-size:13px; padding:4px 10px; }
}
@media (max-width:560px){
  .project-grid{ grid-template-columns:1fr; }
  .project-card{ padding:16px; margin:16px auto; }
}

