header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    z-index: 1100;
    box-sizing: border-box;
}

.header-scrolled {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-scrolled nav a {
    color: #000;
}

header .logo {
    width: 150px;
}

@media (max-width: 992px) {
    header .logo {
        width: 80px;
    }

}
@media (max-width: 1202px) {
    header .logo {
        width: 100px;
    }
}


header nav a {
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    position: relative;
    display: flex;
    align-items: center;
}

nav ul {
    display: flex;
    list-style: none;
    color: #FFF;
}

.main-nav {
    display: flex;
    align-items: center;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff7300;
    transition: width 0.3s ease;
}

header nav a:hover::after {
    width: 100%;
}

li.current_page_item:not(.mobile-menu-panel li):not(.footer li) a:not(.submenu a) {
    background-color: #ff7300;
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

li.current_page_item:not(.mobile-menu-panel li):not(.has-submenu):not(.footer li) a:not(.submenu a)::after {
    display: none;
}

header nav .submenu a:hover {
    background-color: #f5f5f5;
    color: #ff7300;
    padding: 1rem;
    border-radius: 0;
}

@media (min-width: 992px) and (max-width: 1600px) {
    .submenu {
        max-height: 470px;
        overflow: auto;
    }
}

.has-submenu {
    position: relative;
}

.has-submenu a:not(.submenu a) {
    display: flex;
    gap: .5rem;
    position: relative;
}

.has-submenu:not(.mobile-menu-panel .has-submenu) a:not(.submenu a)::after {
    content: "⌄"; 
    display: inline-block;
    font-size: 1.5rem;
    width: 1rem;
    height: 1rem;
    position: static;
    display: block;
    background: transparent;
    transform: translateY(-20px);
}

.submenu {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    background-color: #fff;
    min-width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    list-style: none;
    border-top: 2px solid #ff7300;
    padding-left: 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    display: block;
    padding: 1rem;
    color: #000;
    transition: background-color 0.3s, color 0.3s;
    white-space: nowrap;
}

.submenu a:hover {
    background-color: #f5f5f5;
    color: #ff7300;
}

/* MOBILE MENU */

.mobile-menu-button {
    background: none;
    border: none;
    padding: 1rem;
    cursor: pointer;
    z-index: 1101;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #fff; 
    position: relative;
    transition: background-color 0.3s ease;
}

.hamburger-icon::before,
.hamburger-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff; 
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.hamburger-icon::before {
    top: -8px;
}

.hamburger-icon::after {
    bottom: -8px;
}

.header-scrolled .hamburger-icon,
.header-scrolled .hamburger-icon::before,
.header-scrolled .hamburger-icon::after {
    background-color: #000;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px; 
    max-width: 80%;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1101; 
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
    padding: 60px 0 20px 0;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu-panel.active {
    transform: translateX(0);
}

.close-menu-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: #333;
    cursor: pointer;
    line-height: 1;
}

.mobile-menu-panel nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-panel nav .mobile-main-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel nav li {
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-menu-panel nav li:last-child {
    border-bottom: none;
}

.mobile-menu-panel nav a {
    display: block;
    padding: 15px 10px;
    flex-grow: 1;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative; 
    color: #888;
    padding-right: 40px;
}

.submenu-toggle {
    right: 0;
    top: 0;
    width: 50px; 
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.5rem; 
    color: #888;
    transition: transform 0.3s ease;
}

.submenu-toggle::before {
    content: '+';
}

.mobile-menu-panel li.submenu-open > .submenu-toggle::before {
    content: '−'; 
}

.mobile-menu-panel li.has-submenu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.mobile-submenu {
    display: none;
}

.submenu-open .mobile-submenu {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.mobile-submenu a {
    padding-left: 20px;
    padding-right: 20px;
}

.mobile-menu-panel .submenu {
    display: none;
    list-style: none;
    padding-left: 0; 
    margin: 0;
    background-color: #f9f9f9; 
}

.mobile-menu-panel li.submenu-open > .submenu {
    display: block;
}

.mobile-menu-panel .submenu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu-panel .submenu li:last-child {
    border-bottom: none; 
}

.mobile-menu-panel .submenu a {
    padding: 10px 15px;
    font-size: 1rem; 
    font-weight: 400;
    padding-right: 10px;
}

.mobile-menu-panel .submenu li::after {
    content: none;
}

.mobile-menu-panel nav a:hover {
    color: #ff7300;
}

.mobile-menu-panel nav a:hover::after {
    width: 300px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1040; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}
.search-desktop {
    position: relative;
}

.search-form-desktop {
    top: calc(100% + 8px);
    right: 0;
    z-index: 10000;
    background-color: white;
    padding: 0.5rem;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    width: 250px;
}

.search-form-desktop input {
    width: 100%;
    border: none;
    outline: none;
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    color: black;
}

.search-form-desktop input::placeholder {
    color: #888;
}

.search-icon-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.search-icon-button svg {
    stroke: #fff;
    transition: stroke 0.3s ease;
}


.header-scrolled .search-icon-button svg {
    stroke: #000;
}


.search-icon-button:hover svg {
    stroke: #ff7300;
}
/* === MOBILE SEARCH (jak newsletter) === */
.mobile-search-form {
    width: 100%;
    max-width: 400px;
    height: 50px;
    border-radius: 0px 10px 10px 10px;
    overflow: hidden;
    border: 2px solid #ff7300;
    display: flex;
    align-items: center;
    background-color: white;
}

.mobile-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0 1rem;
    font-size: 1rem;
    color: #000;
	width: 30px;
}

.mobile-search-input::placeholder {
    color: #888;
}

.mobile-search-button {
    height: 100%;
    background-color: #ff7300;
    color: white;
    border: none;
	border-radius: 0px 10px 10px 10px;
    padding: 0 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.mobile-search-button:hover {
    background-color: #e96500;
}
body.search-page header nav a,
body.search-page .search-icon-button svg,
body.search-page .hamburger-icon,
body.search-page .hamburger-icon::before,
body.search-page .hamburger-icon::after {
    color: #000 !important;
    stroke: #000 !important;
}

body.search-page .search-form-desktop input {
    color: #000;
}

header.force-dark-text nav a {
    color: #000 !important;
}


body.search-page main.container {
    padding-top: 120px; 
}
body.search-page header {
  background-color: white !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
}
.hero {
    padding-top: 10rem;
    padding-bottom: 4rem;
}

.hero h1, .hero h4 {
    color: #FFF;
}

.hero-subheader {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700;
    color: #ff7300;
}

.hero-subheader.location {
    position: relative;
}

.hero-subheader.location::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C7.31 0 3.5 3.81 3.5 8.5C3.5 14.88 12 24 12 24S20.5 14.88 20.5 8.5C20.5 3.81 16.69 0 12 0ZM12 11.5C10.34 11.5 9 10.16 9 8.5C9 6.84 10.34 5.5 12 5.5C13.66 5.5 15 6.84 15 8.5C15 10.16 13.66 11.5 12 11.5Z' fill='%23ff7300'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero .profile-picture {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 100%;
}

.social-icons-vertical {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

@media (max-width: 1600px) {
    .social-icons-vertical {
        position: static;
        transform: none;
        flex-direction: row;
        margin: 1rem 0;
    }
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: background-color 0.3s ease;
}

.social-icon:hover {
    background-color: #ff7300;
    color: white;
}

.hero span {
    color: #FFF;
}

.hero a {
    text-decoration: none;
    color: #FFF;
}

.heroSwiper {
    height: 500px;
}

.heroSwiper .swiper-slide {
    width: 85%;
    height: 100%;
    display: flex;
    align-items: center;
}

@media (min-width: 1200px) {
    .heroSwiper .swiper-slide {
        width: 50%;
    }
}

/* Pagination dots styling */
.heroSwiper .swiper-pagination {
    position: absolute !important;
    right: 2rem !important;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    top: 50% !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7) !important;
    cursor: pointer;
}

.heroSwiper .swiper-pagination-bullet-active {
    background-color: #ff7300 !important;
}

.section-subheader {
    font-size: .75rem;
    font-weight: 700;
    color: #ff7300;
}
.about-page .section-subheader {
    font-size: 1.25rem;
}

.about-page .hero {
   background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  min-height: 700px;
}

.about-page .hero h1 {
    font-size: 4rem;
}

@media (min-width: 2373px) {
  .about-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
    min-height: 1000px;
  }
}
@media (min-width: 2106px) and (max-width: 2372px) {
  .about-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 900px;
}
   
}

@media (min-width: 1884px) and (max-width: 2106px) {
  .about-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 800px;
}
   
}

