/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b1b28 0, #050509 55%, #010002 100%);
  color: #f5f5f5;
  line-height: 1.6;
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 85%, rgba(212, 175, 55, 0.08), transparent 55%),
    radial-gradient(circle at 80% 5%, rgba(255, 80, 50, 0.08), transparent 55%);
  z-index: -1;
}

}

/* ===== GLOBAL ===== */
a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4rem 0;
}

.section--tight {
  padding: 2.5rem 0;
}

.section__title {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: #fdfdfd;
  position: relative;
  display: inline-block;
}

.section__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, rgba(212, 175, 55, 0.0));
  opacity: 0.9;
}

}

.section__subtitle {
  font-size: 1rem;
  color: #c8c8d8;
  margin-bottom: 2rem;
  font-style: italic;
}

/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */
/* ===== NAVBAR ===== */

.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: radial-gradient(circle at top, rgba(20,15,40,0.95), rgba(5,4,12,0.98));
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
  backdrop-filter: blur(8px);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.5rem;
  min-height: 64px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
}

.navbar__logo {
  height: 80px;
  width: auto;
  margin-right: 0.6rem;
  object-fit: contain;
  display: block;
}

.navbar__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.navbar__menu {
  display: flex;
  gap: 1.2rem;
  align-items: center;
}

.navbar__link {
  font-size: 0.95rem;
  text-decoration: none;
  color: #e5e5e5;
  opacity: 0.9;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.navbar__link:hover {
  color: #ffffff;
  opacity: 1;
}

/* --- HAMBURGER --- */

.navbar__toggle {
  display: none;              /* na desktopie ukryty */
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: #fff;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* animacja w X */
.navbar__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* --- WIDOK MOBILNY --- */

@media (max-width: 1200px) {           /* szeroki próg, żeby łatwo zadziałało */

  .navbar__toggle {
    display: block;                    /* pokaż hamburger */
  }

  .navbar__menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(5, 4, 12, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.5rem 0;
    
    /* domyślnie ukryte */
    display: none;
  }

  /* MENU OTWARTE – TO JEST TEN BRAKUJĄCY FRAGMENT */
  .navbar__menu.navbar__menu--open {
    display: flex;
  }
}
/* ===== HERO / ZŁOTA AURA ===== */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__inner {
  position: relative;
}

.hero__glow {
  position: absolute;
  top: 30%;
  left: 78%;
  width: 360px;
  height: 360px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;

  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.85) 0%,
    rgba(255, 215, 0, 0.55) 30%,
    rgba(255, 215, 0, 0.15) 60%,
    transparent 100%
  );

  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.7),
    0 0 90px rgba(255, 215, 0, 0.4);

  opacity: 0.9;
  animation: heroGlowPulse 6s ease-in-out infinite alternate;
}

.hero__visual,
.hero > .hero__content {
  position: relative;
  z-index: 1;
}

@keyframes heroGlowPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.9;
  }
}

@media (max-width: 768px) {
  .hero__glow {
    width: 240px;
    height: 240px;
  }
}

/* Trochę większe fonty na telefonach */
@media (max-width: 768px) {
  body {
    font-size: 1.05rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .section__subtitle {
    font-size: 1.05rem;
  }

  p {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .btn {
    font-size: 0.95rem;
  }
}

/* ===== WSPÓŁPRACA / PARTNERZY ===== */

.section--partners {
  background: rgba(20, 15, 40, 0.4);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.section--partners .section__title {
  color: #f6e8b1;
}

.partners__text {
  max-width: 720px;
  margin: 1.2rem auto 2rem;
  color: #e5e5e5;
  opacity: 0.9;
}

.partners__btn {
  margin-top: 1.5rem;
}

/* ===== ROMANI CHAKRA – TŁO W SEKCJI "O TEATRZE" ===== */

.section--chakra {
  position: relative;
  overflow: hidden;
}

/* żeby treść była ponad symbolem */
.section--chakra > .container {
  position: relative;
  z-index: 1;
}

/* samo koło – chakra w tle po prawej */
.section--chakra::before {
  content: "";
  position: absolute;
  top: 30%;
  right: -120px;          /* jak za mało / za dużo – damy inne wartości */
  width: 420px;
  height: 420px;
  transform: translateY(-50%);
  border-radius: 50%;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;

  background:
    /* lekka poświata w środku */
    radial-gradient(circle at center,
      rgba(212, 175, 55, 0.45) 0,
      transparent 60%
    ),
    /* pierścień – obręcz koła */
    radial-gradient(circle at center,
      transparent 55%,
      rgba(212, 175, 55, 0.75) 57%,
      transparent 60%
    ),
    /* szprychy – powtarzający się wzór kątowy */
    repeating-conic-gradient(
      from 0deg,
      rgba(212, 175, 55, 0.7) 0deg 2deg,
      transparent 2deg 15deg
    );

  filter: blur(0.3px);
animation: chakraRotate 90s linear infinite;

}
@keyframes chakraRotate {
  from {
    transform: translateY(-50%) rotate(0deg);
  }
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}


/* WERSJA MOBILNA – mniejsze, delikatniejsze koło */
@media (max-width: 768px) {
  .section--chakra::before {
    right: -180px;
    top: 18%;
    width: 260px;
    height: 260px;
    opacity: 0.18;
  }
}



/* ===== BUTTONS ===== */



/* ===== BUTTONS ===== */
/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}

.btn--gold {
  background: linear-gradient(135deg, #d4af37, #ffdf7d);
  color: #19130b;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
}

.btn--gold:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.85);
}

.btn--outline {
  background: transparent;
  border: 1px solid rgba(212, 175, 55, 0.6);
  color: #f8f4ea;
}

.btn--outline:hover {
  background: rgba(212, 175, 55, 0.08);
}

/* ===== HERO (index) ===== */
.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 3rem;
  align-items: center;
}

