@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  /* dla iOS */
  scroll-behavior: smooth;
  background-color: #F5F5F5;
}

body {
  font-size: 1.6rem;
  /* równa się bazowej wielkości czcionki ustawionej w przeglądarce */
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.7;
  padding-top: 110px;
}

nav {
  font-size: 1rem;
}

.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .loading::after {
    animation: none;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
  transition: all 0.2s ease-in-out;
}
.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
.navbar-toggler:hover {
  background-color: rgba(0, 186, 33, 0.1);
}
.navbar-toggler .navbar-toggler-icon {
  width: 24px;
  height: 2px;
  background-color: #090909;
  position: relative;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
  background-image: none !important;
  display: inline-block;
  vertical-align: middle;
}
.navbar-toggler .navbar-toggler-icon, .navbar-toggler .navbar-toggler-icon::before, .navbar-toggler .navbar-toggler-icon::after {
  background-color: #090909;
  height: 2px;
  border-radius: 1px;
  transition: all 0.3s ease-in-out;
}
.navbar-toggler .navbar-toggler-icon::before, .navbar-toggler .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
}
.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}
.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-color: transparent;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::before {
  transform: rotate(45deg);
  top: 0;
  background-color: #00BA21;
}
.navbar-toggler[aria-expanded=true] .navbar-toggler-icon::after {
  transform: rotate(-45deg);
  top: 0;
  background-color: #00BA21;
}

