@charset "UTF-8";
/*!
Theme Name: IM-Bud
Theme URI: https://im-bud.pl
Author: Maciorowski
Author URI: https://maciorowski.pl
Description: Dedykowany motyw dla Grupa IM-BUD - Generalny Wykonawca Inwestycji Przemysłowych
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: imbud
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
*/
:root {
  --imbud-primary: #e71d27;
  --imbud-primary-dark: #c41920;
  --imbud-navy: #0e2e47;
  --imbud-dark: #1a1a1a;
  --imbud-gray: #666666;
  --imbud-light: #f8f8f8;
  --imbud-white: #ffffff;
  --imbud-container-width: 1140px;
  --imbud-body-max-width: 1920px;
  --imbud-header-height: 88px;
}

body {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Inter", sans-serif;
  overflow-x: hidden !important;
}

body.has-header {
  padding-top: 88px;
}

body:not(.home) #primary {
  max-width: 1140px;
  margin: 0px auto 60px auto !important;
  padding: 40px 0px 0 0px !important;
}
body:not(.home) #primary .entry-header {
  margin-bottom: 40px;
}
body:not(.home) #primary section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

section > div {
  max-width: 1140px !important;
  margin: 0 auto !important;
}

#content > section:first-of-type {
  padding-top: 0 !important;
}

body.admin-bar.has-header {
  padding-top: 120px;
}
@media screen and (max-width: 782px) {
  body.admin-bar.has-header {
    padding-top: 134px;
  }
}

body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 1024px) {
  body.admin-bar .header-nav {
    top: 120px;
  }
}
@media screen and (max-width: 782px) {
  body.admin-bar .header-nav {
    top: 134px;
  }
}

.no-padding-top {
  padding-top: 0 !important;
}

.no-padding-bottom {
  padding-bottom: 0 !important;
}

.no-padding-left .text-3-columns-wrapper,
.no-padding-left .text-columns-wrapper,
.no-padding-left .simple-text-wrapper {
  padding-left: 0 !important;
}

.no-padding-right .text-3-columns-wrapper,
.no-padding-right .text-columns-wrapper,
.no-padding-right .simple-text-wrapper {
  padding-right: 0 !important;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 40px;
  background-color: #ffffff;
  height: 88px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo img {
  height: 35px;
  width: auto;
  display: block;
}

.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 88px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 40px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
  }
  .header-nav.is-open {
    transform: translateX(0);
  }
}

.header-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1024px) {
  .header-menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
}
.header-menu li {
  margin: 0;
}
@media (max-width: 1024px) {
  .header-menu li {
    width: 100%;
    border-bottom: 1px solid rgba(14, 46, 71, 0.1);
  }
}
.header-menu a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #0e2e47;
  text-decoration: none;
  transition: color 0.2s ease;
  display: block;
}
@media (max-width: 1024px) {
  .header-menu a {
    padding: 16px 0;
  }
}
.header-menu a:hover, .header-menu a:focus {
  color: #e71d27;
}
.header-menu .current-menu-item a,
.header-menu .current_page_item a {
  color: #e71d27;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e71d27;
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  min-width: 160px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}
.header-cta:hover, .header-cta:focus {
  background-color: #c41920;
  color: #ffffff;
  transform: translateY(-1px);
}
.header-cta:active {
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .header-cta {
    display: none;
  }
}

.header-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
@media (max-width: 1024px) {
  .header-menu-toggle {
    display: flex;
  }
}
.header-menu-toggle .hamburger-line {
  width: 24px;
  height: 2px;
  background-color: #0e2e47;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header-menu-toggle .hamburger-line:nth-child(1) {
  transform: translateY(-6px);
}
.header-menu-toggle .hamburger-line:nth-child(3) {
  transform: translateY(6px);
}
.header-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: rotate(45deg);
}
.header-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg);
}

.header-nav .header-cta-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .header-nav .header-cta-mobile {
    display: inline-flex;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    background-color: #e71d27;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
  }
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}

.ast-container {
  max-width: 1140px;
}

.alignfull,
.full-width-block {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #0e2e47;
  color: #ffffff;
  padding: 8px;
  z-index: 100000;
}
.skip-link:focus {
  top: 0;
}

.page-header {
  padding-bottom: 0;
  padding: 0px 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .page-header {
    padding: 0px 20px;
  }
}

.page-header-container {
  max-width: 1140px;
  margin: 0 auto;
}

.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs-nav {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #212121;
}
.breadcrumbs-nav a {
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
}
.breadcrumbs-nav a:hover {
  color: #e71d27;
}
.breadcrumbs-nav .breadcrumb_last {
  color: #212121;
}
.breadcrumbs-nav span[aria-hidden=true] {
  margin: 0 8px;
  color: #212121;
}

.page-title {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 44px;
  color: #212121;
  margin: 0 0 40px 0;
}
@media (max-width: 768px) {
  .page-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 32px;
  }
}

