/* =========================================================
   IRENEUSZ JESTEM — STYLE.CSS
   Wersja responsywna: TELEFON + KOMPUTER
   Styl: czarne tło / biel / czerwone podświetlenie
   Nie wymaga zmian w index.html przy obecnej strukturze.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Oswald:wght@400;500;600;700&display=swap');

:root{
  --bg:#050505;
  --panel:#0c0c0c;
  --panel2:#111111;
  --white:#fff;
  --muted:#d7d7d7;
  --line:#2b2b2b;
  --red:#ff1717;
  --red-dark:#c90000;
  --black:#000;
  --radius:12px;
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--white);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

/* =========================
   WSPÓLNY KONTENER
   ========================= */

.wrap{
  width:min(1180px,92%);
  margin:0 auto;
}

/* =========================
   NAGŁÓWKI — BANGERS
   BIAŁE LITERY + CIENKA CZARNA OBRAMÓWKA
   + CZERWONE PODŚWIETLENIE
   ========================= */

.hero-copy .paint,
.hero-copy h1,
.hero-copy h2,
.section-title h2,
.section-title,
.social-card h3,
.strip b{
  font-family:'Bangers',Impact,sans-serif;
  font-weight:400;
  font-style:normal;
  letter-spacing:.5px;
}

/* główny napis IRENEUSZ JESTEM */
.hero-copy .paint{
  color:#fff;
  font-size:clamp(62px,7.1vw,106px);
  line-height:.78;
  text-transform:uppercase;
  letter-spacing:1px;
  transform:skewX(-3deg);
  transform-origin:left center;

  /* bardzo delikatna czarna obwódka + czerwony offset */
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     4px  5px 0 var(--red);
}

/* ROZTERKI MAŁŻEŃSKIE... — mniejsze od głównego tytułu */
.hero-copy h1{
  margin:22px 0 14px;
  color:#fff;
  font-size:clamp(36px,4vw,62px);
  line-height:.9;
  text-transform:uppercase;
  letter-spacing:.3px;
  transform:skewX(-3deg);
  transform-origin:left center;

  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  4px 0 var(--red);
}

.hero-copy h1 span{
  color:#fff;
}

.hero-copy p{
  max-width:650px;
  margin:0 0 26px;
  color:#f0f0f0;
  font-size:18px;
  line-height:1.55;
}

/* =========================
   HEADER
   ========================= */

header{
  position:relative;
  z-index:50;
  border-bottom:1px solid #222;
  background:#050505;
}

.wrap.nav{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:30px;
}

.brand img{
  width:285px;
  height:auto;
}

header nav{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:28px;
  font-family:'Oswald',Arial,sans-serif;
  font-size:14px;
  font-weight:600;
  text-transform:uppercase;
}

header nav a{
  position:relative;
  padding:10px 0;
  color:#fff;
}

header nav a:hover::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:2px;
  height:3px;
  background:var(--red);
}

.social{
  display:flex;
  align-items:center;
  gap:9px;
  margin-left:5px;
}

.social a{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  border-radius:50%;
  overflow:hidden;
}

.social a::before{
  content:"";
  width:100%;
  height:100%;
  display:block;
  background-position:center;
  background-repeat:no-repeat;
  background-size:72%;
}

/* =========================
   SOCIAL MEDIA — ORYGINALNY CHARAKTER IKON
   ========================= */

.social a[aria-label="YouTube"]::before,
.social-icon.youtube::before{
  background-image:url("assets/icons/youtube.png");
}

.social a[aria-label="Facebook"]::before,
.social-icon.facebook::before{
  background-image:url("assets/icons/facebook.png");
}

.social a[aria-label="Instagram"]::before,
.social-icon.instagram::before{
  background-image:url("assets/icons/instagram.png");
}

.social a[aria-label="TikTok"]::before,
.social-icon.tiktok::before{
  background-image:url("assets/icons/tiktok.png");
}

/* =========================
   HERO — KOMPUTER
   tekst LEWA / grafika PRAWA
   ========================= */

.hero{
  padding:72px 0 62px;
}

.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(390px,520px);
  gap:58px;
  align-items:center;
}

.hero-copy{
  min-width:0;
}

.hero-art{
  justify-self:end;
  width:min(520px,100%);
}

.hero-art img{
  width:100%;
  height:auto;
  object-fit:contain;
}

.buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.btn{
  min-height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 26px;
  border-radius:8px;
  font-family:'Bangers',Impact,sans-serif;
  font-size:22px;
  letter-spacing:.4px;
  font-weight:400;
  font-style:normal;
  transform:skewX(-2deg);
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
}

