/* ==========================================================================
   RESET & CZCIONKI
   ========================================================================== */

/* Czcionki */
/* Montserrat jako alternatywa dla Futura LT Pro - geometryczna, nowoczesna */
/* Be Vietnam Pro - czytelna, przyjazna */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ==========================================================================
   KONTENER STRONY - Responsive
   ========================================================================== */

.page-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tablet */
@media (min-width: 768px) {
  .page-container {
    padding: 0 40px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .page-container {
    padding: 0 80px;
  }
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.06),
    0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Top Bar */
.top-bar {
  background: #2a2a2a;
  color: #fff;
  padding: 12px 0;
  font-size: 13px;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.top-bar-content.centered {
  justify-content: center;
}

.top-bar-left {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-item .icon {
  font-size: 16px;
  opacity: 0.9;
}

.top-bar-item .text {
  font-size: 13px;
  line-height: 1.4;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.support-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.support-link:hover {
  opacity: 0.8;
}

.donate-btn {
  background: #dc3545;
  color: #fff;
  padding: 11px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
}

.donate-btn:hover {
  background: #c82333;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

/* Mobile - top bar responsywny */
@media (max-width: 767px) {
  .top-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .top-bar-content.centered {
    align-items: center;
  }

  .top-bar-left {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .top-bar-item .text {
    font-size: 12px;
  }

  .top-bar-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .top-bar-left {
    gap: 15px;
  }

  .top-bar-item .text {
    font-size: 12px;
  }
}

/* ==========================================================================
   MENU
   ========================================================================== */

.main-nav {
  background: linear-gradient(180deg, #f5d23b 0%, #f0c820 100%);
  padding: 0;
  border-top: none;
}

.main-nav .page-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.main-nav .navbar-brand {
  justify-self: start;
}

.main-nav .nav-menu {
  justify-self: center;
}

.mobile-menu-toggle {
  display: none;
}

.navbar-brand {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #2a2a2a;
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.navbar-brand .logo {
  height: 70px;
  width: auto;
  display: block;
  transition: transform 0.2s ease;
}

.navbar-brand:hover .logo {
  transform: scale(1.03);
}

.nav-menu {
  display: flex;
  gap: 2px;
  align-items: center;
  flex-wrap: nowrap;
  height: auto;
}

.nav-item {
  list-style: none;
  display: flex;
  align-items: center;
  position: relative;
}

.has-dropdown {
  align-items: stretch;
}

.submenu-toggle {
  display: none;
}

.dropdown-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 280px;
  background: #fff;
  border: none;
  border-radius: 12px;
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.04),
    0 12px 28px rgba(0, 0, 0, 0.1);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.2s ease 0.12s,
    transform 0.2s ease 0.12s,
    visibility 0.2s ease 0.12s;
  z-index: 1200;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-link {
  display: block;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  padding: 10px 16px;
  white-space: nowrap;
  border-radius: 8px;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}

.dropdown-link:hover {
  background: #fef9e7;
  color: #111;
}

@media (min-width: 768px) {
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 16px;
    transform: translateY(100%);
  }

  .has-dropdown:hover .dropdown-menu,
  .has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }
}

.nav-link {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #2a2a2a;
  padding: 10px 18px;
  margin: 6px 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  transition:
    color 0.2s ease,
    background 0.25s ease;
  white-space: nowrap;
  border-radius: 8px;
  position: relative;
  letter-spacing: 0.02em;
}

.nav-link:hover {
  color: #000;
  background: #ffffff;
}

.nav-link.active,
.nav-item.active .nav-link {
  color: #000;
  font-weight: 700;
  background: #ffffff;
}

.shop-link .shop-icon {
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.shop-link {
  color: #c0392b;
  font-weight: 700;
}

.shop-link:hover,
.nav-item.active .shop-link {
  color: #a93226;
  background: #ffffff;
}

/* Mobile - hamburger menu */
@media (max-width: 767px) {
  .main-nav .page-container {
    grid-template-columns: 1fr auto;
    position: relative;
    gap: 8px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    background: #fff1a8;
    gap: 5px;
    cursor: pointer;
    justify-self: end;
  }

  .mobile-menu-toggle-line {
    width: 18px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  .mobile-menu-toggle.is-active {
    background: #ffe066;
  }

  .mobile-menu-toggle.is-active .mobile-menu-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .mobile-menu-toggle.is-active .mobile-menu-toggle-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.is-active .mobile-menu-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
    z-index: 1300;
    gap: 0;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-item {
    width: 100%;
    align-items: stretch;
  }

  .nav-link {
    width: 100%;
    border-radius: 8px;
    padding: 13px 16px;
  }

  .nav-link:hover {
    background: #f9f5e8;
  }

  .nav-link::after {
    display: none;
  }

  .has-dropdown {
    display: block;
  }

  .has-dropdown > .nav-link {
    padding-right: 48px;
  }

  .submenu-toggle {
    display: inline-flex;
    position: absolute;
    top: 6px;
    right: 6px;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    background: #fff4bf;
    color: #111;
    font-weight: 700;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    border: none;
    box-shadow: none;
    border-radius: 8px;
    background: #fff9dc;
    padding: 6px 0;
    margin-top: 6px;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    transition: none;
  }

  .has-dropdown.submenu-open .dropdown-menu {
    display: block;
  }

  .dropdown-link {
    font-size: 13px;
    padding: 9px 12px;
    white-space: normal;
  }

  .navbar-brand .logo {
    height: 56px;
  }

  .navbar-brand {
    padding: 10px 0;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .nav-menu {
    gap: 0;
  }

  .nav-link {
    font-size: 13px;
    padding: 18px 14px;
  }

  .navbar-brand .logo {
    height: 62px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .nav-link {
    font-size: 14px;
    padding: 22px 20px;
  }

  .navbar-brand .logo {
    height: 70px;
  }
}

/* ==========================================================================
   MAIN CONTENT
   ========================================================================== */

.main-content {
  flex: 1;
  padding: 40px 0;
}

/* Mobile */
@media (max-width: 767px) {
  .main-content {
    padding: 20px 0;
  }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1199px) {
  .main-content {
    padding: 30px 0;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .main-content {
    padding: 60px 0;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background-color: #f8f9fa;
  padding: 40px 0;
  margin-top: auto;
  font-family: "Be Vietnam Pro", sans-serif;
  color: #666;
  text-align: center;
}

/* Mobile */
@media (max-width: 767px) {
  .site-footer {
    padding: 30px 0;
    font-size: 14px;
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .site-footer {
    padding: 60px 0;
  }
}
/* ==========================================================================
   HERO SECTION Z GRADIENTEM
   ========================================================================== */

.hero-section {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Gradient overlay - od zielonego po lewej do przezroczystego po prawej */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(22, 101, 52, 0.95) 0%,
    rgba(22, 101, 52, 0.85) 30%,
    rgba(22, 101, 52, 0.5) 60%,
    rgba(22, 101, 52, 0.2) 80%,
    transparent 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 30px 40px;
}

.hero-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 18px;
  color: white;
}

.hero-subtitle {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
  font-weight: 300;
}

/* Formularz darowizny */
.donation-form {
  background: white;
  border-radius: 15px;
  padding: 25px;
  max-width: 700px;
}

.donation-label {
  color: #333;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
  font-size: 16px;
}

.donation-amounts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.amount-btn {
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 15px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  text-align: center;
}

.amount-btn:hover {
  background: #e0e0e0;
}

.amount-btn.active,
.amount-btn:focus {
  background: #166534;
  color: white;
  border-color: #166534;
}

.donation-custom {
  margin-bottom: 20px;
}

.donation-custom-label {
  display: block;
  color: #555;
  font-size: 14px;
  margin-bottom: 8px;
}

.donation-custom-input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.donation-custom-input {
  flex: 1;
  max-width: 200px;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.donation-custom-input:focus {
  border-color: #166534;
}

.donation-custom-input::placeholder {
  color: #aaa;
  font-weight: 400;
}

.donation-custom-currency {
  font-weight: 600;
  color: #555;
  font-size: 16px;
}

.submit-btn {
  width: 100%;
  background: #dc3545;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.submit-btn:hover {
  background: #c82333;
}

.submit-btn:disabled {
  background: #999;
  cursor: not-allowed;
  opacity: 0.6;
}

.submit-btn:disabled:hover {
  background: #999;
}

.submit-btn::before {
  content: "🎁";
  font-size: 20px;
}

/* ==========================================================================
   DONATION PAGE
   ========================================================================== */

.donate-back-link {
  display: inline-block;
  margin-top: 30px;
  color: #166534;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.donate-back-link:hover {
  color: #0f4a24;
  text-decoration: underline;
}

.donate-page-title {
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  color: #1a1a2e;
  margin: 15px 0 30px;
  font-family: "Montserrat", sans-serif;
}

.donate-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  max-width: 960px;
  margin: 0 auto 60px;
}

/* Left column - image */
.donate-card-left {
  position: relative;
}

.donate-card-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 30px;
}

.donate-card-quote {
  color: white;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  margin: 0;
}

/* Right column - form */
.donate-card-right {
  padding: 35px 30px;
}

.donate-section {
  margin-bottom: 25px;
}

.donate-section-title {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
}

/* Amount grid - 3 columns */
.donate-amounts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.donate-amounts-grid .amount-btn {
  padding: 12px 8px;
  font-size: 15px;
}

.amount-custom-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f0f0f0;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}

.amount-custom-inline input {
  width: 55px;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  padding: 2px 0;
  -moz-appearance: textfield;
}

.amount-custom-inline input::-webkit-outer-spin-button,
.amount-custom-inline input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.amount-custom-inline input:focus {
  border-bottom-color: #166534;
}

/* Frequency toggle */
.donate-frequency-toggle {
  display: flex;
  gap: 0;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.freq-btn {
  flex: 1;
  padding: 12px;
  border: none;
  background: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  color: #555;
  transition: all 0.2s ease;
}

.freq-btn.active {
  background: #166534;
  color: white;
}

.freq-btn:hover:not(.active) {
  background: #f5f5f5;
}

/* Form fields */
.donate-field {
  margin-bottom: 12px;
}

.donate-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: border-color 0.3s ease;
}

.donate-input:focus {
  border-color: #166534;
}

.donate-input::placeholder {
  color: #999;
}

/* Payment methods */
.donate-payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.pay-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #333;
  transition: all 0.2s ease;
}

.pay-btn:hover {
  border-color: #bbb;
}

.pay-btn.active {
  border-color: #d4a017;
  background: #fffbea;
}

.pay-icon {
  font-size: 16px;
}

.pay-icon-blik {
  background: #e6007e;
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 3px;
}

.pay-icon-paypal {
  color: #003087;
  font-weight: 800;
  font-size: 16px;
}

/* Submit button */
.donate-submit-btn {
  width: 100%;
  margin-top: 20px;
}

.field-validation-error {
  color: #dc3545;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}

/* Responsive - Donate page */
@media (max-width: 767px) {
  .donate-card {
    grid-template-columns: 1fr;
  }

  .donate-card-image {
    min-height: 250px;
  }

  .donate-card-quote {
    font-size: 18px;
  }

  .donate-page-title {
    font-size: 28px;
    margin: 25px 0 20px;
  }

  .donate-amounts-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .donate-payment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Responsive */
@media (max-width: 767px) {
  .hero-section {
    min-height: 380px;
  }

  .hero-content {
    padding: 30px 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .donation-form {
    padding: 20px;
  }

  .donation-amounts {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .amount-btn {
    padding: 12px;
    font-size: 14px;
  }

  .donation-custom-input {
    max-width: 100%;
  }

  .submit-btn {
    font-size: 16px;
    padding: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .hero-title {
    font-size: 42px;
  }

  .donation-amounts {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ==========================================================================
   POZNAJ NAS BLIŻEJ SECTION
   ========================================================================== */

.about-section {
  background: #f4b942;
  padding: 40px 0 45px;
  margin-top: 60px;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 35px;
}

.about-text {
  padding-right: 20px;
}

.about-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 34px;
  color: #2a2a2a;
  margin-bottom: 14px;
  line-height: 1.15;
}

.about-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #2a2a2a;
}

.about-image {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  margin-left: auto;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Section */
.stats-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  padding-top: 15px;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 56px;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 6px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.08);
}

.stat-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 4px;
  line-height: 1.3;
}

.stat-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  color: #2a2a2a;
}

/* Responsive dla About Section */
@media (max-width: 991px) {
  .about-section {
    padding: 40px 0 50px;
  }

  .about-container {
    padding: 0 40px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 35px;
  }

  .about-text {
    padding-right: 0;
  }

  .about-title {
    font-size: 30px;
  }

  .about-description {
    font-size: 15px;
  }

  .about-image {
    max-width: 100%;
    margin-left: 0;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
    padding-top: 15px;
  }

  .stat-number {
    font-size: 48px;
  }

  .stat-title {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 35px 0 40px;
  }

  .about-container {
    padding: 0 25px;
  }

  .about-content {
    gap: 25px;
    margin-bottom: 30px;
  }

  .about-title {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .about-description {
    font-size: 14px;
  }

  .stats-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 20px;
  }

  .stat-number {
    font-size: 40px;
  }

  .stat-title {
    font-size: 14px;
  }

  .stat-description {
    font-size: 12px;
  }
}

/* ==========================================================================
   AKTUALNOŚCI SECTION
   ========================================================================== */

.news-section {
  background: #ffffff;
  padding: 80px 0;
}

.news-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.news-header-left {
  flex: 1;
}

.news-main-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #2a2a2a;
  margin-bottom: 5px;
  line-height: 1.2;
}

.news-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 18px;
  color: #666;
  font-weight: 400;
}

/* "Zobacz wszystkie" button in header */
.news-show-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: #ffffff;
  background: #166534;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(22, 101, 52, 0.3);
  white-space: nowrap;
  margin-top: 8px;
}

.news-show-all-btn:hover {
  background: #0f4c25;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(22, 101, 52, 0.4);
}

/* Desktop two-column layout */
.news-layout {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.news-video-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.news-list-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Video */
.news-video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #000;
}

.news-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.news-video-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 12px;
  line-height: 1.4;
}

/* News List Items */
.news-list-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  transition: background 0.2s ease;
}

.news-list-link {
  display: flex;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  width: 100%;
}

.news-list-link:hover {
  text-decoration: none;
  color: inherit;
}

.news-list-item:first-child {
  padding-top: 0;
}

.news-list-item:last-child {
  border-bottom: none;
}

.news-list-image {
  flex-shrink: 0;
  width: 130px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
}

.news-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-list-item:hover .news-list-image img {
  transform: scale(1.05);
}

.news-list-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-list-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2a2a2a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.news-list-excerpt {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #666;
}

.news-list-date {
  color: #166534;
  font-weight: 500;
}

.news-list-location {
  color: #888;
}

/* Legacy classes kept for compatibility */
.news-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.news-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.news-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
  transform: scale(1.05);
}

.news-card-content {
  padding: 20px;
}

.news-card-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #2a2a2a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.news-card-excerpt {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.news-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  font-size: 13px;
  color: #666;
}

.news-date,
.news-location {
  display: flex;
  align-items: center;
  gap: 5px;
}

.news-read-more {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #166534;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.news-read-more:hover {
  color: #0f4c25;
  text-decoration: underline;
}

/* Link "Zobacz wszystkie" */
.news-more-link {
  text-align: center;
}

.news-show-all {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  background: #166534;
  padding: 14px 35px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(22, 101, 52, 0.3);
}

.news-show-all:hover {
  background: #0f4c25;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(22, 101, 52, 0.4);
}

/* Responsive dla News Section */
@media (max-width: 991px) {
  .news-section {
    padding: 60px 0;
  }

  .news-container {
    padding: 0 40px;
  }

  .news-layout {
    flex-direction: column;
    gap: 30px;
  }

  .news-list-image {
    width: 110px;
    height: 85px;
  }

  .news-cards-row {
    gap: 25px;
  }

  .news-card-title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding: 50px 0;
  }

  .news-container {
    padding: 0 25px;
  }

  .news-header {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
  }

  .news-main-title {
    font-size: 32px;
  }

  .news-subtitle {
    font-size: 16px;
  }

  .news-layout {
    flex-direction: column;
    gap: 25px;
  }

  .news-video-row {
    margin-bottom: 30px;
  }

  .news-list-item {
    gap: 12px;
    padding: 14px 0;
  }

  .news-list-image {
    width: 90px;
    height: 70px;
  }

  .news-list-title {
    font-size: 14px;
  }

  .news-list-excerpt {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .news-cards-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-card-title {
    font-size: 18px;
  }

  .news-meta {
    flex-direction: column;
    gap: 5px;
  }

  .news-card-excerpt {
    font-size: 13px;
  }

  .news-show-all {
    font-size: 15px;
    padding: 12px 28px;
  }
}

/* ==========================================================================
   ZBIÓRKI SECTION
   ========================================================================== */

.campaigns-section {
  background: #ffffff;
  padding: 80px 0;
  position: relative;
}

/* Żółty pasek na górze */
.campaigns-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: #f4b942;
}

.campaigns-header {
  max-width: 1300px;
  margin: 0 auto 60px;
  padding: 0 60px;
  text-align: center;
}

.campaigns-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 42px;
  color: #2a2a2a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.campaigns-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #666;
  max-width: 900px;
  margin: 0 auto;
}

.campaigns-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
}