.single-content {
  padding: 0px;
}
@media (max-width: 768px) {
  .single-content {
    padding: 0px;
  }
}
.single-content .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .single-content .container {
    padding: 0 20px;
  }
}

.site-footer {
  background-color: #f8f8f8;
  font-family: "Inter", sans-serif;
  padding: 60px 40px 30px 40px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 40px 20px;
  }
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 314px 1fr 1fr 225px;
  gap: 40px;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: center;
  }
  .footer-grid .footer-column--logo,
  .footer-grid .footer-column--contact {
    grid-column: 1/-1;
  }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.footer-column--logo .footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.footer-column--logo .footer-logo img {
  height: 32px;
  width: auto;
}
.footer-column--logo .footer-description {
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  margin-bottom: 24px;
}
.footer-column--logo .footer-description p {
  margin: 0;
}
.footer-column--logo .footer-description .widget {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .footer-social {
    justify-content: center;
  }
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  transition: opacity 0.3s ease;
}
.footer-social-link:hover {
  opacity: 0.7;
}
.footer-social-link img {
  width: 30px;
  height: auto;
}

.footer-column--menu .footer-nav,
.footer-column--menu .widget {
  margin: 0;
}
.footer-column--menu .widget-title {
  display: none;
}

.footer-menu-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  color: #212121;
  margin: 0 0 16px 0;
}

.footer-menu, .footer-column--menu .widget_nav_menu .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu li, .footer-column--menu .widget_nav_menu .menu li {
  margin-bottom: 8px;
}
.footer-menu li:last-child, .footer-column--menu .widget_nav_menu .menu li:last-child {
  margin-bottom: 0;
}
.footer-menu li.current-menu-item a, .footer-column--menu .widget_nav_menu .menu li.current-menu-item a {
  color: #e71d27;
}
.footer-menu a, .footer-column--menu .widget_nav_menu .menu a {
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-menu a:hover, .footer-column--menu .widget_nav_menu .menu a:hover {
  color: #e71d27;
}

@media (max-width: 768px) {
  .footer-column--contact {
    text-align: center;
  }
}

.footer-contact-item {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #212121;
  margin-bottom: 16px;
  text-decoration: none;
}
.footer-contact-item:last-child {
  margin-bottom: 0;
}

a.footer-contact-item {
  transition: color 0.3s ease;
}
a.footer-contact-item:hover {
  color: #e71d27;
}

.footer-address {
  margin-bottom: 16px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    padding-top: 24px;
    margin-top: 32px;
  }
}

.footer-copyright {
  font-size: 12px;
  line-height: 18px;
  color: #212121;
  margin: 0;
}
.footer-copyright p {
  margin: 0;
}
.footer-copyright a {
  color: #212121;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer-copyright a:hover {
  color: #e71d27;
}

.footer-privacy-link {
  font-size: 12px;
  line-height: 18px;
  color: #212121;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.footer-privacy-link:hover {
  color: #e71d27;
}
.footer-privacy-link.current-menu-item {
  color: #e71d27;
  font-weight: 600;
}

.taxonomy-offer-section {
  padding: 60px 40px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .taxonomy-offer-section {
    padding: 40px 20px;
  }
}

.taxonomy-offer-wrapper {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 1024px) {
  .taxonomy-offer-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.taxonomy-offer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.taxonomy-offer-heading {
  font-family: "Inter", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 44px;
  color: #212121;
  margin: 0;
}
@media (max-width: 768px) {
  .taxonomy-offer-heading {
    font-size: 28px;
    line-height: 36px;
  }
}

.taxonomy-offer-description {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: #212121;
}
.taxonomy-offer-description p {
  margin: 0 0 16px 0;
}
.taxonomy-offer-description p:last-child {
  margin-bottom: 0;
}
.taxonomy-offer-description strong {
  font-weight: 700;
}
.taxonomy-offer-description a {
  color: #e71d27;
  text-decoration: none;
}
.taxonomy-offer-description a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .taxonomy-offer-description {
    font-size: 16px;
    line-height: 26px;
  }
}

.taxonomy-offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 540px) {
  .taxonomy-offer-list {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

.taxonomy-offer-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.taxonomy-offer-list-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 34px;
  color: #e71d27;
}
.taxonomy-offer-list-icon svg {
  display: block;
  width: 13px;
  height: 11px;
}

.taxonomy-offer-list-link {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  color: #212121;
  text-decoration: none;
  transition: color 0.3s ease;
}
.taxonomy-offer-list-link:hover {
  color: #e71d27;
}
@media (max-width: 768px) {
  .taxonomy-offer-list-link {
    font-size: 16px;
    line-height: 22px;
  }
}

.taxonomy-offer-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}
@media (max-width: 1024px) {
  .taxonomy-offer-image {
    order: -1;
  }
}