@media (min-width: 1701px) and (max-width: 1883px) {
  .about-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
  	  min-height: 700px;
}
   
}

@media (min-width: 921px) and (max-width: 1700px) {
    .about-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        
    }
   
}
@media (min-width: 768px) and (max-width: 920px) {
    .about-page .hero{
         background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}

@media (min-width: 530px) and (max-width: 767px){
	.about-page .hero {
         background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}


@media (min-width: 349px) and (max-width: 529px) {
  .about-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
	.about-page .hero h1 {
    font-size: 2.5rem;
}
  
}

@media (min-width: 320px) and (max-width: 348px) {
  .about-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1030px;
        padding-top: 300px;
    }
	.about-page .hero h1 {
    font-size: 2.5rem;
}
  
}
main.category-page {
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / contain; 
    min-height: 700px;
}

.category-header {
    padding-top: 400px;
}

.category-header h1 {
    font-size: 7rem;
}

@media (max-width: 1920px) {
    .category-header {
        padding-top: 300px;
    }
}

@media (max-width: 1600px) {
    .category-header {
        padding-top: 200px;
    }
}

@media (max-width: 1200px) {
    .category-header {
        padding-top: 150px;
    }
}

@media (max-width: 992px) {
    .category-header {
        padding-top: 100px;
    }

    .category-header h1 {
        font-size: 3rem;
    }

    main.category-page {
        background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 200%; 
    }
}



.content-shadow {
    -webkit-box-shadow: 0px -38px 100px -32px rgba(66, 68, 90, 1);
    -moz-box-shadow: 0px -38px 100px -32px rgba(66, 68, 90, 1);
    box-shadow: 0px -38px 100px -32px rgba(66, 68, 90, 1);
}

.map-image {
    width: 400px;
}

.big-letter-text:first-child:first-letter {
    float: left;
    color: #ff7300;
    font-size: 80px;
    line-height: 60px;
    padding-top: 4px;
    padding-right: 8px;
    font-weight: bold;
  }

.category-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.category-posts .category-post {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width: 992px) {
    .category-posts {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}
/* ----- Twoje style dla .comment ----- */
.comment {
    
}

.comment img {
    width: 64px;
    height: fit-content;
    aspect-ratio: 1 / 1;
}

.wpd-reply {
    margin-left: 50px; /* Indentation for replies */
    position: relative; /* Needed for absolute positioning of the arrow */
}

.wpd-reply::before {
    content: '⤷'; /* Unicode arrow character */
    position: absolute;
    left: -30px; /* Position arrow to the left of the indented comment */
    top: 15px;  /* Adjust vertical alignment */
    font-size: 1.8em; /* Adjust arrow size */
    color: #aaa; /* Arrow color */
    font-weight: bold;
}

.text-orange {
    color: #ff7300;
}

.comments-section textarea {
    resize: none;
    margin-bottom: 20px;
    padding: 12px;
    border: 2px solid #eee;
    border-radius: 8px;
    height: 200px;
}

.comments-section textarea:focus {
    outline-color: #ff7300;
}

/* ----- Alias dla wpDiscuz, jeśli go używasz ----- */

#wpdcom {
    display: flex;
    flex-direction: column;
}

#wpdcom .wpd-form-head {
    display: none;
}