.campaigns-container .campaign-card {
  min-width: calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
  flex-shrink: 0;
}

/* Carousel wrapper */
.campaigns-carousel-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  overflow: hidden;
}

/* Carousel arrows */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  color: #2a2a2a;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-arrow:hover {
  background: #f4b942;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(244, 185, 66, 0.4);
}

.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: default;
  background: rgba(255, 255, 255, 0.95);
  color: #2a2a2a;
}

.carousel-arrow-left {
  left: 10px;
}

.carousel-arrow-right {
  right: 10px;
}

/* Carousel dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #ccc;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: #f4b942;
  border-color: #f4b942;
}

.carousel-dot:hover {
  border-color: #f4b942;
}

/* Campaign Card - iframe variant */
.campaign-card-iframe {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.campaign-card-iframe a {
  display: block;
  width: 100%;
  text-decoration: none;
}

.campaign-card-iframe iframe {
  display: block;
  border: none;
  pointer-events: auto;
}

.campaign-card-iframe .source-badge {
  z-index: 10;
}

/* Campaign Card */
.campaign-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.campaign-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* Source Badge - oznaczenie źródła zbiórki */
.source-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 10;
  padding: 6px 14px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
}

/* Własna zbiórka - zielony */
.source-internal {
  background: rgba(22, 101, 52, 0.95);
  color: #ffffff;
}

