body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:linear-gradient(180deg,#f6efe6,#f1e3d3);
  color:#3b2f2a;
}

/* HEADER */
.header{
  text-align:center;
  padding:25px 10px;
  background:#fff8ef;
  box-shadow:0 3px 12px rgba(0,0,0,.05);
}
.brand{
  font-size:30px;
  font-weight:900;
}

/* MAIN */
.wrap{
  max-width:1100px;
  margin:auto;
  padding:30px 20px 140px;
  text-align:center;
}
.sub{
  color:#6a5a52;
  margin-bottom:30px;
}

/* GALLERY LAYOUT */
.gallery{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:40px;
}

/* ITEM */
.item{
  width:150px;
}

/* IMAGE TILE */
.item img{
  width:150px;
  height:150px;
  object-fit:cover;
  border-radius:16px;
  display:block;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  transition:.2s ease;
}
.item img:hover{
  transform:scale(1.06);
}

/* TEXT BELOW */
.info{
  margin-top:10px;
  font-size:14px;
  color:#6a5a52;
}

/* FOOTER */
.footer{
  position:fixed;
  bottom:0;
  width:100%;
  background:#fff8ef;
  text-align:center;
  padding:15px 10px 25px;
  box-shadow:0 -3px 12px rgba(0,0,0,.05);
}

/* KO-FI BUTTON */
.coffee-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 22px;
  border-radius:40px;
  text-decoration:none;
  font-weight:800;
  color:#fff;
  background:linear-gradient(135deg,#c97a63,#e6b8a2);
  box-shadow:0 10px 20px rgba(201,122,99,.25);
  transition:.2s ease;
}
.coffee-btn:hover{
  transform:translateY(-3px) scale(1.05);
}

/* CUP ICON */
.cup{
  width:18px;
  height:14px;
  background:white;
  border-radius:3px 3px 6px 6px;
  position:relative;
}
.cup::after{
  content:"";
  position:absolute;
  right:-6px;
  top:2px;
  width:8px;
  height:8px;
  border:3px solid white;
  border-radius:50%;
}

/* COPYRIGHT */
.copyright{
  margin-top:10px;
  font-size:13px;
  color:#6a5a52;
}
.copyright a{
  color:#c97a63;
  text-decoration:none;
}
/* COUNTER (unter Copyright) */
.visitCounter{
  margin-top:4px;
  font-size:4px;
  line-height:4px;
  color:#6a5a52;
  opacity:.85;
  user-select:none;
}
