*{
    font-family: manrope;
}
*::selection {
  background-color: #ccc;
  color: black;
}
body{
    margin: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.dropdown {
    display: inline-block;
}

.dropbtn {
    text-decoration: none;
    color: black;
    border: none;
    cursor: pointer;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 120px;
    max-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
}

.dropdown-content a {
    color: black;
    padding: 10px 5px;
    padding-left: 14px;
    text-decoration: none;
    display: block;
    font-size: 19px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

nav{
    width: 100%;
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

nav a {
    transition: transform 0.2s;
    display: inline-block;
    text-decoration: none;
    color: black;
    font-size: 21px;
    padding: 12px 24px;
}

nav a:hover {
    transform: translateY(-4.5px);
}

.ANJ {
    font-weight: bold;
    padding-left: 75px;
    padding-right: 75px;
    font-size: 27px;
}


.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 60px;
    height: 60px;
    cursor: pointer;
    margin-right: 15px;
    position: relative;
}
.nav-toggle span {
    height: 6px;
    width: 42px;
    background: #222;
    margin: 6px 0;
    border-radius: 3px;
    display: block;
    transition: 0.3s;
    position: absolute;
    left: 9px;
    right: 9px;
}

.nav-toggle span:nth-child(1) {
    top: 12px;
}
.nav-toggle span:nth-child(2) {
    top: 27px;
}
.nav-toggle span:nth-child(3) {
    top: 42px;
}

.nav-main-link {
    margin-left: 1px;
    margin-right: 1px;
    font-size: 21px;
}

.nav-contact {
    
    position: absolute;
    right: 0;
    align-items: center;
    background: #111;
    color: #fff !important;
    border-radius: 12px;
    padding-left: 23px !important;
    padding-right: 23px !important;
    padding-top: 7.5px;
    padding-bottom: 7.5px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    font-size: 18px;
    font-weight: 600;
    margin-left: 0;
    margin-right: 30px;
    z-index: 2;
    margin-top: 6px;
}
.nav-contact:hover {
    background: #222;
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

@media (max-width: 600px) {
    nav {
        flex-wrap: nowrap;
        height: 60px;
        align-items: center;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        background: #fff;
        z-index: 300;
        box-shadow: none;
        border-bottom: none;
        padding-bottom: 10px;
    }
    .nav-links {
        display: block;
        flex-direction: column;
        width: 260px;
        align-items: flex-start;
        position: fixed;
        top: 0;
        left: -310px;
        height: 100vh;
        height: calc(100vh - constant(safe-area-inset-bottom, 0px));
        height: calc(100vh - env(safe-area-inset-bottom, 0px));
        background: #fff;
        z-index: 100;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1);
        padding-top: 60px;
        padding-bottom: constant(safe-area-inset-bottom, 0px);
        padding-bottom: env(safe-area-inset-bottom, 0px);
        transition: left 0.3s cubic-bezier(.4,0,.2,1);
        box-sizing: border-box;
        font-size: 20px;
        padding-left: 0;
        display: block;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .nav-links.show {
        left: 0;
        display: block;
    }
    nav a, .dropdown, .dropdown-content a, .nav-main-link, .nav-contact {
        margin: 0;
        padding: 14px 24px;
        width: 100%;
        box-sizing: border-box;
        text-align: left;
        display: block;
        font-size: 18px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        line-height: 1.6;
        border-left: 3px solid transparent;
        transition: all 0.2s ease;
    }
    
    /* Hover efekty dla menu items */
    nav a:hover, .dropdown:hover, .nav-main-link:hover {
        background: rgba(0,0,0,0.05);
        border-left: 3px solid #333;
        transform: translateX(2px);
    }
    .dropdown-content {
        display: block !important;
        position: static;
        box-shadow: none;
        border-radius: 0;
        background: rgb(255, 255, 255);
        max-width: 100%;
        padding: 0;
        border-left: 2px solid rgba(0,0,0,0.1);
    }
    .dropdown-content a {
        font-size: 16px !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
        color: #666;
        font-weight: normal;
        background: none !important;
        border-left: none !important;
        transform: none !important;
    }
    .dropdown-content a:hover {
        background: rgba(0,0,0,0.03) !important;
        color: #333;
    }
    .nav-toggle {
        display: flex;
        z-index: 200;
        order: 1;
        margin-right: 0;
        margin-left: 8px;
        width: 36px;
        height: 36px;
    }
    .nav-toggle span {
        height: 3px;
        width: 24px;
        left: 6px;
        right: 6px;
        margin: 3px 0;
        border-radius: 1.5px;
    }
    .nav-toggle span:nth-child(1) {
        top: 6px;
    }
    .nav-toggle span:nth-child(2) {
        top: 15px;
    }
    .nav-toggle span:nth-child(3) {
        top: 24px;
    }
    .nav-toggle.active span:nth-child(1) {
        top: 15px;
    }
    .nav-toggle.active span:nth-child(3) {
        top: 15px;
    }
    .ANJ {
        padding-left: 0;
        padding-right: 20px;
        order: 2;
        margin-left: auto;
        margin-right: 12px;
        margin-top: 10px;
        font-size: 23px !important;
        white-space: nowrap;
        line-height: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: auto;
        min-width: unset;
        max-width: 70vw;
        flex: 0 0 auto;
        background: none;
        box-shadow: none;
    }
    .nav-main-link,
    .dropdown {
        font-size: 18px !important;
        margin-left: 0;
        margin-right: 0;
        padding: 14px 24px !important;
        text-align: left;
        display: block;
        width: 100%;
        box-sizing: border-box;
    }
    .nav-contact {
        width: 100%;
        border-radius: 0px;
        text-align: left;
        padding-left: 24px !important;
        padding-right: 24px !important;
        height: auto;
        display: block;
        align-items: initial;
        margin: 12px 0 8px 0;
        background: linear-gradient(135deg, #333 0%, #555 100%) !important;
        color: #fff !important;
        font-weight: 600;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15);
        transition: all 0.2s ease;
        border-left: 3px solid transparent !important;
    }
    .nav-contact:hover {
        background: linear-gradient(135deg, #555 0%, #777 100%) !important;
        transform: translateX(2px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        border-left: 3px solid #fff !important;
    }
    .nav-social {
        display: block !important;
        width: 100vw;
        text-align: center;
        margin-top: 32px;
        margin-bottom: 10px;
    }
    .nav-social a {
        display: inline-block;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        margin: 0 10px;
        transition: box-shadow 0.2s, transform 0.2s;
        vertical-align: middle;
    }
    .nav-social a:hover {
        box-shadow: 0 4px 16px rgba(0,0,0,0.13);
        transform: translateY(-2px) scale(1.08);
        background: #f3f3f3;
    }
    .nav-social img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }
    .nav-burger-extra {
        display: block;
        width: 100%;
        text-align: center;
        color: #666;
        font-size: 0.85rem;
        font-family: 'Manrope', Arial, sans-serif;
        border-top: 1px solid rgba(0,0,0,0.08);
        margin-top: 20px;
        letter-spacing: 0.01em;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(248,249,250,0.95) 0%, rgba(248,249,250,1) 100%);
        padding: 20px 0 calc(20px + constant(safe-area-inset-bottom, 8px));
        padding: 20px 0 calc(20px + env(safe-area-inset-bottom, 8px));
        backdrop-filter: blur(5px);
        z-index: 5;
        min-height: 100px;
    }
    .nav-burger-extra .burger-copyright {
        margin: 8px 0 0 0;
        font-size: 0.75rem;
        text-align: center;
        font-weight: 500;
        color: #777;
        padding: 0 20px;
        line-height: 1.4;
        position: relative;
        z-index: 10;
    }
    .nav-burger-extra .burger-socials {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 16px;
        margin-bottom: 16px;
        padding: 0 20px;
        position: relative;
        z-index: 10;
    }
    .nav-burger-extra .burger-socials a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        transition: all 0.25s ease;
        overflow: hidden;
        backdrop-filter: blur(10px);
        text-decoration: none;
        position: relative;
    }
    .nav-burger-extra .burger-socials a:hover {
        background: rgba(255,255,255,1);
        box-shadow: 0 4px 20px rgba(0,0,0,0.2);
        transform: translateY(-3px) scale(1.1);
        border: 1px solid rgba(0,0,0,0.15);
    }
    
    .nav-burger-extra .burger-socials a::after {
        content: attr(alt);
        font-size: 10px;
        color: #666;
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }
    .nav-burger-extra .burger-socials img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        display: block;
        opacity: 0.8;
        transition: opacity 0.2s ease;
    }
    
    .nav-burger-extra .burger-socials a:hover img {
        opacity: 1;
    }
}

@media (max-width: 900px) and (min-width: 600px){
    nav a,
    .nav-main-link,
    .nav-contact {
        font-size: 15px !important;
        padding: 8px 12px;
    }
    .ANJ{
        font-size: 19px;
    }
    .nav-social{
    display: none;
    }
}

@media (max-width: 900px) and (min-width: 601px) {
    nav {
        height: auto;
        min-height: 80px;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
        gap: 0;
        box-sizing: border-box;
        width: 100vw;
    }
    .ANJ {
        font-size: 22px !important;
        padding-left: 12px;
        padding-right: 12px;
        margin: 0 4px;
        white-space: nowrap;
    }
    .nav-main-link {
        font-size: 20px !important;
        margin-left: 2px;
        margin-right: 2px;
        padding: 6px 8px;
        display: inline-block;
        white-space: nowrap;
    }
    nav a {
        font-size: 20px !important;
        padding: 6px 8px;
        margin: 0 1px;
        display: inline-block;
        white-space: wrap;
    }
    .nav-contact {
        font-size: 19px !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        padding-top: 4px;
        padding-bottom: 4px;
        border-radius: 7px;
        margin-right: 4px;
        margin-top: 0;
        position: static;
        display: inline-flex;
        align-items: center;
        background: #111;
        color: #fff !important;
        white-space: wrap;
    }
    .dropdown-content {
        min-width: 100px;
        max-width: 200px;
        font-size: 20px;
    }
    .dropdown-content a {
        font-size: 18px !important;
        padding: 10px 10px;
    }
    .nav-toggle {
        display: none !important;
    }
}

.nav-toggle {
    position: relative;
}
.nav-toggle span {
    position: absolute;
    left: 6px;
    right: 6px;
}
.nav-toggle span:nth-child(1) {
    top: 8px;
}
.nav-toggle span:nth-child(2) {
    top: 18px;
}
.nav-toggle span:nth-child(3) {
    top: 28px;
}
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 18px;
    background: #111;
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 18px;
    background: #111;
}
.nav-toggle span {
    transition: 0.3s cubic-bezier(.4,0,.2,1);
}
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 100;
    background: #fff;
}