.btn.red{
  background:var(--red);
  color:#fff;
  border:1px solid var(--red);
  box-shadow:0 5px 0 #8e0000;
}

.btn.dark{
  background:#080808;
  color:#fff;
  border:2px solid #444;
}

.btn:hover{
  filter:brightness(1.08);
}

/* =========================
   PASEK 4 CECH
   ========================= */

.strip{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.strip > div{
  min-height:95px;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  text-align:center;
  border-right:1px solid var(--line);
}

.strip > div:last-child{
  border-right:0;
}

.strip b{
  color:#fff;
  font-size:27px;
  line-height:1;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  3px 0 var(--red);
}

.strip span{
  color:#bbb;
  font-size:14px;
}

/* =========================
   SEKCJE
   ========================= */

.section{
  padding:70px 0;
}

.section-title{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:28px;
}

.section-title h2{
  margin:0;
  color:#fff;
  font-size:42px;
  line-height:1;
  white-space:nowrap;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  4px 0 var(--red);
}

.section-title span{
  flex:1;
  height:3px;
  background:var(--red);
  box-shadow:0 1px 0 #5b0000;
}

/* =========================
   FILMY
   ========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}

.thumb{
  min-height:125px;
  padding:20px;
  border:1px solid #343434;
  border-radius:12px;
  background:linear-gradient(145deg,#121212,#080808);
}

.thumb b{
  display:block;
  color:#fff;
  font-family:'Bangers',Impact,sans-serif;
  font-weight:400;
  font-size:25px;
  line-height:1.05;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  3px 0 var(--red);
}

.thumb em{
  color:#ddd;
  font-family:'Bangers',Impact,sans-serif;
  font-style:normal;
  font-size:21px;
  text-shadow:1px 1px 0 #000;
}

.thumb small{
  display:block;
  margin-top:8px;
  color:#aaa;
}

/* =========================
   SOCIAL CARDS
   ========================= */

.social-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border:1px solid #333;
  border-radius:12px;
  overflow:hidden;
}