#wpdcom .wpd-form-wrap {
    /* order: 2; */
}

#wpdcom .ql-container {
    border: 1px solid #eaeaea;
    border-radius: 10px 10px 0 0;
}

#wpdcom .ql-toolbar{
    border: 1px solid #eaeaea;
    border-radius: 0 0 10px 10px;
}

#wpdcom .wpd-comment .wpd-comment-wrap {
    flex-direction: column;
}

#wpdcom .wpd-comment .wpd-comment-label {
    background: #ff7300;
    color: #fff;
}

#wpdcom .wpd-thread-head .wpd-thread-info {
    border-bottom: 2px solid #ff7300;
}

#wpdcom .wpd-comment .wpd-comment-right {
    width: 100%;
}

#awpdiscuz {
    display: none;
}

.wc_comm_submit {
    border-radius: 5px;
    color: #fff;
    background-color: #ff7300;
    padding: 1rem;
    border: 0;
    font-weight: bold;
    height: 30px;
    padding: 0 2rem;
}

#bywpdiscuz {
    font-size: .75rem;
    color: #999;
}

.wmu-upload-wrap {
    height: 24px;
    padding: 3px 5px;
    width: 28px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.wpd-comment-wrap {
    border: 1px solid #eaeaea;
    border-radius: 10px;
    padding: 1em;
    margin-bottom: 1em;
}

.wc-comment .wc-comment-avatar img {
    width: 64px;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
}

.wc-comment-list .wc-comment-list .wc-comment {
    margin-left: 50px;
    position: relative;
}

.wc-comment-list .wc-comment-list .wc-comment::before {
    content: '⤷';
    position: absolute;
    left: -30px;
    top: 15px;
    font-size: 1.8em;
    color: #aaa;
    font-weight: bold;
}

.contact-page .hero {
  background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  min-height: 700px;
}

.hero .contact-info {
  color: #fff;
}

.hero .contact-info a {
  color: #ff7300;
}

.form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  padding: 3rem 1.5rem;
  width: 100%;
  max-width: 800px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 992px) {
  .contact-form {
    width: 50%;
  }
  .form-container {
    padding: 6rem 3rem;
    max-width: 1200px;
  }
}