.dropdown-content {
    z-index: 200;
}

.site-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main-content {
    flex: 1 0 auto;
}

.site-footer {
  width: 100vw;
  background: #f8f9fa;
  color: #222;
  padding: 0;
  margin: 0;
  font-family: 'Manrope', Arial, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 18px 32px;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
  margin-bottom: 18px;
}

.footer-logo {
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #3c3c3c;
}

.footer-desc {
  font-size: 1.05rem;
  color: #373737;
  line-height: 1.5;
}

.footer-contact-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-contact-item a {
  color: #222;
  text-decoration: none;
  transition: color 0.18s;
}

.footer-contact-item a:hover,
.footer-social-link:hover {
  color: #8d8d8d;
}

.footer-icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  vertical-align: middle;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  text-decoration: none;
  margin-bottom: 8px;
  font-size: 1.05rem;
  transition: color 0.18s;
}

.footer-social-link img {
  width: 22px;
  height: 22px;
}

.footer-bottom {
  border-top: 1px solid #e0e0e0;
  background: #f8f9fa;
  color: #222;
  padding: 16px 32px 12px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  font-size: 0.98rem;
  flex-wrap: wrap;
}

.footer-madeby a {
  color: #0078d7;
  text-decoration: none;
  font-weight: 500;
}

