/* ---------- OGÓLNE ---------- */
*{box-sizing:border-box;}
body{
  margin:0;
  font-family:"Segoe UI",Arial,sans-serif;
  background:#000;
  color:#f5f5f5;
  line-height:1.6;
  scroll-behavior:smooth;
}
.container{width:90%;max-width:1100px;margin:0 auto;overflow:hidden;}

/* ---------- HERO ---------- */
.hero{
  position:relative;
  background:url('banner.jpg') no-repeat center/cover;
  height:90vh;
  color:#fff;
}
.overlay{background:rgba(0,0,0,0.15);height:100%;}

.hero-text{
  position:absolute;
  top:55%;left:50%;
  transform:translate(-50%,-50%);
  text-align:center;
  text-shadow:2px 2px 5px rgba(0,0,0,0.5);
}
.hero-text h1{font-size:3.2rem;color:#FFD700;margin:0;}
.hero-text p{font-size:1.2rem;color:#fff;margin:10px 0 0 0;}

/* ---------- STAŁY PASEK MENU ---------- */
.fixed-bar{
  width:100%;
  background:linear-gradient(to right,#111,#000);
  border-top:2px solid #FFD700;
  border-bottom:2px solid #FFD700;
  position:sticky;
  top:0;
  z-index:100;
  box-shadow:0 0 15px rgba(255,215,0,0.2);
}
.fixed-bar-content{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-around;
  align-items:center;
  padding:25px 15px;
}
.fixed-bar-content a{
  color:#f5f5f5;
  font-weight:bold;
  text-decoration:none;
  text-transform:uppercase;
  font-size:1.3rem;
  letter-spacing:1px;
  transition:color 0.3s,transform 0.2s;
}
.fixed-bar-content a:hover{color:#FFD700;transform:scale(1.1);}

/* ---------- SEKCJE ---------- */
section{
  padding:60px 25px;
  border-left:5px solid #FFD700;
  border-radius:6px;
  background:#1a1a1a;
  box-shadow:0 0 8px rgba(255,215,0,0.1);
  margin:40px auto;
  overflow:hidden;
}
.section-dark{background:#111;}
h2{color:#FFD700;margin-bottom:15px;font-size:2rem;text-align:left;}
p, ul{margin-left:0;text-align:left;max-width:100%;word-break:break-word;}
ul{list-style:none;padding-left:0;}
ul li::before{content:"✔ ";color:#FFD700;}

/* ---------- KONTAKT + SPONSOR ---------- */
.section-contact{display:flex;justify-content:center;background:#111;}
.contact-box{display:flex;justify-content:space-between;flex-wrap:wrap;width:100%;}
.contact-info{flex:1 1 45%;min-width:300px;}
.sponsor-side{flex:1 1 45%;min-width:300px;text-align:center;}
.sponsor-thumb img{width:80%;max-width:250px;border:2px solid #FFD700;border-radius:8px;cursor:pointer;transition:transform .3s;}
.sponsor-thumb img:hover{transform:scale(1.05);}
.socials{margin-top:10px;display:flex;gap:20px;font-size:1.1em;flex-wrap:wrap;}
.socials a{color:#FFD700;text-decoration:none;display:flex;align-items:center;gap:6px;font-weight:bold;transition:color .3s;}
.socials a:hover{color:#fff;}

/* ---------- GALERIA ---------- */
.gallery-folder{margin-bottom:40px;}
.gallery-folder h3{color:#FFD700;margin-bottom:10px;border-bottom:2px solid #FFD700;padding-bottom:5px;}
.gallery{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px;margin-top:15px;}
.gallery img{width:100%;height:180px;object-fit:cover;border-radius:6px;border:2px solid #222;cursor:pointer;transition:transform .25s,border-color .3s;}
.gallery img:hover{transform:scale(1.05);border-color:#FFD700;}

/* Lightbox */
.lightbox{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.85);display:none;justify-content:center;align-items:center;z-index:999;}
.lightbox-content{background:#111;border:2px solid #FFD700;border-radius:8px;max-width:900px;display:flex;align-items:center;padding:10px;gap:10px;}
.lightbox-content img{width:60%;border-radius:6px;}
.lightbox-content .desc{color:#f5f5f5;font-size:1rem;line-height:1.4;width:40%;}
.close{position:absolute;top:15px;right:25px;font-size:2rem;color:#FFD700;cursor:pointer;transition:color .3s;}
.close:hover{color:#fff;}

/* ---------- STOPKA ---------- */
footer{text-align:center;background:#000;color:#FFD700;padding:20px;font-size:.9em;border-top:2px solid #FFD700;}

/* ---------- RESPONSYWNOŚĆ ---------- */
@media(max-width:768px){
  .fixed-bar-content{flex-wrap:wrap;gap:15px;font-size:1rem;}
  .contact-box{flex-direction:column;align-items:center;text-align:center;}
  .lightbox-content{flex-direction:column;}
  .lightbox-content img,.lightbox-content .desc{width:100%;}
  .hero-text h1{font-size:2.4rem;}
}