.navbar.fixed-top {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050 !important; /* wyżej niż wszystko inne */
  background-color: #fff !important;
  will-change: transform; /* poprawa wydajności scrollu na mobile */
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Zapobiega znikaniu navbara przy otwartym menu mobilnym */
.navbar-collapse {
  background-color: #fff;
  position: relative;
  z-index: 1049;
}

/* iOS Safari bugfix dla fixed-top */
@supports (-webkit-touch-callout: none) {
  .navbar.fixed-top {
    position: sticky;
  }
}
.navbar {
  gap: 0.5rem;
  font-size: 1.6rem;
  background-color: white;
}
.navbar .nav-link {
  color: #090909 !important;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  padding: 4px 8px !important;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  text-align: center;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #00BA21;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-link:hover::after {
  width: calc(100% - 32px);
}
.navbar .nav-link:focus-visible:focus-visible {
  outline: 2px solid black;
  outline-offset: 2px;
  border-radius: 4px;
}
.navbar .nav-social-icon {
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.navbar .nav-social-icon .nav-link-social {
  position: relative;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.navbar .nav-social-icon .nav-link-social i.bi {
  color: #1B4332;
  font-size: 2.2rem !important;
  position: relative;
  transition: transform 0.3s ease;
  transform-origin: center; /* żeby scale nie wypychało ikony */
}
.navbar .nav-social-icon .nav-link-social i.bi::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #00BA21;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
.navbar .nav-social-icon .nav-link-social i.bi:hover {
  transform: scale(1.2);
}
.navbar .nav-social-icon .nav-link-social i.bi:hover::after {
  width: 90%;
}

@media (min-width: 1024px) {
  .navbar {
    font-size: 1.8rem;
    padding: 0.8em 0;
  }
  .navbar .navbar-brand:hover {
    transform: scale(1.02);
  }
  .navbar .navbar-brand:focus-visible:focus-visible {
    outline: 2px solid black;
    outline-offset: 2px;
    border-radius: 4px;
  }
  .navbar .navbar-item {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
  }
  .navbar .navbar-item ul li {
    padding: 0 0.5rem 0 0.5rem;
  }
  .navbar .nav-social-icon {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
  }
  .navbar .nav-social-icon .nav-link-social {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
  }
  .navbar .nav-social-icon .nav-link-social i.bi {
    font-size: 3rem !important;
    position: relative;
    transition: transform 0.3s ease;
  }
  .navbar .nav-social-icon .nav-link-social i.bi::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: #00BA21;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
  }
  .navbar .nav-social-icon .nav-link-social i.bi:hover {
    transform: scale(1.2);
  }
  .navbar .nav-social-icon .nav-link-social i.bi:hover::after {
    width: 90%;
  }
}
/* Extra large (duże monitory, 4K) */
@media (min-width: 1440px) {
  .navbar {
    font-size: 2.4rem;
    padding: 0.8em 0;
  }
}
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80vh;
  background: url("../img/dolina-baryczy-zurawie-800.webp") center center/cover no-repeat;
  overflow: hidden;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(93, 138, 58, 0.8) 0%, rgba(27, 67, 50, 0.6) 50%, rgba(45, 90, 61, 0.7) 100%);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 1rem;
}
.hero__badge {
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
  margin-bottom: 2rem;
}
.hero__badge span {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
.hero__title {
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 1px;
  color: #fff;
}
.hero__title span {
  display: inline-block;
  color: #F4D03F;
  position: relative;
}
.hero__title span::after {
  content: "";
  display: block;
  margin-top: 5px;
  width: 100%;
  height: 6px;
  background-color: #F4D03F;
}
.hero__subtitle {
  margin-top: 3rem;
  font-size: 2rem;
  font-weight: 700;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  z-index: 10;
}
.hero-scroll-indicator .scroll-down {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: #F7B955;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  width: 3rem;
  height: 3rem;
}
.hero-scroll-indicator .scroll-down:hover {
  color: #00BA21;
  transform: translateY(-4px);
}
.hero-scroll-indicator .scroll-down i {
  font-size: 3rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.about__card1 {
  background-image: url("../img/przestrzen-turystyczna.webp");
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about__card1 .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 67, 50, 0.4235294118);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.about__card2 {
  background-image: url("../img/integracja.webp");
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about__card2 .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 67, 50, 0.4235294118);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.about__card3 {
  background-image: url("../img/wycieczki.webp");
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about__card3 .overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(27, 67, 50, 0.4235294118);
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.about__card-label {
  color: #090909;
  font-weight: 500;
  text-align: center;
  width: 80%;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  color: white;
}

.mission__item-icon i {
  display: inline-block;
  font-size: 6rem;
  color: #1B4332;
}
.mission__item-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.aim__img {
  border-radius: 10px;
}

.projects__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1843137255);
  border-radius: 1rem;
  padding: 20px 20px 20px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}
.projects__card:hover {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
.projects__card-icon i {
  font-size: 58px;
  color: #1B4332;
  transition: color 0.3s ease;
}
.projects__card-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}
.projects__card-text {
  text-align: center;
}

.mini-baner .image-card {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  background-image: url("../img/swiat-turystyki.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.mini-baner .image-card__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 1rem 2rem 2rem;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
}
.mini-baner .image-card__content-text {
  font-size: 1.7rem;
  color: #090909;
}

.work__title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #1B4332;
}
.work__list {
  font-size: 1.6rem;
  line-height: 1.7;
}

.contact__name {
  margin-top: 1rem;
  font-weight: 600;
  margin-bottom: 0;
}
.contact__name-function {
  margin-bottom: 0;
}
.contact__name-phone a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #090909;
}
.contact__name-phone a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #F7B955;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}
.contact__name-phone a:hover::after {
  width: 100%;
}
.contact__data-method {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.contact__data-method--icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  background-color: #F7B955;
  border-radius: 50%;
}
.contact__data-method--icon i {
  color: black;
  font-size: 2rem;
}
.contact__data-method .title {
  font-weight: 700;
  margin-bottom: 0;
}
.contact__data-method .email a {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #090909;
}
.contact__data-method .email a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #F7B955;
  transform: translateX(-50%);
  transition: width 0.3s ease-in-out;
}
.contact__data-method .email a:hover::after {
  width: 100%;
}