.campaign-card[data-source="internal"] {
  border: 2px solid rgba(22, 101, 52, 0.2);
}

.campaign-card[data-source="internal"]:hover {
  border-color: rgba(22, 101, 52, 0.4);
}

/* Siepomaga.pl - niebieski */
.source-siepomaga {
  background: rgba(37, 99, 235, 0.95);
  color: #ffffff;
}

.campaign-card[data-source="siepomaga"] {
  border: 2px solid rgba(37, 99, 235, 0.2);
}

.campaign-card[data-source="siepomaga"]:hover {
  border-color: rgba(37, 99, 235, 0.4);
}

/* Zrzutka.pl - pomarańczowy */
.source-zrzutka {
  background: rgba(249, 115, 22, 0.95);
  color: #ffffff;
}

.campaign-card[data-source="zrzutka"] {
  border: 2px solid rgba(249, 115, 22, 0.2);
}

.campaign-card[data-source="zrzutka"]:hover {
  border-color: rgba(249, 115, 22, 0.4);
}

.campaign-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campaign-category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #ffffff;
  backdrop-filter: blur(5px);
}

.category-food {
  background: rgba(139, 69, 19, 0.85);
}

.category-education {
  background: rgba(34, 139, 34, 0.85);
}

.category-medical {
  background: rgba(184, 134, 11, 0.85);
}