@media (min-width: 1200px) {
  .form-container {
    max-width: 1200px;
  }
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
}

.contact-form textarea {
  min-height: 200px;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff7300;
}

.contact-form button {
  background: #ff7300;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #ff5233;
}

.form-container .image-gallery-container {
  width: 50%;
}

.form-container .gallery-image,
.newsletter .gallery-image {
  position: absolute;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.form-container .gallery-image.image-1,
.newsletter .gallery-image.image-1 {
  top: 0;
  left: -20px;
  transform: rotate(-8deg);
  z-index: 3;
  height: 520px;
  width: 335px;
}

.form-container .gallery-image.image-2,
.newsletter .gallery-image.image-2 {
  top: 50px;
  right: 0;
  transform: rotate(6deg);
  z-index: 2;
  height: 400px;
  width: 300px;
}

.form-container .gallery-image.image-3,
.newsletter .gallery-image.image-3 {
  right: 0;
  bottom: 30px;
  transform: rotate(5deg);
  z-index: 4;
  width: 70%;
}

.form-container .gallery-image.image-4,
.newsletter .gallery-image.image-4 {
  top: -50px;
  right: 17%;
  z-index: 1;
  height: 120px;
  width: 200px;
}
@media (max-width: 1100px) {
  .contact-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 2000px;
  }
}

@media (min-width: 992px) {
  .form-container {
    padding-top: 100px;
  }
}

/* @media (min-width: 1200px) {
  .form-container {
    padding-top: 150px;
  }
}

@media (min-width: 1600px) {
  .form-container {
    padding-top: 200px;
  }
}

@media (min-width: 1920px) {
  .form-container {
    padding-top: 300px;
  }
} */

.form-group {
  margin-bottom: 1.5rem;   
}

.form-group label {
  display: block;          
  margin-bottom: 0.5rem;   
}

.form-group input,
.form-group textarea,
.form-group button {
  width: 100%;           
  box-sizing: border-box;  
}



.facebook-button {
    font-family: 'Manrope', sans-serif !important;
    display: flex;
    align-items: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid #e7e7e7;
    padding: 0;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 50px;
    max-width: 250px;
    overflow: hidden;
}

.facebook-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.facebook-icon {
    background-color: #1877f2;
    height: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 12px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.facebook-icon-letter {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.button-text {
    font-size: 14px;
    white-space: nowrap;
    padding: 0 16px;
    font-weight: 700;
}
.footer img {
    width: 150px;
}

.footer ul {
    list-style: none;
    padding-left: 0rem;
}

.footer-heading {
    color: #ff7300;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul a {
    display: block;
    color: #888;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: .875rem;
}

.footer ul a:hover {
    color: #ff7300;
}

.footer-text {
    color: #888;
    font-size: 14px;
    line-height: 1.6;
}

.footer-highlight {
    color: #ff7300;
    font-weight: 600;
    text-decoration: none;
    word-wrap: break-word;
}

.social-links {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    color: #ff7300;
    font-size: 20px;
    text-decoration: none;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        padding: 0;
    }
}
/* TRAVEL SWIPER */

.travel-card {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.travel-card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.travel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.3s ease;
}

.travel-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.travel-card-overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #ff7300;
    transition: width 0.3s ease;
}