.declaration a {
  text-decoration: none;
  color: #212529;
  display: inline-block;
  position: relative;
}
.declaration a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #F4D03F;
}
.declaration ul li {
  font-size: 1.6rem;
  line-height: 1.7;
}
.declaration h3 {
  margin-top: 3rem;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.declaration h4 {
  margin-top: 3rem;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.footer {
  text-align: center;
  background-color: #1B4332;
  color: #f9f9f9;
  padding: 5rem 0 2.6rem;
  margin-top: auto;
}
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-main-title {
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
}
.footer-lead {
  font-size: 1.6rem;
  line-height: 1.5;
}
.footer-section-title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
}
.footer-section-title::after {
  content: "";
  display: block;
  margin-top: 2px;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links li {
  margin-bottom: 0.75rem;
}
.footer .footer-links li:last-child {
  margin-bottom: 0;
}
.footer .footer-links a {
  color: rgba(249, 249, 249, 0.9);
  text-decoration: none;
  font-size: 1.6rem;
  transition: all 0.3s ease-in-out;
}
.footer .footer-links a:hover, .footer .footer-links a:focus {
  text-decoration: underline;
}
.footer .footer-links a:focus {
  outline: none;
  border-radius: 10px;
  padding: 0.125rem 0.25rem;
  margin: -0.125rem -0.25rem;
}
.footer address {
  font-style: normal;
  font-size: 1.6rem;
}
.footer address a {
  color: rgba(249, 249, 249, 0.9);
  text-decoration: none;
}
.footer address a:hover, .footer address a:focus {
  text-decoration: underline;
}
.footer address a:focus {
  outline: none;
  border-radius: 10px;
  padding: 0.125rem 0.25rem;
  margin: -0.125rem -0.25rem;
}
.footer hr {
  border-color: rgba(249, 249, 249, 0.2);
  margin: 2rem 0 1rem;
}
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background-color: rgba(249, 249, 249, 0.1);
  color: #f9f9f9;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.footer .social-links a:hover, .footer .social-links a:focus {
  color: #f9f9f9;
  transform: translateY(-2px);
}
.footer .social-links a:focus {
  outline: none;
}
.footer .social-links a i {
  font-size: 1.25rem;
}

@media (min-width: 1024px) {
  .footer .info {
    padding-right: 30px;
  }
  .footer-main-title {
    text-align: left;
  }
  .footer-lead {
    text-align: left;
  }
}
[data-aos] {
  transform: none !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  /* Styled to match the default WordPress screen reader text */
  background-color: #f1f1f1;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  color: #21759b;
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  height: auto;
  left: 6px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar */
  transition: top 0.75s ease-out;
}

.skip-link:focus {
  color: #21759b;
  top: 7px;
  transition: top 0s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.padding-y {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.col-padding-bottom {
  padding-bottom: 2em;
}

section {
  scroll-margin-top: 80px; /* wysokość Twojego menu */
}

.section-title {
  font-size: 2.6rem;
  position: relative;
  margin-bottom: 2rem;
  margin: 0 auto 2rem;
  display: inline-block;
}
.section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #00BA21;
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.6rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 2rem;
}

.section-img {
  border-radius: 10px;
}

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

.bg-custom-secondary {
  background-color: rgba(237, 237, 237, 0.2);
}

.avatar {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 600px) {
  .avatar {
    width: 200px;
    height: 200px;
  }
}
@media (min-width: 768px) {
  .hero {
    background: url("../img/dolina-baryczy-zurawie-1200.webp") center center/cover no-repeat;
  }
  .column-center-md {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-margin {
    margin-top: 4rem !important;
  }
}
@media (min-width: 992px) {
  .mission__item {
    padding: 0 1rem 0 1rem !important;
  }
}
@media (min-width: 1024px) {
  .avatar {
    width: 250px;
    height: 250px;
  }
  .hero__title {
    font-size: 7.6rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    color: #fff;
  }
  .hero__title span {
    display: inline-block;
    color: #F4D03F;
    position: relative;
  }
  .hero__title span::after {
    content: "";
    display: block;
    margin-top: 5px;
    width: 100%;
    height: 6px;
    background-color: #F4D03F;
  }
  .hero__subtitle {
    margin-top: 5rem;
    font-size: 3rem;
    font-weight: 700;
  }
  .section-img {
    border-radius: 16px;
  }
  .section-title {
    font-size: 3.4rem;
  }
  .about__card {
    border-radius: 16px;
  }
  .about__card-label {
    border-radius: 1rem;
  }
  .projects .section-subtitle {
    margin-bottom: 4rem;
  }
}
/* Extra large (duże monitory, 4K) */
@media (min-width: 1440px) {
  .hero {
    background: url("../img/dolina-baryczy-zurawie-2000.webp") center center/cover no-repeat;
  }
  .section-title {
    font-size: 3.8rem;
  }
  .section-subtitle {
    font-size: 2rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 2rem;
  }
  p {
    font-size: 2rem;
  }
  .about__card {
    border-radius: 16px;
  }
  .about__card-label {
    font-size: 1.8rem;
  }
  .mission__item-icon i {
    display: inline-block;
    font-size: 6.6rem;
    color: #1B4332;
  }
  .mission__item-title {
    font-size: 3.2rem;
    margin-bottom: 1rem;
  }
  .projects__card-icon i {
    font-size: 6.6rem;
    color: #1B4332;
    transition: color 0.3s ease;
  }
  .projects__card-title {
    font-size: 2.6rem;
  }
  .work__title {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .work__list {
    font-size: 2rem;
  }
  .mini-baner .image-card__content-text {
    font-size: 2rem;
  }
  .declaration ul li {
    font-size: 2rem;
  }
  h3 {
    font-size: 3.2rem;
  }
  h4 {
    font-size: 2.6rem;
  }
}/*# sourceMappingURL=style.css.map */