:root {
  --bg-dark: #101820;
  --bg-light: #f4f4f4;
  --text-light: #fff;
  --text-dark: #333;
  --accent: #4f8cff;
}

* { box-sizing: border-box; margin:0; padding:0; }
body { font-family: Arial, Helvetica, sans-serif; background: var(--bg-light); color: var(--text-dark); }
.container { max-width:80%; margin: 0 auto; padding: 20px; }
@media (max-width: 768px) {
  .container { max-width: 95%; padding: 10px; }
}
#favicon { width:32px; height:32px; }

.header__inner img{height: 100px; width: auto;}
.site-header { background: var(--bg-dark); padding:10px 0; position:sticky; top:0; z-index:50; height: auto; }
.header__inner { display:flex; justify-content:space-between; align-items:center;  flex-wrap: nowrap; padding:0 20px;}
.nav a { color: var(--text-light); margin-left:15px; text-decoration:none;  white-space: nowrap;}
.btn--primary { background:var(--accent); padding:8px 8px; color:var(--text-light); text-decoration:none; border-radius:4px; white-space: nowrap; display: inline-block;}
@media (max-width: 768px) {
  .header__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

.hero1 { background:var(--bg-dark); color:var(--text-light); padding:80px 0; text-align:center; }
.hero {  position: relative;  height: 400px;  display: flex;  justify-content: center;  align-items: center;  color: var(--text-light);  text-align: center;  overflow: hidden;}
@media (max-width: 480px) {
  .hero {
    height: 250px;
    padding: 40px 10px;
  }
}
.hero__bg {  position: absolute;  inset: 0;  display: flex;  z-index: 1;}
.hero__bg img {  width: 25%; height: 100%; object-fit: cover; filter: blur(4px) brightness(0.7);}
.hero__overlay {  position: absolute;  inset: 0;  background: rgba(0, 0, 0, 0.35);  z-index: 2;}
.hero__content {  position: relative; z-index: 3;}
.btn--cta { background:var(--accent); color:var(--text-light); padding:12px 24px; text-decoration:none; border-radius:4px; display:inline-block; margin-top:15px; }

.services .cards { display:grid; grid-template-columns:repeat(5, 1fr); gap:20px; margin-top:20px; }
.card { background:var(--text-light); padding:20px; border-radius:6px; box-shadow:0 2px 6px rgba(0,0,0,0.1); }
.card h3 { margin-bottom:10px; }
#fb{color:var(--text-light); text-decoration:none; display:block; margin:5px 0; color:blue;}
#allegro{color:var(--text-light); text-decoration:none; display:block; margin:5px 0; color:orangered;}

.process .steps { display:flex; justify-content:space-between; margin-top:20px; gap:10px; }
.step { background:var(--accent); color:var(--text-light); padding:15px; border-radius:4px; flex:1; text-align:center; }

.stats { background:var(--bg-dark); color:var(--text-light); padding:40px 0; text-align:center; }
.stats__inner { display:flex; justify-content:center; gap:40px; }
.stat__number { font-size:2rem; font-weight:bold; }
.stat__label { display:block; }

.blog-items { margin-top:20px; }
.blog-items .item { background:var(--text-light); padding:15px; border-radius:4px; margin-bottom:10px; background-color: #43da98; }

.site-footer { background:var(--bg-dark); color:var(--text-light); padding:40px 0; }
.footer__inner { display:flex; justify-content:space-between; flex-wrap:wrap; gap:20px; }
.footer-links a { color:var(--text-light); text-decoration:none; display:block; margin:5px 0; }
.footer-contact a{color:var(--text-light); text-decoration:none; display:block; margin:5px 0; color:green;}


/* Formularz wyceny */
.quote-form { background:var(--text-light); padding:20px; border-radius:6px; box-shadow:0 2px 6px rgba(0,0,0,0.1); display:grid; gap:15px; }
.form-group { display:flex; flex-direction:column; }
.form-group label { font-weight:bold; margin-bottom:5px; }
.form-group input, .form-group textarea, .form-group select { padding:10px; border:1px solid #ccc; border-radius:4px; }
.form-group input[type="file"] { padding:4px; }
.form-group.checkbox { flex-direction:column; align-items:left; }
.quote-form button { max-width:250px; }

@media (max-width:768px){
  .process .steps { flex-direction:column; }
  .stats__inner { flex-direction:column; gap:20px; }
}

.login-box {  width: 320px;  margin: 80px auto;  background: #fff;  border: 1px solid #ccc;  border-radius: 6px;  box-shadow: 0 2px 5px rgba(0,0,0,0.1); padding: 20px;}
.login-box label {  display: block;  margin-bottom: 6px;  font-weight: bold;  color: #444;}
.login-box input[type="password"] {  width: 100%;  padding: 10px;  border: 1px solid #ccc;  border-radius: 4px;  margin-bottom: 15px;  box-sizing: border-box;}
.login-box .actions {  text-align: right;  background: #f0f6f9;  padding: 10px;  margin: -20px;  margin-top: 0;  border-top: 1px solid #ddd;  border-radius: 0 0 6px 6px;}
.login-box button {  background: #64b5d1;  border: 1px solid #4ba0bc;  color: #fff;  padding: 8px 18px;  border-radius: 4px;  cursor: pointer;  font-size: 14px;}
.login-box button:hover {  background: #5aa9c4;}

.post {  background: #fff;  margin-bottom: 30px;  padding: 20px 25px;  border-radius: 12px;  box-shadow: 0 4px 12px rgba(0,0,0,0.1);  transition: transform 0.2s, box-shadow 0.2s;}
.post:hover {  transform: translateY(-3px);  box-shadow: 0 8px 20px rgba(0,0,0,0.15);}
.post-header {  display: flex;  justify-content: space-between;  align-items: baseline;  margin-bottom: 15px;}
.post-header h2 {  margin: 0;  color: #333;}
.post-header .date {  font-size: 13px;  color: #777;}
.post div {  margin-bottom: 15px;  line-height: 1.6;  color: #444;}
/*.post img {  display: block;  margin: 10px auto;  max-width: 100%;  height: auto;  border-radius: 8px;  box-shadow: 0 2px 8px rgba(0,0,0,0.1);}*/
.post img { width: 100%; height: 200px; object-fit: cover; border-radius: 8px;}
.posts-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 15px; padding: 20px; justify-items: center;}
.post .caption {  text-align: center;  font-size: 13px;  color: #555;  margin-top: 5px;}


.about-box {  max-width: 800px;  margin: 60px auto;  background: #fff;  padding: 40px;  border-radius: 6px;  box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.about-box h1 {  font-size: 26px;  margin-bottom: 20px;  color: #222;}
.about-box h2 {  font-size: 20px;  margin-top: 25px;  margin-bottom: 10px;  color: #444;}
.about-box p {  margin-bottom: 15px;}
.about-box ul {  margin: 10px 0 20px 25px;}
.about-box ul li {  margin-bottom: 8px;}
.about-box ul.check-list li {  list-style: none;  margin-left: -15px;}

.regulations {  max-width: 800px;  margin: 60px auto;  background: #fff;  padding: 40px;  border-radius: 6px;  box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.regulations h1 {  font-size: 26px;  margin-bottom: 20px;  color: #222;}
.regulations h2 {  font-size: 20px;  margin-top: 25px;  margin-bottom: 10px;  color: #444;}
.regulations strong {  font-weight: bold;}
.regulations ul {  margin: 10px 0 20px 25px;}
.regulations ul li {  margin-bottom: 8px;}
.regulations p {  margin-bottom: 15px;}


.privacy-policy {  max-width: 800px;  margin: 60px auto;  background: #fff;  padding: 40px;  border-radius: 6px;  box-shadow: 0 2px 5px rgba(0,0,0,0.1);}
.privacy-policy h1 {  font-size: 26px;  margin-bottom: 20px;  color: #222;}
.privacy-policy h2 {  font-size: 20px;  margin-top: 25px;  margin-bottom: 10px;  color: #444;}
.privacy-policy strong {  font-weight: bold;}
.privacy-policy ul {  margin: 10px 0 20px 25px;}
.privacy-policy ul li {  margin-bottom: 8px;}
.privacy-policy p {  margin-bottom: 15px;}