.travel-card-overlay span {
    font-weight: bold;
    font-size: 1.2rem;
}

.travel-card-overlay .location {
    font-size: 0.9rem;
    font-weight: normal;
}

/* Hover effect - orange underline */
.travel-card:hover .travel-card-overlay::after {
    width: 100%;
}

.travel-card:hover .travel-card-image img {
    transform: scale(1.1);
}

.travel-card:hover .location {
    margin-top: 5px;
}

.travels-navigation-arrows {
    display: flex;
    gap: 10px;
}

.travels-navigation-arrows .nav-arrow {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 0;
    background: transparent;
    color: #999;
}

.travels-navigation-arrows .nav-arrow:hover {
    color: #ff7300;
}

/* NEWS GRID */

.posts-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
}

.main-feature {
    grid-column: 1;
    grid-row: 1 / span 3;
}

.main-feature img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
}

.side-news {
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.side-news .news {
    display: flex;
}

.side-news .news img, .side-news .news a:has(img) {
    width: 250px;
    min-width: 250px;
    height: 250px;
}

.news-image {
    width: 100%;
    border-radius: 10px;
    aspect-ratio: 1 / 1;
    height: auto;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-title {
    color: #ff7300;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
}

.news-text {
    color: #444;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-more {
    font-family: 'Manrope', sans-serif !important;
    color: #ff7300;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
}

.preparation-container {
    background-color: #f3f7fa;
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.main-page .hero {
 	background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / cover;
  	min-height: 810px;
    padding-top: 0rem;

}
@media (min-width: 2170px)  {
  .main-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / center;
    min-height: 930px;

  }
}


@media (min-width: 1980px) and (max-width: 2170px) {
  .main-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / center;
    min-height: 826px;
	 
  }
}
@media (min-width: 1200px) and (max-width: 1600px) {
    .main-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
       min-height: 894px;
		
	   
    }
   
}
@media (min-width: 993px) and (max-width: 1199px) {
    .main-page .hero{
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
       min-height: 993px;    
    }
   
}
@media (max-width: 992px) {
    .main-page .hero {
		 background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1203px;
		padding-bottom: 0rem !important;
    }

    .posts-container {
        grid-template-columns: 1fr;
    }
    
    .main-feature {
        grid-column: 1;
        grid-row: auto;
    }

    .news-content {
        padding: 1rem;
    }

    .side-news .news {
        flex-direction: column;
    }

    .side-news .news img {
        width: 100%;
        height: auto;
        aspect-ratio:  1 / 1;
    }
    
}

/* @media (max-width: 1600px) {
    .main-page .hero {
        min-height: 1200px;
    }
} */
.map-page .hero {
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/multnomah-falls2.jpg) no-repeat bottom / cover; 
    min-height: 1000px;
	padding-top 300px;
}
.map-page .hero h1 {
    font-size: 4rem;
}
.text-black{
	 color: #000 !important;
}
.interactive-map-container {
    overflow: auto;
    display: flex;
    justify-content: center;
}

.interactive-map {
    width: 1200px;
    height: 757px;
    position: relative;
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/aus.svg) no-repeat center / cover;
}

.indicator-container {
    position: absolute;
}

.indicator-container a {
    position: absolute;
    display: none;
    background-color: #4cbc71;
    text-wrap: nowrap;
    color: #FFF;
    padding: 1rem;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    top: 0;
    transform: translateY(-100%);
    z-index: 9999;
    border-radius: 10px;
}

.indicator-container .indicator {
    width: 34px;
    height: 47px;
    background: url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/icons/tree-icon.svg) center/cover no-repeat;
    filter: grayscale(100%);
}