.social-card{
  min-height:190px;
  padding:26px 18px 22px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  background:linear-gradient(145deg,#111,#080808);
  border-right:1px solid #333;
  border-bottom:1px solid #333;
  transition:transform .2s ease,background .2s ease;
}

.social-card:nth-child(4n){
  border-right:0;
}

.social-card:nth-last-child(-n+4){
  border-bottom:0;
}

.social-card:hover{
  background:#151515;
  transform:translateY(-2px);
}

.social-icon{
  width:72px;
  height:72px;
  margin-bottom:14px;
  display:grid;
  place-items:center;
  border-radius:50%;
  overflow:hidden;
}

.social-icon::before{
  width:100%;
  height:100%;
  display:block;
  content:"";
  background-position:center;
  background-repeat:no-repeat;
  background-size:100%;
}

.social-card h3{
  margin:0 0 8px;
  color:#fff;
  font-size:28px;
  line-height:1;
  text-transform:uppercase;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  3px 0 var(--red);
}

.social-card strong{
  color:#fff;
  font-family:'Bangers',Impact,sans-serif;
  font-weight:400;
  font-size:34px;
  line-height:1;
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000,
     3px  3px 0 var(--red);
}

.social-card small{
  margin-top:8px;
  color:#bbb;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.4px;
}

/* =========================
   ABOUT
   ========================= */

.about-grid{
  display:grid;
  grid-template-columns:minmax(300px,500px) minmax(0,1fr);
  gap:55px;
  align-items:center;
}

.about-portrait img{
  width:100%;
}

.about p{
  color:#ddd;
  font-size:18px;
  line-height:1.7;
}

/* =========================
   MOBILNA — DOKŁADNIE TEN UKŁAD:
   TEKST LEWA / GRAFIKA PRAWA
   ========================= */

@media (max-width: 760px){

  .wrap{
    width:92%;
  }

  .wrap.nav{
    min-height:76px;
    justify-content:space-between;
  }

  .brand img{
    width:245px;
  }

  header nav,
  header .social{
    display:none;
  }

  /* jeśli hamburger istnieje jako .hamb */
  .hamb{
    display:flex;
    width:48px;
    height:48px;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:0;
    border:0;
    background:transparent;
  }

  .hamb::before{
    content:"☰";
    font-size:44px;
    line-height:1;
    color:#fff;
  }

  .hero{
    padding:64px 0 48px;
  }

  .hero-grid{
    grid-template-columns:minmax(0,1fr) minmax(135px,42%);
    gap:16px;
    align-items:start;
  }

  .hero-copy{
    min-width:0;
  }

  /* DUŻY napis główny */
  .hero-copy .paint{
    font-size:clamp(48px,13.5vw,76px);
    line-height:.78;
    letter-spacing:.2px;
    margin:0;
    text-shadow:
      -1px -1px 0 #000,
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000,
       4px  4px 0 var(--red);
  }

  /* mniejszy napis */
  .hero-copy h1{
    margin:18px 0 12px;
    font-size:clamp(27px,7.2vw,43px);
    line-height:.88;
    letter-spacing:0;
    text-shadow:
      -1px -1px 0 #000,
       1px -1px 0 #000,
      -1px  1px 0 #000,
       1px  1px 0 #000,
       3px  3px 0 var(--red);
  }

  .hero-copy p{
    font-size:13px;
    line-height:1.45;
    margin-bottom:18px;
  }

  .hero-art{
    width:100%;
    justify-self:end;
    margin-top:8px;
  }

  .buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .btn{
    min-height:44px;
    padding:0 18px;
    font-size:18px;
    border-radius:7px;
  }

  .strip{
    grid-template-columns:repeat(2,1fr);
  }

  .strip > div{
    min-height:130px;
    padding:14px 8px;
    flex-direction:column;
    gap:7px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }

  .strip > div:nth-child(2n){
    border-right:0;
  }

  .strip > div:nth-last-child(-n+2){
    border-bottom:0;
  }

  .strip b{
    font-size:25px;
  }

  .strip span{
    font-size:12px;
  }

  .section{
    padding:48px 0;
  }

  .section-title{
    gap:10px;
    margin-bottom:20px;
  }

  .section-title h2{
    font-size:31px;
  }

  .section-title span{
    height:3px;
  }

  .cards{
    grid-template-columns:repeat(2,1fr);
    gap:8px;
  }

  .thumb{
    min-height:105px;
    padding:14px;
  }

  .thumb b{
    font-size:20px;
  }

  .thumb em{
    font-size:16px;
  }

  .thumb small{
    font-size:10px;
  }

  .social-cards{
    grid-template-columns:repeat(2,1fr);
  }

  .social-card{
    min-height:175px;
    padding:20px 10px;
    border-right:1px solid #333;
    border-bottom:1px solid #333;
  }

  .social-card:nth-child(4n){
    border-right:1px solid #333;
  }

  .social-card:nth-child(2n){
    border-right:0;
  }

  .social-card:nth-last-child(-n+4){
    border-bottom:1px solid #333;
  }

  .social-card:nth-last-child(-n+2){
    border-bottom:0;
  }

  .social-icon{
    width:62px;
    height:62px;
    margin-bottom:12px;
  }

  .social-card h3{
    font-size:23px;
  }

  .social-card strong{
    font-size:29px;
  }

  .social-card small{
    font-size:10px;
  }

  .about-grid{
    grid-template-columns:1fr;
    gap:25px;
  }

  .about p{
    font-size:15px;
  }
}

/* =========================
   BARDZO MAŁE TELEFONY
   ========================= */

@media (max-width:430px){

  .brand img{
    width:220px;
  }

  .hero{
    padding-top:52px;
  }

  .hero-grid{
    grid-template-columns:minmax(0,1fr) 40%;
    gap:12px;
  }

  .hero-copy .paint{
    font-size:clamp(43px,13.8vw,63px);
  }

  .hero-copy h1{
    font-size:clamp(24px,7.4vw,35px);
  }

  .hero-copy p{
    font-size:12px;
  }

  .hero-art{
    margin-top:3px;
  }

  .btn{
    font-size:16px;
    padding:0 14px;
  }

  .section-title h2{
    font-size:27px;
  }

  .social-card{
    min-height:160px;
  }
}

/* =========================
   KOMPUTER — DOPIESZCZENIE
   ========================= */

@media (min-width:761px){

  .hero-copy .paint{
    max-width:700px;
  }

  .hero-copy h1{
    max-width:650px;
  }

  /* Na komputerze sekcja social w jednej linii */
  .social-cards{
    grid-template-columns:repeat(4,1fr);
  }
}

/* =========================
   DOSTĘPNOŚĆ / REDUKCJA RUCHU
   ========================= */

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,
  *::before,
  *::after{
    transition:none !important;
    animation:none !important;
  }
}
