
* {
margin: 0; 
padding: 0; 
box-sizing: border-box;
}

html {
font-family: "Noto Sans", roboto, sans-serif;
color: #222;
font-size: 10px;
}

body {
max-width: 1920px;
margin: 0 auto;
padding-top: 20px;
font-size: 14px;
background-color: #998DAA;
/* background-color: #AA96A3; */
 background: linear-gradient(135deg, #8c7aa0, #a99abf);
}

/* 
nav ul {
list-style: none;
text-align: center;
}

nav ul li {
display: inline-block;
}

nav ul li a {
    display: block;
    box-sizing: border-box;
    margin-right: 30px;
    font-size: 12px;
    font-family: "Noto Sans", roboto, sans-serif;
    color: white;
    background-color: #430C8B;
    text-decoration: none;
    padding: 10px 10px;
    border: 2px solid white;
    border-radius: 10px;
    text-align: center;
} */

nav {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

nav ul {
    display: flex;
    gap: 26px;
    list-style: none;
}

nav ul li a {
    position: relative;
    display: inline-flex;   
    font-size: 18px;
    font-family: "Noto Sans", roboto, sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    overflow: hidden;

    /* AI glass */
    background: rgba(67, 12, 139, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    transition: all 0.25s ease, box-shadow 0.3s ease;
}

/* animowana neonowa obwódka */
nav ul li a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    padding: 2px;
    background: linear-gradient(130deg, #B27CFF, #5B1CFF, #B27CFF);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;

    opacity: 0;
    transition: opacity 0.35s ease;
}

/* neon glow + wyjście do góry */
nav ul li a:hover {
    background: rgba(67, 12, 139, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(167, 115, 255, 0.85);
    color: #E4D7FF;
}

/* obwódka pokazuje się dopiero przy hover */
nav ul li a:hover::before {
    opacity: 1;
}

/* sekcja-video {
    display: flex;
    justify-content: center;
    padding: 40px 0;
} */

/* .intro h2{
color: #E4D7FF;
text-align: center;
}

.intro p {
color: rgb(255, 255, 255);
text-align: center;
font-size: 18px;
} */

.intro {
  max-width: 900px;
  margin: 50px auto 40px;
  text-align: center;
  padding: 30px 40px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 22px;
  backdrop-filter: blur(12px);

  box-shadow: 0 0 25px rgba(167, 115, 255, 0.25);
}

/* .intro h2 {
  font-size: 32px;
  color: #F6ECFF;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.intro p {
  font-size: 19px;
  color: #F3E8FF;
  line-height: 1.7;
  font-weight: 300;
} */

.intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 30px 40px;
    background: rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

.intro h2 {
    color: #F0E6FF;
    font-size: 28px;
    text-align: center;
    margin-bottom: 15px;
}

.intro h2 {
    color: #ffffff;
    -webkit-text-stroke: 0px transparent;
    transition: -webkit-text-stroke 0.3s ease;
}

.intro:hover h2 {
    -webkit-text-stroke: 1px #C798FF; /* kolor ramki intro bez hovera */
}


.intro p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    line-height: 1.6;
}

.intro p {
    color: #ffffff;
    text-shadow: 0 0 6px rgba(199, 152, 255, 0.55); /* delikatny jasny glow */
    transition: text-shadow 0.3s ease;
}

.intro:hover p {
    text-shadow: 0 0 10px rgba(199, 152, 255, 0.85);
}


.intro::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(130deg, #EAD7FF, #C9A7FF, #EAD7FF);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.intro:hover::before {
    background: linear-gradient(130deg, #B27CFF, #5B1CFF, #B27CFF);
    opacity: 1;
}


.ebooki {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ebook {
  text-align: center;
  max-width: 260px;
}

.ebook img {
  width: 100%;
  border-radius: 14px;
  max-width: 350px;
  height: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.35);
   transition: transform 0.3s ease;
  cursor: pointer;
}

.ebook img:hover {
  transform: scale(1.1); /* delikatne powiększenie */
}


.btn-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.btn-box a {
  display: inline-flex;
  align-self: center;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  font-family: "Noto Sans", roboto, sans-serif;
  letter-spacing: 1px;
  transition: 0.25s ease;
  text-align: center;
  white-space: nowrap;

  /* glass */
  background: rgba(67, 12, 139, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(6px);
  color: white;
}

.btn-box a:hover {
  background: rgba(67, 12, 139, 0.6);
  border-color: #c998ff;
  box-shadow: 0 0 15px rgba(169, 115, 255, 0.55);
  transform: translateY(-3px);
}
.ebooki {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.ebook {
  text-align: center;
  max-width: 350px;
  width: 100%;
}

.btn-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 15px;
}

.paypal-btn {
  margin-top: 10px;
  text-align: center;
}

.link-wrapper {
  display: flex;
  justify-content: center;
  margin: 25px 0;
}

.regulamin-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
  padding: 10px 22px;
  background: #ece8ff;      /* delikatny fiolet */
  color: #2a1e8a;           /* ciemny fiolet */
  border-radius: 10px;
  transition: 0.25s ease;
}

.regulamin-link:hover {
  background: #d5cdff;
  transform: translateX(4px);
}


/* section {
  margin-bottom: 60px;
} */

.sekcja-video {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.video-wrapper {
  position: relative;
  width: 70%;
  max-width: 600px;  /* tu ustawiasz MAKSYMALNĄ szerokość */
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
}

.video-wrapper iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
}

.social-links {
    text-align: center;
    margin: 40px 0;
}

.social-title {
    font-family: "Noto Sans", roboto, sans-serif;
    font-size: 22px;
    color: white;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.social-link {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    font-family: "Noto Sans", roboto, sans-serif;
    color: white;
    text-decoration: none;
    padding: 10px 20px;

    background: rgba(67, 12, 139, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    border-radius: 14px;

    transition: all 0.25s ease;
    white-space: nowrap;
    width: auto;
    height: auto;
}

.social-link:hover {
    background: rgba(67, 12, 139, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(167, 115, 255, 0.85);
    color: #E4D7FF;
}

.footer {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    font-family: "Noto Sans", roboto, sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    color: white;

    /* identyczne tło jak przycisków w nawigacji */
    background: rgba(67, 12, 139, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);

    /* delikatne zaokrąglenie jak w nav (od góry nie będzie widać) */
    border-radius: 14px 14px 0 0;
}

/* ===========================
   RESPONSYWNOŚĆ – TELEFONY
   =========================== */
@media (max-width: 768px) {

    /* nawigacja: przyciski bliżej siebie i mniejsze marginesy */
    nav ul {
        gap: 14px;
        padding: 0 10px;
        flex-wrap: wrap;
    }

    nav ul li a {
        padding: 8px 14px;
        font-size: 16px;
        letter-spacing: 0.5px;
    }

    /* główny tekst */
    body {
        margin: 0 14px;
        font-size: 16px;
        line-height: 1.5;
    }

    /* obrazki / embed / youtube / wideo */
    iframe, img, video {
        max-width: 100%;
        height: auto;
    }

    /* sekcja social links — centrowanie */
    .social-links {
        display: flex;
        justify-content: center;
        gap: 14px;
        margin-top: 20px;
    }

    /* stopka */
    .footer {
        text-align: center;
        padding: 20px 10px;
        font-size: 14px;
    }
}
  /* ===========================
   RESPONSYWNOŚĆ – MAŁE TELEFONY
   =========================== */
 
 @media (max-width: 480px) {
    nav ul {
        gap: 10px;
        flex-wrap: wrap;
    }

    nav ul li a {
        font-size: 14px;
        padding: 6px 10px;
        white-space: nowrap;
    }
}
@media (max-width: 480px) {
    .social-title {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .social-link {
        font-size: 14px;
        padding: 6px 12px;
        margin: 6px 4px;
    }
}
@media (max-width: 480px) {
    .footer {
        font-size: 12px;
        padding: 14px 6px;
    }
}
@media (max-width: 480px) {

    /* INTRO */
    .intro h2 {
        font-size: 20px;
    }

    .intro p {
        font-size: 16px;
        line-height: 1.4;
    }

    /* PRZYCISKI (ebooki) */
    .btn-box a {
        font-size: 14px;
        padding: 8px 10px;
        letter-spacing: 0.5px;
    }

    /* TEKST NAD MEDIAMI SPOŁECZNOŚCIOWYMI */
    .social-title {
        font-size: 16px;
        margin-bottom: 14px;
    }
}
@media (max-width: 480px) {
    a[href*="PJ5DNT9XBMUAU"] {
        font-size: 13px !important;
        padding: 8px 12px !important;
        line-height: 1.2 !important;
        white-space: normal !important;
    }
}