.indicator-container:hover a {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.indicator-container a .arrow {
    font-size: 1.25rem;
    vertical-align: baseline;
}

.indicator-container .indicator.visited {
    background: url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/icons/tree-icon.svg) center/cover no-repeat;
    filter: none;
}



.quote-container {
    position: relative;
}

.quote-block {
    background-color: #f9f9f9;
    padding: 30px 40px;
    position: relative;
    border-radius: 2px;
}

.quote-block::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ff7300;
}

.quote-text {
    font-family: 'Piazzolla', serif !important;
    color: #555;
    font-size: 20px;
    font-weight: 700;
}

.quote-author {
    color: #ff7300;
    margin: 0;
    font-weight: 700;
}

.quote-mark {
    color: #ff7300;
    font-size: 100px;
    margin-bottom: 10px;
    position: absolute;
    top: -56px;
}


.leaflet-marker-icon.visited {
  filter: none;
}
.leaflet-marker-icon.not-visited {
  filter: grayscale(100%) brightness(0.7);
}
.state-label {
  font-size: 12px;
  color: #555;
  background: rgba(255,255,255,0.8);
  border: none;
  box-shadow: none;
}

.leaflet-popup.my-park-popup .leaflet-popup-content-wrapper {
  background-color: #4cbc71;
  color: #FFF;
  border-radius: 10px;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.leaflet-popup.my-park-popup.not-visited .leaflet-popup-content-wrapper {
  background-color: #727272;
}
.leaflet-popup.my-park-popup a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}
.leaflet-popup.my-park-popup .leaflet-popup-content {
  padding: 0;
}

.newsletter {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    height: 750px;
}

.subscription-form {
    width: 100%;
    max-width: 400px;
    position: relative;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #ff7300;
}

 .newsletter-message {
    margin-top: 1em;
    padding: 0.75em;
    border-radius: 4px;
    font-size: 0.9em;
  }
  .newsletter-message.success {
    background: #e0f7e9;
    color: #2d7a46;
    border: 1px solid #2d7a46;
  }
  .newsletter-message.error {
    background: #fdecea;
    color: #a12d2d;
    border: 1px solid #a12d2d;
  }

@media (max-width: 992px) {
    .subscription-form {
        max-width: 100%;
    }

    .newsletter {
        grid-template-columns: 1fr;
    }
}
.planning-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.planning-post {
    display: flex;
    gap: 1rem;
}

.planning-post img, .planning-post a:has(img) {
    width: 200px;
    min-width: 200px;
    height: 200px;
    object-fit: cover;
}

.planning-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  min-height: 700px;
}

.planning-page .hero h1 {
    font-size: 4rem;
}

@media (min-width: 2373px) {
  .planning-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
    min-height: 1000px;
  }
}
@media (min-width: 2106px) and (max-width: 2372px) {
  .planning-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 900px;
}
   
}

@media (min-width: 1884px) and (max-width: 2106px) {
  .planning-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 800px;
}
   
}

@media (min-width: 1701px) and (max-width: 1883px) {
  .planning-page .hero {
     background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
  	  min-height: 700px;
}
   
}

@media (min-width: 921px) and (max-width: 1700px) {
    .planning-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        
    }
   
}
@media (min-width: 768px) and (max-width: 920px) {

    .planning-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
    .planning-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .planning-post {
        flex-direction: column;
    }
    .planning-post img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 530px) and (max-width: 767px){
	.planning-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
    .planning-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .planning-post {
        flex-direction: column;
    }
    .planning-post img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}


@media (min-width: 349px) and (max-width: 529px) {
  .planning-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 292px;
    }
    .planning-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .planning-post {
        flex-direction: column;
    }
    .planning-post img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

@media (min-width: 320px) and (max-width: 348px) {
  .planning-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1030px;
        padding-top: 300px;
    }
    .planning-posts {
        grid-template-columns: repeat(1, 1fr);
    }
    .planning-post {
        flex-direction: column;
    }
    .planning-post img {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
    }
}

.post-page .hero {
   background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  min-height: 700px;
}
.post-page .hero h1 {
    font-size: 4rem;
}

.related-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.post-page .hero h1 {
    font-size: 4rem;
}