.campaign-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.campaign-title {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: #2a2a2a;
  margin-bottom: 15px;
  line-height: 1.35;
  min-height: 52px;
}

.campaign-description {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
  flex: 1;
}

.campaign-progress {
  margin-bottom: 15px;
  position: relative;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #166534 0%, #22c55e 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.progress-percentage {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #166534;
  position: absolute;
  top: -2px;
  right: 0;
}

.campaign-stats {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 15px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.campaign-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-label {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  color: #666;
}

.stat-value {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #2a2a2a;
}

.campaign-button {
  display: block;
  background: #dc2626;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 25px;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.campaign-button:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(220, 38, 38, 0.4);
}

/* Przyciski dla różnych źródeł zbiórek */
.campaign-card[data-source="siepomaga"] .campaign-button {
  background: #2563eb;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
}

.campaign-card[data-source="siepomaga"] .campaign-button:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}

.campaign-card[data-source="zrzutka"] .campaign-button {
  background: #f97316;
  box-shadow: 0 4px 10px rgba(249, 115, 22, 0.3);
}

.campaign-card[data-source="zrzutka"] .campaign-button:hover {
  background: #ea580c;
  box-shadow: 0 6px 15px rgba(249, 115, 22, 0.4);
}

.campaign-card[data-source="internal"] .campaign-button {
  background: #dc2626;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.3);
}