.hero__title {
  font-size: clamp(2.3rem, 4vw, 3.1rem);
  margin-bottom: 0.75rem;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: #c8c8d8;
  margin-bottom: 1.5rem;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero__tagline {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: #b9b7c7;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__orb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(212, 175, 55, 0.7);
  box-shadow:
    0 0 50px rgba(212, 175, 55, 0.3),
    0 0 120px rgba(255, 50, 50, 0.18);
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 30% 10%, #ffe9b0 0, #d4af37 30%, #4a1a0b 100%);
}

.hero__orb::before {
  content: "";
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px dashed rgba(10, 4, 0, 0.7);
}

.hero__orb::after {
  content: "";
  position: absolute;
  inset: 60px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 20%, rgba(255,255,255,0.8) 0, transparent 55%);
  opacity: 0.9;
}

/* ===== GENERIC LAYOUTS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}

.card {
  background: radial-gradient(circle at top, rgba(255,255,255,0.05) 0, rgba(10,8,20,0.95) 45%, rgba(0,0,0,0.98) 100%);
  border-radius: 1.2rem;
  padding: 1.6rem 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 10px 30px rgba(0,0,0,0.55);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, border-color 0.18s ease-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.8);
  border-color: rgba(212, 175, 55, 0.4);
}

}

/* ===== BOOKS ===== */
.book-list {
  display: grid;
  gap: 2rem;
}

.book {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2rem;
  align-items: flex-start;
}

.book__cover {
  width: 100%;
  max-width: 260px;
  border-radius: 1rem;
  box-shadow: 0 18px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  background: #111;
}

.book__title {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}

.book__subtitle {
  font-size: 0.98rem;
  font-style: italic;
  color: #cbc9da;
  margin-bottom: 1rem;
}

.book__meta {
  margin-top: 1.5rem;
}

/* ===== NEWSLETTER BLOCK ===== */
.newsletter {
  background: radial-gradient(circle at top, rgba(212, 175, 55, 0.16), rgba(5,5,12,0.98));
  border-radius: 1.4rem;
  padding: 2rem 1.8rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 18px 55px rgba(0,0,0,0.8);
  text-align: center;
}

.newsletter p {
  margin-bottom: 1.4rem;
  color: #e9e7f5;
}

.newsletter__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.input {
  background: rgba(5,5,12,0.85);
  border-radius: 999px;
  border: 1px solid rgba(200,200,220,0.35);
  color: #f5f5f5;
  padding: 0.65rem 1.1rem;
  min-width: 230px;
  font-size: 0.95rem;
}

.input::placeholder {
  color: #9693aa;
}

/* ===== CONTACT ===== */
.contact-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-block p {
  margin-bottom: 0.75rem;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  padding: 2.5rem 0 1.5rem;
  margin-top: 3rem;
  background: radial-gradient(circle at top, rgba(255,255,255,0.03), rgba(0,0,0,0.95));
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.8fr) minmax(0, 2fr);
  gap: 2rem;
  font-size: 0.9rem;
}

.footer__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer__bottom {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #aaa7c1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero__visual {
    order: -1;
    margin-bottom: 1.5rem;
  }

  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .book {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .navbar__menu {
    display: none; /* wersja prosta bez mobilnego menu – możemy dopisać później */
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.blog-content {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.05rem;
}
.newsletter-box {
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid rgba(255, 215, 0, 0.25);
  padding: 1.5rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}
.newsletter-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.6;
}
.book-section {
  margin-top: -48px;
}
/* BUTTON FOR BOOK PAGES */
.book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;

  /* złoty styl hero */
  background: linear-gradient(135deg, #d4af37, #ffdf7d);
  color: #19130b;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.55);
  text-decoration: none;
}

.book-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(212, 175, 55, 0.85);
}

.book-btn:active {
  transform: translateY(1px) scale(0.99);
  box-shadow: 0 6px 14px rgba(0,0,0,0.6);
}




