body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #4a70a1, #5e82b3, #8fa9d1);
}

header {
  background: #222;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 28px;
}

header p {
  font-size: 16px;
  color: #ccc;
}

section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

section img {
  max-width: 100%;
  border-radius: 10px;
  margin: 15px 0;
}

h2 {
  color: #111;
}

ul {
  padding-left: 20px;
}

.plany {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.plan {
  background: white;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  border: 2px solid black;
}

.plan h3 {
  margin-top: 0;
}

.plan-price {
  font-size: 24px;
  font-weight: bold;
  color: #e63946;
}

.szkolenia {
  color: #007bff;
}

.szkolenie-price {
  color: #007bff;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 20px;
}

.galeria {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.galeria img {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.galeria img:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .plany {
    flex-direction: column;
  }
}

/* PayPal button styles */
.pp-QG2YL72HCBQN2,
.pp-3H9B28KP8XTUG,
.pp-KWQXFK832H6DJ,
.pp-5FAQXUTT82NWY {
  text-align: center;
  border: none;
  border-radius: 0.25rem;
  min-width: 11.625rem;
  padding: 0 2rem;
  height: 2.625rem;
  font-weight: bold;
  background-color: #FFD140;
  color: #000000;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.25rem;
  cursor: pointer;
}

/* --- DODAJ TEN KOD MENU PONIŻEJ --- */
html {
  scroll-behavior: smooth;
}

.navbar {
  background: #222;
  padding: 10px;
  position: relative;
}
/* Hamburger - ciemne tło, biały kolor, po prawej u góry */
.menu-toggle {
  display: none; /* domyślnie ukryty na desktopie */
  position: fixed;
  top: 50px;  /* pod Google Translate */
  right: 10px;
  z-index: 10002;
  cursor: pointer;
  font-size: 28px;
  background: #222;  /* ciemne tło */
  color: white;      /* biała ikonka */
  padding: 8px 12px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  user-select: none;
  transition: top 0.3s ease;
}

/* Ukrywanie hamburgera */
.menu-toggle.hide {
  top: -60px !important;
}

/* Menu na mobilkach - wyśrodkowane, czarne tło, białe linki */
@media (max-width: 768px) {
  .menu-toggle {
    display: block; /* hamburger widoczny na mobilkach */
  }

  .menu {
    display: none; /* domyślnie ukryte */
    flex-direction: column;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000000; /* czarne tło */
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 10001;
    gap: 15px;
    max-width: 90vw;
    max-height: 80vh;
    overflow-y: auto;
  }

  .menu.show {
    display: flex !important;
  }

  /* Linki na mobilkach - białe */
  .menu a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .menu a:hover,
  .menu a:focus {
    color: #ffd54f; /* żółte podświetlenie */
  }
}

/* Menu i linki na desktopie */
@media (min-width: 769px) {
  .menu-toggle {
    display: none; /* hamburger ukryty na desktopie */
  }

  .menu {
    display: flex !important;
    flex-direction: row;
    gap: 20px;
    position: static;
    width: auto;
    background-color: #000000; /* czarne tło */
    padding: 10px 20px;
    box-shadow: none;
    border-radius: 0;
    max-width: none;
    max-height: none;
    overflow: visible;
    z-index: 10;
  }

  /* Linki na desktopie - białe */
  .menu a {
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
  }

  .menu a:hover,
  .menu a:focus {
    color: #ffd54f; /* żółte podświetlenie */
  }
}