.footer-madeby a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 6vw 12px 6vw;
    gap: 18px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 6vw 10px 6vw;
    gap: 8px;
  }
}

@media (max-width: 900px) {
  .footer-main {
    padding: 22px 4vw 8px 4vw;
    gap: 10px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-col {
    flex: 1 1 45%;
    min-width: 120px;
    margin-bottom: 6px;
    padding: 0 2vw;
    box-sizing: border-box;
  }
  .footer-brand {
    flex-basis: 100%;
    min-width: 100%;
    margin-bottom: 10px;
    padding: 0;
  }
  .footer-contact,
  .footer-socials {
    flex-basis: 48%;
    min-width: 120px;
    margin-bottom: 6px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom {
    padding: 8px 4vw 8px 4vw;
    font-size: 0.93rem;
  }
  .footer-logo {
    font-size: 1.3rem;
  }
  .footer-contact-title {
    font-size: 1rem;
  }
}

.akcja-section {
    background: #b3b3b3;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    min-height: 120px;
}

.akcja-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.akcja-title {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    margin: 24px 0 32px 0;
    letter-spacing: 0;
}

.akcja-links {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 64px;
    width: 100%;
    margin-bottom: 24px;
}

.akcja-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-left: 30px;
    margin-right: 30px;
    transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    border-radius: 8px;
}

.akcja-link:hover,
.akcja-link:focus {
    transform: translateY(-4px) scale(1.04);
}

.akcja-link:hover .akcja-text,
.akcja-link:focus .akcja-text {
    text-decoration: underline;
    color: #ffffff;
}

.akcja-link:hover .akcja-icon img,
.akcja-link:focus .akcja-icon img {
    filter: brightness(1.2) drop-shadow(0 2px 8px #bdbdbd55);
    transition: filter 0.18s cubic-bezier(.4,0,.2,1);
}

.akcja-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.akcja-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}

.akcja-text {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.akcja-link-yt {
    position: relative;
    left: -8px;
}

.akcja-link-fb {
    position: relative;
    left: 8px;
}

@media (max-width: 900px) {
    .akcja-container {
        max-width: 98vw;
        padding: 0 8px;
    }
    .akcja-links {
        gap: 32px;
    }
    .akcja-title {
        font-size: 1.3rem;
        margin: 18px 0 24px 0;
    }
    .akcja-text {
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .akcja-section {
        min-height: 80px;
    }
    .akcja-links {
        flex-direction: column;
        gap: 48px;
        margin-bottom: 42px;
        align-items: center;
    }
    .akcja-title {
        font-size: 1.4rem;
        margin: 12px 0 52px 0;
    }
    .akcja-link {
        width: 100%;
        max-width: 320px;
        margin-left: 0;
        margin-right: 0;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .akcja-link-yt {
        padding-left: 10px;
    }
    .akcja-link-fb {
        padding-right: 9px;
    }
    .akcja-icon {
        width: 28px;
        height: 28px;
    }
    .akcja-text {
        font-size: 0.95rem;
        text-align: left;
    }
}

.termin-section {
    background: #fff;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px 0 48px 0;
}

.termin-container {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 32px;
    box-sizing: border-box;
}

.termin-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.termin-title {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 32px 0;
    letter-spacing: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.termin-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    vertical-align: middle;
}

.termin-desc {
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #222;
    margin-bottom: 32px;
    line-height: 1.5;
    text-align: left;
}

.termin-btn {
    display: inline-block;
    font-family: 'Manrope', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    background: #111;
    border: none;
    border-radius: 6px;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: 
        background 0.18s cubic-bezier(.4,0,.2,1),
        box-shadow 0.18s cubic-bezier(.4,0,.2,1),
        transform 0.18s cubic-bezier(.4,0,.2,1);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    position: relative;
    overflow: hidden;
}

.termin-btn:hover,
.termin-btn:focus {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    text-decoration: none;
}

.termin-btn:active {
    transform: scale(0.98);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

@media (max-width: 900px) {
    .termin-container {
        max-width: 98vw;
        padding: 0 16px;
    }
    .termin-title {
        font-size: 1.9rem;
        margin-bottom: 24px;
    }
    .termin-desc {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    .termin-btn {
        font-size: 0.95rem;
        padding: 9px 24px;
    }
    .termin-icon {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 600px) {
    .termin-section {
        padding: 28px 0 28px 0;
    }
    .termin-container {
        padding: 0 8px;
    }
    .termin-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
        gap: 6px;
    }
    .termin-desc {
        font-size: 0.95rem;
        margin-bottom: 16px;
    }
    .termin-btn {
        font-size: 0.9rem;
        padding: 8px 18px;
    }
    .termin-icon {
        width: 26px;
        height: 26px;
    }
    
}

@media (max-width: 700px) {
    .termin-title {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 10px;
        font-size: 1.1rem;
        text-align: left;
    }
    .termin-title .termin-icon {
        order: 1;
        margin-right: 10px;
        margin-left: 0;
        width: 26px;
        height: 26px;
        display: inline-block;
        vertical-align: middle;
    }
    .termin-title span,
    .termin-title h2 {
        order: 2;
    }
}

@media (min-width: 601px) {
    .nav-burger-extra {
        display: none !important;
    }
}