@media (max-width: 992px) {
    .related-posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-posts a:hover img {
    transform: scale(1.1);
}

.related-posts img {
    max-width: 100%;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    transition: transform .3s ease;
}

.related-posts .image-container {
    border-radius: 10px;
}

.related-posts a {
    text-decoration: none;
    color: inherit;
}

.post-navigation {
    width: 100%;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-label {
    display: block;
    color: #ff7300;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.nav-title {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.nav-item a {
    text-decoration: none;
}

.nav-item:hover .nav-title {
    color: #ff7300;
}

.arrow {
    font-size: 14px;
    vertical-align: middle;
}



/* POST */


@media (min-width: 2373px) {
  .post-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
    min-height: 1000px;
  }
}
@media (min-width: 2106px) and (max-width: 2372px) {
  .post-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 900px;
}
   
}

@media (min-width: 1884px) and (max-width: 2106px) {
  .post-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 800px;
}
   
}

@media (min-width: 1701px) and (max-width: 1883px) {
  .post-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
  	  min-height: 700px;
}
   
}


@media (min-width: 921px) and (max-width: 1700px) {
    .post-page .hero{
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        
    }
   
}


@media (min-width: 768px) and (max-width: 920px) {
    .post-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}

@media (min-width: 530px) and (max-width: 767px){
	.post-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}


@media (min-width: 349px) and (max-width: 529px) {
  .post-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 317px;
    }
	.post-page .hero h1 {
    font-size: 2.5rem;
}
  
}

@media (min-width: 320px) and (max-width: 348px) {
  .post-page .hero {
       background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1030px;
        padding-top: 300px;
    }
	.post-page .hero h1 {
    font-size: 2.5rem;
}
  
}

@media (min-width: 992px) {
    .sidebar {
        width: 35%;
    }
}

.sidebar .section-subheader {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar .section-subheader {
    white-space: nowrap; 
    flex-shrink: 0;
}

.sidebar .section-subheader::after {
    content: '';
    display: block;
    flex-grow: 1; 
    height: 1px; 
    background-color: #ccc;
}

.newest-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.newest-posts .post img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 10px;
}
#ez-toc-container {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 0;
    font-family: 'Piazzolla', serif !important;
}

#ez-toc-container nav {
    background: white;
}

.ez-toc-title {
    font-family: 'Piazzolla', serif !important;
}

.ez-toc-title-container {
    width: 100%;
    text-align: left;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 15px 20px;
    background-color: #ff7300;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e0e0e0;
}

.ez-toc-title-container .ez-toc-title-toggle {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
}

.ez-toc-title-container .ez-toc-title-toggle a {
    width: 100%;
    height: 100%;
    justify-content: flex-end;
    padding: 15px 20px;
}

#ez-toc-container .ez-toc-js-icon-con {
    border: 0;
}

.ez-toc-title-container:hover, .ez-toc-title-container:focus {
    background-color: #ff5233;
}

.toc-button:after {
    content: "▼";
    float: right;
    transition: transform 0.3s;
    font-size: 12px;
}

.toc-button.collapsed:after {
    transform: rotate(-90deg);
}

.toc-content {
    padding: 0;
}

#ez-toc-container ul {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
}

.ez-toc-list li {
    border-bottom: 1px solid #f0f0f0;
}

.ez-toc-list li:last-child {
    border-bottom: none;
}

#wpdiscuz-loading-bar {
    top: 50% !important;
}

div#ez-toc-container ul.ez-toc-list a {
    display: block;
    padding: 12px 20px;
    color: #555;
    text-decoration: none;
    transition: all 0.2s;
}

div#ez-toc-container ul.ez-toc-list a:visited {
    color: #555;
}

div#ez-toc-container ul.ez-toc-list a:hover {
    background-color: #f8f9fa;
    color: #ff7300;
    padding-left: 25px;
}
.visiting-page .hero {
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat bottom / cover; 
    min-height: 1000px;
    padding-top: 100px;
}

.visiting-page .hero h1 {
    font-size: 4rem;
}

@media (max-width: 992px) {
    .visiting-page .hero {
        background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat bottom / 3000px;
        min-height: 1000px; 
    }
}

@media (max-width: 1200px) {
    .visiting-page .hero {
        background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / cover; 
    }
}
.park-child-page .hero {
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat bottom / cover; 
    min-height: 1000px;
    padding-top: 300px;
}
.park-child-page .hero h1 {
    font-size: 4rem;
}