.campaign-card[data-source="internal"] .campaign-button:hover {
  background: #b91c1c;
  box-shadow: 0 6px 15px rgba(220, 38, 38, 0.4);
}

/* Responsive dla Campaigns Section */
@media (max-width: 1024px) {
  .campaigns-carousel-wrapper {
    padding: 0 50px;
  }
}

@media (max-width: 991px) {
  .campaigns-section {
    padding: 60px 0;
  }

  .campaigns-header {
    padding: 0 40px;
    margin-bottom: 50px;
  }

  .campaigns-carousel-wrapper {
    padding: 0 50px;
  }

  .campaigns-title {
    font-size: 36px;
  }

  .campaigns-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .campaigns-section {
    padding: 50px 0;
  }

  .campaigns-header {
    padding: 0 25px;
    margin-bottom: 40px;
  }

  .campaigns-carousel-wrapper {
    padding: 0 50px;
  }

  .campaigns-container .campaign-card {
    min-width: 100%;
    max-width: 100%;
  }

  .campaigns-container {
    gap: 25px;
  }

  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .carousel-arrow-left {
    left: 5px;
  }

  .carousel-arrow-right {
    right: 5px;
  }

  .campaigns-title {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .campaigns-subtitle {
    font-size: 15px;
  }

  .campaign-title {
    font-size: 18px;
    min-height: auto;
  }

  .campaign-description {
    font-size: 13px;
  }

  .stat-value {
    font-size: 15px;
  }

  .source-badge {
    font-size: 10px;
    padding: 5px 12px;
    top: 10px;
    right: 10px;
  }

  .campaign-button {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* ==========================================================================
   PROJEKTY - LISTA
   ========================================================================== */

.projects-section {
  padding: 60px 0 80px;
}

.projects-heading {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
  text-align: center;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.project-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  text-decoration: none;
}

.project-card-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.project-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-card-image img {
  transform: scale(1.05);
}

.project-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.project-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}

.project-card-desc {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.project-card-link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #e8a317;
  transition: color 0.2s ease;
}

.project-card:hover .project-card-link {
  color: #d4920f;
}

.projects-empty {
  text-align: center;
  font-size: 1.1rem;
  color: #999;
  padding: 40px 0;
}

/* Tablet - 2 kolumny */
@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-heading {
    font-size: 2.5rem;
  }
}

/* Desktop - 3 kolumny */
@media (min-width: 1200px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .projects-section {
    padding: 80px 0 100px;
  }
}

/* ==========================================================================
   PROJEKTY - SZCZEGÓŁY (Project Item)
   ========================================================================== */

.project-detail {
  padding: 40px 0 80px;
  max-width: 800px;
  margin: 0 auto;
}

.project-back-link {
  display: inline-block;
  font-size: 0.95rem;
  color: #e8a317;
  font-weight: 600;
  margin-bottom: 30px;
  transition: color 0.2s ease;
}

.project-back-link:hover {
  color: #d4920f;
}

.project-detail-image {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.project-detail-image img {
  width: 100%;
  height: auto;
  display: block;
}

.project-detail-title {
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.project-detail-desc {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.8;
}

.project-detail-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}

.project-detail-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 767px) {
  .project-detail {
    padding: 20px 0 50px;
  }

  .project-detail-title {
    font-size: 1.5rem;
  }

  .project-detail-desc {
    font-size: 1rem;
  }
}

/* ==========================================================================
   PROJEKT - DODATKOWA TREŚĆ (Rich Text)
   ========================================================================== */

.project-custom-content {
  margin-top: 40px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
}

.project-custom-content h2,
.project-custom-content h3,
.project-custom-content h4 {
  font-family: "Montserrat", sans-serif;
  color: #2a2a2a;
  margin-top: 30px;
}

.project-custom-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 20px 0;
}

