/* Contact page Styles */


.featured-image-header {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.featured-image-header img.wp-image-featured-header {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

.featured-image-header img.wp-image-featured-header:hover {
    transform: scale(1.01);
}
h1.entry-title {

    letter-spacing: -1px;
    text-align: center;
    padding: 27px 0;

}
.page-template-page-contact .entry-content-wrap {
    padding: 0;
}
.page-template-page-contact .entry-header {
    margin-bottom: 0;
}
.page-template-page-contact h2 {
    font-size: 22px;
}
.page-template-page-contact
{
    font-size: 14px;
}
.contact-details-row {
    display: flex;
    gap: 30px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
	margin-bottom:40px;
}

.contact-details-row .row1,
.contact-details-row .row2 {
  display: flex;
  align-items: center;   /* wyrównanie w pionie */
  justify-content: center; /* opcjonalnie: wyrównanie w poziomie */
  
  padding: 20px;
  text-align: center;
  border: 3px solid #c4cd26;
  border-radius: 10px;
  font-size: 22px;
}

.contact-details-row .row1 {
  width: 40%;
    display:block;
    line-height: 1.9;
            display: flex;
    flex-direction: column;
}

.contact-details-row .row2 {
  flex: 1; /* zajmuje resztę miejsca */
}

.contact-details-row a {
  text-decoration: none;
  color: inherit; /* opcjonalnie – przejmie kolor tekstu */
  text-transform: uppercase;
}
span.working-hours-info
{
    font-size: 20px;

}


.contact-details-row .row1,
.contact-details-row .row2 {
    position: relative;
}


.contact-details-row .row1:before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -20px;

    width: 46px;  /* 36px obrazek + 20px margines (po 10px z każdej strony) */
    height: 46px;

    background: #fff url(../../img/tel.jpg) no-repeat center/36px 36px;
    border-radius: 6px;
}

.contact-details-row .row2:before {
    content: "";
    position: absolute;
    right: 18px;
    bottom: -20px;

    width: 59px;  /* 36px obrazek + 20px margines (po 10px z każdej strony) */
    height: 42px;

    background: #fff url(../../img/mail.jpg) no-repeat center/40px 31px;
    border-radius: 6px; 

}
    @media (max-width: 768px) {
    .contact-details-row {
        flex-direction: column;
    }
    .contact-details-row .row1,
    .contact-details-row .row2 {
        width: 100%;
    }
    .contact-details-row .row1:before,
    .contact-details-row .row2:before {
        position: absolute;
        right: 18px;
        bottom: -25px;
    }
}

 /* Company Info Section */
.company-info-sections {
    display: flex;
    gap: 60px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.company-section {
    flex: 1;
    min-width: 280px;
}

.section-title {
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.company-section .social-icon {
    width: 40px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.company-section .social-icon img {

    object-fit: fill;
}


.facebook-icon img {
    width: 22px;
    height: 45px;
}

.instagram-icon img {
    width: 40px;
    height: 40px;
}

.social-link a {
    color: #505050;
    text-decoration: underline;
    text-decoration-color: #c3cc21;
    font-size: 14px;
    font-weight: 600;
}

.social-link a:hover {
    opacity: 0.7;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .company-info-sections {
        flex-direction: column;
        gap: 40px;
    }

    .company-section {
        min-width: 100%;
    }

    .section-title {
        font-size: 20px;
    }


    .facebook-icon {
        font-size: 18px;
    }

    .social-link a {
        font-size: 14px;
    }

    .company-text {
        font-size: 14px;
    }
}