.park-parent-page .hero {
    background-repeat: no-repeat;
}


@media (min-width: 1200px) {
    .park-parent-page .hero {
        
        background-size: contain;
    }

    .park-child-page .hero h1, .park-parent-page .hero h1 {
        font-size: 4rem;
    }
}

.articles-page .hero {
    background: #FFF url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/multnomah-falls2.jpg) no-repeat bottom / cover; 
    min-height: 1000px;
    padding-top: 317px;
}

.articles-page .hero h1 {
    font-size: 4rem;
}

.categories-select button {
    border: 0;
    background-color: transparent;
    transition: all .3s ease-in-out;
    text-wrap: nowrap;
    color: var(--bs-secondary-color)
}

.categories-select button.active {
    background-color: #ff7300;
    color: #FFF;
}

.articles-page #articles-container .loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: #ff7300;
    animation: l2 1s infinite linear;
  }
  @keyframes l2 {to{transform: rotate(1turn)}
}

.posts-pagination .page-item button {
    border: 0;
}

.posts-pagination .page-item.active button {
    background-color: #ff7300;
}
.colab-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 700px;
}

.colab-page .hero h1 {
    font-size: 4rem;
}
@media (min-width: 2373px) {
  .colab-page .hero {
    background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
    min-height: 1000px;
  }
}
@media (min-width: 2106px) and (max-width: 2372px) {
  .colab-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 900px;
}
   
}

@media (min-width: 1884px) and (max-width: 2106px) {
  .colab-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/zdjecie-w-tle.jpg) no-repeat top / 100%;
  	  min-height: 800px;
}
   
}

@media (min-width: 1701px) and (max-width: 1883px) {
  .colab-page .hero {
      background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
  	  min-height: 700px;
}
   
}

@media (min-width: 921px) and (max-width: 1700px) {
    .colab-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        
    }
   
}
@media (min-width: 768px) and (max-width: 920px) {
    .colab-page .hero{
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}

@media (min-width: 530px) and (max-width: 767px){
	.colab-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1000px;
        padding-top: 300px;
    }
   
}


@media (min-width: 349px) and (max-width: 529px) {
  .colab-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1081px;
        padding-top: 300px;
    }
	.colab-page .hero h1 {
    font-size: 2.5rem;
}
  
}

@media (min-width: 320px) and (max-width: 348px) {
  .colab-page .hero {
        background: #fff url(//wszystkiestanynatury.pl/wp-content/themes/wszystkie-stany-natury-theme/assets/images/belka-tlo-home.jpg) no-repeat bottom / cover;
        min-height: 1030px;
        padding-top: 300px;
    }
	.post-page .hero h1 {
    font-size: 2.5rem;
}
  
}


body {
    font-family: 'Piazzolla', serif !important;
}

p, .font-secondary {
    font-family: 'Manrope', sans-serif !important;
}

label {
    cursor: pointer;
}

.btn-orange {
    font-family: 'Manrope', sans-serif !important;
    border-radius: 10px;
    background-color: #ff7300;
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
}

.email-input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    padding: 0 15px;
    padding-right: 160px;
    font-size: 16px;
}

.submit-button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 150px;
    background-color: #ff7300;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    transition: background-color 0.3s;
    border-bottom-left-radius: 7px;
}

.submit-button:hover {
    background-color: #ff5233;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
    border-radius: 8px;
}

.custom-checkbox {
    position: relative;
    min-width: 24px;
    height: 24px;
    margin-top: 3px;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    border: 2px solid #ff7300;
    background-color: white;
    cursor: pointer;
}

.custom-checkbox input:checked ~ .checkmark {
    background-color: white;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.custom-checkbox .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid #ff7300;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    font-size: .875rem;
    line-height: 1.6;
}

.underline-left, .underline-center {
    position: relative;
    padding-bottom: 2rem;
}

.underline-left::after, .underline-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #ff7300;
}

.underline-left::after {
    left: 0;
    width: 50%;
}

.underline-center::after {
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}

@media (min-width: 1200px) {
    .w-xl-50 {
        width: 50%;
    }
}/*404*/