/* ==========================================================================
   PROJEKT - PODKATEGORIE
   ========================================================================== */

.project-subcategories {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 2px solid #e5e7eb;
}

.project-subcategories h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #2a2a2a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 30px;
  text-align: center;
}

.project-subcategories .projects-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .project-subcategories .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================================================
   PROJEKT - DANE DO WPŁATY (ViewComponent)
   ========================================================================== */

.donation-info-section {
  margin-top: 50px;
  background: #14532d;
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: #d4a017;
}

.donation-payment-btn {
  display: inline-block;
  background: #dc3545;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.35);
  margin-bottom: 30px;
}

.donation-payment-btn:hover {
  background: #c82333;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(220, 53, 69, 0.45);
}

.donation-transfer-details {
  margin-top: 10px;
}

.donation-transfer-label {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 20px;
  color: #d4a017;
}

.donation-recipient {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #d4a017;
  margin-bottom: 6px;
}

.donation-account {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #d4a017;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.donation-title {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #d4a017;
  margin-bottom: 16px;
}

.donation-swift {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #d4a017;
  margin-bottom: 12px;
}

.donation-footnote {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  color: #a3a3a3;
  font-style: italic;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .donation-info-section {
    padding: 25px 20px;
    border-radius: 12px;
    margin-top: 35px;
  }

  .donation-payment-btn {
    font-size: 15px;
    padding: 14px 28px;
    width: 100%;
  }

  .donation-recipient {
    font-size: 17px;
  }

  .donation-account {
    font-size: 14px;
    word-break: break-all;
  }

  .donation-title {
    font-size: 14px;
  }

  .donation-swift {
    font-size: 14px;
  }
}

/* ==========================================================================
   PROJEKT - LISTA DARCZYŃCÓW (ViewComponent)
   ========================================================================== */

.donor-list-section {
  margin-top: 30px;
  background: #b91c1c;
  border-radius: 16px;
  padding: 40px;
  color: #ffffff;
}

.donor-list-header {
  text-align: center;
  margin-bottom: 30px;
}

.donor-list-priority {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fbbf24;
  margin-bottom: 4px;
}

.donor-list-subtitle {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fbbf24;
  margin-bottom: 8px;
}

.donor-list-total {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: #f97316;
  margin-bottom: 4px;
  line-height: 1.2;
}

.donor-list-date {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 500;
  font-style: italic;
  color: #fbbf24;
}

.donor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.donor-entry {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 0;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .donor-list-section {
    padding: 25px 20px;
    border-radius: 12px;
    margin-top: 20px;
  }

  .donor-list-total {
    font-size: 28px;
  }

  .donor-list-priority,
  .donor-list-subtitle {
    font-size: 14px;
  }

  .donor-list-date {
    font-size: 13px;
  }

  .donor-entry {
    font-size: 14px;
    padding: 6px 0;
  }
}
