/* ================== GLOBAL ================== */
:root {
  --black: #000;
  --white: #fff;
  --gray-bg: #e0e0e0;
  --dark: #111;
}














































* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--gray-bg);
  color: var(--black);
  padding-top: 120px;
}

/* ================== HEADER ================== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 120px;
  padding: 0 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 100;
}

.logo {
  height: 90px;
}

.nav a {
  margin-left: 60px;
  text-decoration: none;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--black);
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

a:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 4px;
}

/* ================== HERO ================== */
.hero {
  height: calc(120vh - 140px);
  background-image: url("img/gigant.png");
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

@media (min-width: 1024px) {
  .hero {
    background-attachment: fixed;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-text {
  position: relative;
  color: var(--white);
}







/* GŁÓWNE STYLE DLA TEKSTU W HERO - USTAWIONY KOLOR CZERWONY */
.hero-text h1 {
  font-size: clamp(60px, 10vw, 120px);
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
  color: #ff0000; /* Czerwony kolor bazowy */
}

.hero-text p {
  font-size: 26px;
  margin-top: 15px;
  color: #ff0000; /* Czerwony kolor bazowy */
}

/* KLASA BŁYSKU - PODMIEŃ CAŁĄ TĘ SEKCJĘ (od ok. linii 117 do 155) */
.shine-effect {
  display: block;
  width: 100%;
  text-align: center;
  
  /* Gradient: Czerwony -> Biały (błysk) -> Czerwony */
  background: linear-gradient(
    110deg, 
    #ff0000 35%, 
    #ffffff 50%, 
    #ff0000 65%
  );
  background-size: 250% 100%;
  background-position: 150% 0;
  
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  opacity: 0;
  transition: opacity 2s ease; 
}

/* ZAPĘTLONA ANIMACJA CO 3 SEKUNDY */
.reveal.active.shine-effect {
  opacity: 1;
  animation: shineLoop 3s linear infinite; /* infinite = zapętlenie */
}

/* Wyłączenie opóźnienia, żeby oba napisy błyskały w tym samym rytmie */
p.shine-effect.active {
  animation-delay: 0s !important; 
}

/* DEFINICJA RUCHU BŁYSKU */
@keyframes shineLoop {
  0% {
    background-position: 150% 0;
  }
  /* Błysk przebiega w 2 sekundy (do 66%), potem 1 sekunda przerwy do pełnych 3s */
  66% {
    background-position: -50% 0;
  }
  100% {
    background-position: -50% 0;
  }
}













/* ================== SECTIONS ================== */
.section {
  padding: 160px 10%;
  background: var(--white);
}

.section.full {
  min-height: 100vh;
}

.section h2 {
  font-size: clamp(48px, 8vw, 96px);
  text-align: center;
  margin-bottom: 70px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.section p {
  font-size: 24px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/* ================== DARK SECTION ================== */
.dark-section {
  background: var(--dark);
  color: var(--white);
}

.dark-section h2,
.dark-section p,
.dark-section a {
  color: var(--white);
}













/* ================== OFERTA - FIX NA TELEFONY ================== */
.offers-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 80px;
  width: 100%;
  max-width: 2100px; 
  margin-left: auto;
  margin-right: auto;
}

.premium-tile {
  /* Rozmiar na komputerze */
  flex: 0 0 480px;         
  height: 520px;           
  position: relative;
  border-radius: 38px;
  overflow: hidden;
  text-decoration: none;
  color: white;
  display: block;
}

/* Gwarancja, że pierwsze 3 też mają ten sam rozmiar */
.premium-tile:nth-child(-n+3) {
  flex: 0 0 480px;
}

/* --- RESPONSYWNOŚĆ --- */

/* Dla dużych laptopów i mniejszych monitorów */
@media (max-width: 2000px) {
  .premium-tile, .premium-tile:nth-child(-n+3) {
    flex: 0 1 420px; 
    height: 480px;
  }
}

/* KLUCZOWY FIX: Dla tabletów i dużych telefonów */
@media (max-width: 1024px) {
  .premium-tile, .premium-tile:nth-child(-n+3) {
    flex: 0 1 45%; /* Dwa kafelki obok siebie */
    height: 400px;
  }
}

/* KLUCZOWY FIX: Dla telefonów (pionowo) */
@media (max-width: 768px) {
  .offers-grid {
    gap: 15px;
    padding: 0 10px;
  }
  
  .premium-tile, .premium-tile:nth-child(-n+3) {
    flex: 0 0 100% !important; /* Wymuszamy całą szerokość ekranu */
    width: 100%;
    height: 350px;
    border-radius: 24px; /* Mniejszy promień na małym ekranie wygląda lepiej */
  }
}





















/* ================== GALERIA ================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 80px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s, box-shadow 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
}

/* ================== FOOTER ================== */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 30px 10%;
  text-align: center;
}

.footer p {
  font-size: 14px;
  letter-spacing: 1.5px;
  opacity: 0.8;
}

/* ================== REVEAL ================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  .header {
    height: 80px;
    padding: 0 20px;
  }

  .logo {
    height: 60px;
  }

  .nav a {
    font-size: 18px;
    margin-left: 20px;
  }

  .hero {
    height: calc(100vh - 80px);
  }

  .hero-text p {
    font-size: 18px;
  }

  .section {
    padding: 120px 6%;
  }

  .section p {
    font-size: 18px;
  }

  .offer-tile {
    width: 100%;
    max-width: 360px;
  }

  .offer-tile img {
    height: 200px;
  }

  .offer-tile span {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .nav {
    display: none;
  }
}














/* Stylizacja kontenera Swipera */
.swiper-container {
  width: 100%;
  padding: 40px 0;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
}

.swiper-slide img {
  width: 100%;
  height: 500px; /* Możesz dostosować wysokość */
  object-fit: cover;
  border-radius: 8px; /* Lekkie zaokrąglenie jak na screenie */
}





/* ================== STRZAŁKI SWIPER NA BIAŁE ================== */
.swiper-button-next::after,
.swiper-button-prev::after {
  color: #fff;          /* białe */
  font-size: 40px;      /* większe niż domyślne */
  font-weight: bold;    /* grubsze */
  text-shadow: 0 2px 6px rgba(0,0,0,0.6); /* poprawa widoczności */
}

/* Możesz dodatkowo powiększyć przycisk, jeśli chcesz większą klikalność */
.swiper-button-next,
.swiper-button-prev {
  width: 60px;          /* szersze pole kliknięcia */
  height: 60px;
  background: rgba(0,0,0,0.3); /* lekki ciemny podkład pod strzałką */
  border-radius: 50%;
}

/* ================== KROPKI SWIPER NA BIAŁE ================== */
.swiper-pagination-bullet {
  background-color: #fff !important; /* białe kropki */
  width: 16px;       /* większe kropki */
  height: 16px;
  opacity: 1;        /* pełna widoczność */
  border: 2px solid rgba(0,0,0,0.3); /* lekka obwódka dla kontrastu */
}






























/* ================== KONTAKT PREMIUM ================== */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 32px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.contact-desc {
  text-align: left !important;
  margin: 0 0 40px 0 !important;
  font-size: 18px !important;
  opacity: 0.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.detail-item i {
  font-size: 24px;
  color: var(--black);
  width: 50px;
  height: 50px;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.detail-item:hover i {
  background: var(--black);
  color: var(--white);
}

.detail-item span {
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
}

.detail-item a, .detail-item p {
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: var(--black);
  margin: 0 !important;
}

/* Social Media Ikonki */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 50px;
}

.social-icon {
  width: 60px;
  height: 60px;
  background: #222;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
}

.fb:hover { background: #1877F2; }
.ig:hover { background: #E4405F; }
.tt:hover { background: #000000; }

/* Mapa */
.contact-map {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
}

/* Responsywność dla telefonu */
@media (max-width: 900px) {
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    height: 300px;
    order: 2; /* Mapa pod tekstem */
  }
}

/* ================== RESPONSIVE (TELEFONY I TABLETY) ================== */

@media (max-width: 768px) {
  body {
    padding-top: 100px; /* Mniejszy odstęp na górze */
  }

  .header {
    height: auto; /* Pozwalamy nagłówkowi się rozciągnąć */
    padding: 15px 20px;
    flex-direction: column; /* Układamy logo nad menu */
    gap: 10px;
  }

  .logo {
    height: 50px; /* Mniejsze logo na telefonie */
  }

  .nav {
    display: flex !important; /* Wymuszamy widoczność menu */
    justify-content: center;
    gap: 20px; /* Odstęp między linkami */
  }

  .nav a {
    margin-left: 0; /* Usuwamy duży margines z komputera */
    font-size: 14px; /* Mniejsza czcionka, żeby się zmieściła */
    letter-spacing: 1px;
  }

  /* Sekcje */
  .section {
    padding: 60px 5%;
  }

  .section h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

/* Usunięcie blokady dla najmniejszych telefonów */
@media (max-width: 480px) {
  .nav {
    display: flex !important; /* Gwarantuje, że napisy nie znikną */
  }
  
  .nav a {
    font-size: 12px; /* Jeszcze mniejsza czcionka dla bardzo małych ekranów */
  }
}















.premium-tile {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 460px;
  border-radius: 38px;
  display: block;
  text-decoration: none;
  color: white;

  /* --- OSTATECZNY FIX NA ROGI --- */
  overflow: hidden;
  /* Wymusza na Safari przestrzeganie obramowania za pomocą maski */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  /* Wymusza renderowanie 2D dla stabilności maski */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  /* Usuwa artefakty przy krawędziach */
  mask-clip: content-box;
}

.tile-bg {
  position: absolute;
  inset: 0; /* Zamiast top:0, left:0 itd. */
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
  z-index: 0;

  /* Dodatkowe zabezpieczenie: obrazek też musi mieć rogi */
  border-radius: inherit; 
  -webkit-backface-visibility: hidden;
}

@media (max-width: 768px) {
  .premium-tile, .tile-bg {
    border-radius: 24px;
    height: 380px;
  }
}

/* CIEMNA WARSTWA */
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.85)
  );
  z-index: 1;
}

.premium-tile::before {
  content: "";
  position: absolute;
  /* Ustawienie na 1px lub 0.5px tworzy idealne domknięcie */
  inset: 0.5px; 
  padding: 7px;
  border-radius: inherit; /* Pobierze 38px lub 24px z rodzica */
  background: linear-gradient(135deg, #959299, #944f80);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

/* TREŚĆ */
.tile-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.tile-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
}

.tile-content p {
  font-size: 16px;
  opacity: 0.85;
  line-height: 1.6;
  max-width: 80%;
  margin: 0 auto 40px;
}

/* CTA – ŚRODEK */
.tile-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0 auto;
  font-weight: 700;
  letter-spacing: 2px;
  color: #b37bff;
}

.tile-cta .arrow {
  width: 48px;
  height: 48px;
  background: white;
  color: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* HOVER */
.premium-tile:hover .tile-bg {
  transform: scale(1.1);
}

.premium-tile:hover {
  box-shadow: 0 0 60px rgba(98, 27, 213, 0.35);
}



@media (max-width: 768px) {
  .premium-tile {
    height: 420px;
  }

  .tile-content h3 {
    font-size: 26px;
  }

  .tile-content p {
    font-size: 14px;
  }
}































.image-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between; /* zdjęcia maksymalnie na boki, tekst w środku */
  margin-top: 50px;
  gap: 30px; /* większy odstęp między zdjęciami i tekstem */
  
}

.image-text-section img {
  width: 700px;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #555; /* cienka ramka, możesz zmienić kolor */
  box-shadow: 2px 2px 8px rgba(0,0,0,0.2); /* delikatny cień */
  transition: transform 0.8s; /* efekt po najechaniu */
}

.image-text-section .middle-text {
  font-size: 24px; /* większy tekst */
  font-weight: bold;
  text-align: center;
  flex: 1; /* tekst zajmuje całą dostępną przestrzeń między zdjęciami */
  margin: 0 30px; /* odstęp od zdjęć */
  line-height: 1.5; /* lepsza czytelność */
}

/* Responsywność */
@media (max-width: 900px) {
  .image-text-section {
    flex-direction: column;
    gap: 25px;
  }

  .image-text-section img {
    width: 90%;
    height: auto;
  }

  .image-text-section .middle-text {
    max-width: 90%;
    font-size: 20px;
  }
}
















/* UKŁAD */
.video-text-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

/* FILMY */
.video-box {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 14px;
}

/* TEKST */
.middle-text {
  text-align: center;
  line-height: 1.7;
  font-size: 1.1rem; /* DOMYŚLNIE (tablet / mały ekran) */
  max-width: 500px;
  font-weight: 500;       
}

/* 🖥️ KOMPUTER / DUŻY EKRAN */
@media (min-width: 1024px) {
  .video-box {
    max-width: 560px; /* WIĘKSZE FILMY */
  }

  .middle-text {
    font-size: 1.85rem; /* WIĘKSZY TEKST */
  }
}

/* 📱 TELEFON */
@media (max-width: 900px) {
  .video-text-section {
    flex-direction: column;
  }

  .video-box {
    max-width: 90%;
  }

  .middle-text {
    font-size: 1.2rem; /* WIĘKSZY TEKST NA TEL */
  }
}





























.pricing {
  background: #000000;
  color: #fff;
  padding: 80px 20px;
}

.pricing-title {
  text-align: center;
  font-size: 6cap;
  margin-bottom: 50px;
}

/* TABELA */
.pricing-table {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 25px 15px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

/* NAGŁÓWKI */
.col-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* NAZWY USŁUG */
.row-title {
  font-size: 1.6rem;
  font-weight: 700;
}

/* CENY */
.price {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 600;
}

/* OPIS */
.row-desc {
  grid-column: 1 / -1;
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 30px;
  line-height: 1.6;
   text-align: center;      /* ← WYŚRODKOWANIE */
  max-width: 900px;        /* ← opcjonalnie, ładniej */
  margin-left: auto;       /* ← */
  margin-right: auto; 
}

/* 📱 TELEFON */
@media (max-width: 900px) {

  .pricing-title {
    font-size: 2.2rem;
  }

  .pricing-table {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .row-title {
    text-align: center;
    margin-top: 30px;
  }

  .price {
    display: flex;
    justify-content: space-between;
    font-size: 1.4rem;
  }

  .price::before {
    content: attr(data-size);
    font-weight: 700;
    text-transform: uppercase;
  }

  .col-title {
    display: none;
  }
}


h5 {
  font-size: 1.6rem;   /* średnia wielkość */
  font-weight: 700;    /* pogrubiony */
  text-align: center;  /* wyśrodkowany */
  margin: 20px 0;
}





















/* === PODSTRONA SLIDER === */
.sub-slider {
  width: 100%;
  max-width: 720px;
  /* Usuwamy aspect-ratio, żeby wysokość była elastyczna */
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: transparent; /* Brak czarnych pasków - tło zlewa się ze stroną */
  margin: 0 auto;
  
  /* Ważne: musimy nadać minimalną wysokość, żeby slider nie zniknął */
  min-height: 300px; 
}

.sub-slider .slide {
  /* Zmieniamy z absolute na relative w wersji podstawowej, 
     żeby pierwszy obrazek nadał wysokość kontenerowi */
  position: relative;
  display: none; /* Ukrywamy wszystkie */
  width: 100%;
  height: auto;
  
  /* object-fit: contain - zdjęcie widać w całości, nic nie jest ucięte */
  object-fit: contain; 
  border-radius: inherit;
}

/* Wyświetlamy tylko aktywny slajd */
.sub-slider .slide.active {
  display: block;
  opacity: 1;
}

/* MOBILE */
@media (max-width: 900px) {
  .sub-slider {
    max-width: 100%;
    min-height: auto; /* Na mobile pozwalamy mu się kurczyć */
    border-radius: 12px;
  }

  .sub-slider .slide {
    /* Na telefonie 'contain' gwarantuje, że zobaczysz cały kadr */
    object-fit: contain;
  }
}












/* === PILL TITLE – PEŁNA SZARA PIGUŁKA === */
.pill-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 22px 90px;
  border-radius: 999px;

  background: #d6d6d6; /* mocniejszy szary */
  color: #000;

  letter-spacing: 4px;
  text-transform: uppercase;
}

/* IDEALNE WYŚRODKOWANIE */
.section {
  text-align: center;
}

.section .pill-title {
  margin: 0 auto 70px;
  width: fit-content;
}

/* 📱 TELEFON */
@media (max-width: 768px) {
  .pill-title {
    padding: 16px 48px;
    font-size: 28px;
    letter-spacing: 2px;
  }
}




