/*
Theme Name: Black Spire
Theme URI: https://blackspireconsulting.com/
Author: AD-REN
Author URI: http://adren.drg.pl
Description: Motyw dla Black Spire
Version: 1.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blackspireconsulting
*/


#content {
    width: 100%;
    padding: 0;
    margin: 0;
}
.artykolch{
  width: 100%;
  padding: 0;
  margin: 0;

}

/* Styl nagłówka */
.bg-gradient {
    background: linear-gradient(to right, #a8a8a8, #fff) !important; /* Zmienia gradient */
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
  padding-top: 10px;
}

.navbar-brand img {
    max-height: 50px;
}

/* Styl dla tła wideo */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -1; /* Pod nagłówkiem i treścią */
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Skaluje wideo, aby zajmowało cały ekran */
    transform: translate(-50%, -50%);
}

/* Styl dla kontenera logo */
.logo-overlay {
    position: fixed;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: rgba(255, 255, 255, 0.4); /* Półprzezroczyste białe tło */
    padding: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%; /* Stała szerokość kontenera */
    height: 60%; /* Stała wysokość kontenera */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2); /* Delikatny cień dla efektu */
}

/* Styl dla obrazu logo */
.logo-overlay img {
    max-width: 80%;
    max-height: 80%;
    height: auto;
}

/* Styl dla narożnych ramek */
.corner {
    position: absolute;
    border: 2px solid black;
    width: 160px;
    height: 160px;
}

/* Lewy górny narożnik */
.corner-top-left {
    top: 0;
    left: 0;
    border-bottom: none;
    border-right: none;
}

/* Prawy dolny narożnik */
.corner-bottom-right {
    bottom: 0;
    right: 0;
    border-top: none;
    border-left: none;
}


/* Styl dla treści nakładanej na podstronach */
.overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.6); /* Półprzezroczyste białe tło */
  /*  padding: 20px;*/
    border-radius: 0px;
    overflow-y: auto; /* Dodaje przewijanie, jeśli zawartość jest większa niż ekran */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Delikatny cień */
    z-index: 1; /* Na wierzchu wideo */
    margin-top: 65px;
}

/* Stały nagłówek */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10; /* Przed wideo */
}


/* Czcionka i odstępy w menu */
.navbar-nav .nav-link {
    color: #000;
    font-weight: bold;
  /*  padding: 10px 20px;*/
    font-family: 'Times New Roman', serif; /* Dodanie Times New Roman do menu */
    font-size: 18px; /* Opcjonalnie, zmień rozmiar czcionki według potrzeb */
}

/* Odstępy między elementami menu */
.navbar-nav .nav-item {
    margin-right: 15px; /* Odstęp między elementami menu */
}



/* Styl przy najechaniu */
.navbar-nav .nav-link:hover {
    color: #555; /* Kolor najechania */
    transform: translateY(-5px); /* Podnosi element o 10px w górę */
}

/* Rozłożenie elementów na całą szerokość */
.navbar-nav {
    display: flex;
    justify-content: space-between; /* Rozłożenie elementów równomiernie na całą szerokość */
    width: 100%; /* Upewnij się, że menu zajmuje całą szerokość */
}

/* Przycisk rozwijania menu mobilnego */
.navbar-dark .navbar-toggler {
    border-color: transparent;
}

.navbar-dark .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='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-dark .navbar-toggler {
    border: 2px solid black !important; /* Ustawienie pełnej obwódki */
}

.navbar-light .navbar-toggler {
    border-color: black; /* Zmień kolor obwódki na czarny, jeśli używasz navbar-light */
}



/* Styl głównego linku języka */
.nav-item > .nav-link {
    cursor: pointer;
    position: relative;
    font-family: 'Marcellus', Baskerville, serif;
     transition: transform 0.3s ease; /* Dodaje płynne przejście */
}

/* Ukrycie rozwijanego menu języków domyślnie */
.nav-item > .sub-menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 5px 0;
    min-width: 120px;
    z-index: 10;
    transition: visibility 0.3s, opacity 0.3s ease;
    font-family: 'Marcellus', Baskerville, serif;
}

/* Wyświetlenie menu na najechanie kursorem lub przy zachowaniu fokusu */
.nav-item:hover > .sub-menu,
.nav-item:focus-within > .sub-menu {
    visibility: visible;
    opacity: 1;
    transform: translateY(-5px); /* Podnosi element o 10px w górę */
}

/* Stylizacja opcji języków */
.sub-menu .nav-item {
    display: block;
}

.sub-menu .nav-item a {
    padding: 8px 16px;
    color: #333;
    text-decoration: none;
    display: block;
    white-space: nowrap;
}

.sub-menu .nav-item a:hover {
    background-color: #eee;
    color: #000;
}

/* Styl mobilny */
@media (max-width: 768px) { /* Możesz dostosować szerokość według potrzeb */
    .nav-item > .sub-menu {
        right: auto;  /* Zresetuj `right` */
        left: 0;      /* Ustaw `left` na 0, by menu rozwijało się od lewej */
    }
}


/* Pełna szerokość rozwijanego menu w widoku mobilnym */
@media (max-width: 768px) {
    .navbar-collapse {
        position: absolute; /* Unika przesuwania na logo */
        top: 90%; /* Umieszcza rozwijane menu poniżej nagłówka */
        left: 0;
        width: 100%; /* Pełna szerokość */
        background: linear-gradient(to right, #a8a8a8, #fff) !important; /* Zmienia gradient */
      /*  background-color: #fff;*/
        padding: 1rem; /* Dodaje odstęp wokół pozycji menu */
        z-index: 25; /* Ustawienie nad logo */
    }

    /* Centrowanie pozycji menu */
    .navbar-nav {
        flex-direction: column; /* Układa elementy menu w kolumnie */
        align-items: left; /* Wyśrodkowanie pozycji menu */
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0; /* Dodaje przestrzeń między pozycjami menu */
    }

    .navbar-toggler {
        position: absolute;
        right: 1rem; /* Ustawia przycisk po prawej stronie */
        top: 1rem;
        z-index: 6; /* Przycisk nad rozwijanym menu */
    }
}

       .industries-section {
           text-align: center;
           padding: 40px 0;


       }

       .industries-section h1 {
           font-size: 36px;
           margin-bottom: 20px;
            text-align: center;
            font-family: 'Marcellus', Baskerville, serif;
        }


       .industries-section p {
           font-size: 18px;
           margin-bottom: 40px;
           max-width: 80%;
           margin-left: auto;
           margin-right: auto;
           font-family: 'Marcellus', Baskerville, serif;
       }


       .industry-box {
           border: 1px solid #333;
           font-size: 16px;
           font-weight: bold;
           padding: 20px;
           transition: transform 0.3s ease, box-shadow 0.3s ease; /* Płynne przejście transformacji */
           cursor: pointer; /* Wskazanie, że kafelek jest interaktywny */

       }
       .industry-box:hover {
    transform: translateY(-5px); /* Podciąga kafelek o 5px w górę */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Dodaje cień dla efektu unoszenia */
}

       .breadcrumbs-container {
    margin-bottom: 20px;
    font-size: 14px;
    color: #555;
}
.breadcrumbs-container a {
    color: #000;
    text-decoration: none;
}
.breadcrumbs-container a:hover {
    text-decoration: underline;
}

.article-image {
    max-width: 100%; /* Obraz nie będzie szerszy niż kontener */
    height: auto; /* Proporcjonalna wysokość */
    object-fit: cover; /* Opcjonalne: dopasowanie obrazu */
    border-radius: 8px; /* Opcjonalne: zaokrąglone rogi */
}

/* Styl dla tytułu */
.article-section-title h1 {
    font-size: 46px;
  /*  font-weight: bold;
    margin-bottom: 20px;*/
    font-family: 'Marcellus', Baskerville, serif;
  /*  margin-top:40px;*/
    padding-top:55px;
      text-transform: uppercase;
}
.defense{
  padding-top: 50px;
}

/* Styl dla obrazu */
.icon-box img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Separator pionowy */
.vertical-line {
    border-left: 3px solid #000;
    height: 320px; /* Stała wysokość, dopasuj do treści */
    margin: 0 auto;
}


/* Styl mobilny */
@media (max-width: 768px) { /* Możesz dostosować szerokość według potrzeb */
  .vertical-line {
    display: none;
  }
}


/* Styl dla opisu */
.description {
    font-size: 18px;
    line-height: 1.8;
    text-align: justify; /* Opcjonalnie: Wyrównanie tekstu */
    padding: 10px;
    font-family: 'Marcellus', Baskerville, serif;
}
@media (min-width: 768px) { /* Możesz dostosować szerokość według potrzeb */
  .description {
      font-size: 25px;

  }
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.stat-box {
  padding:12px;
    padding-top: 50px;
}

/* Styl mobilny */
@media (max-width: 768px) { /* Możesz dostosować szerokość według potrzeb */
  .stat-box {
      padding: 30px;
  }
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
}

.stat-description {
    font-size: 16px;
    line-height: 1.5;
    margin-top: 10px;
}

.stat-box h1 {
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 10px;
    font-size: 50px;
    font-family: serif;
}

.stat-box h1::after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background-color: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}


/* Styl dla pudełek transformacyjnych */
.transform-box {
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
  /*  justify-content: space-between;*/
    min-height: 100%; /* Wymusza pełną wysokość wewnątrz kolumny */
    font-family: 'Marcellus', Baskerville, serif;
}
.transform-box:hover {
    transform: translateY(-10px);
}

.transform-title {
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 10px;
     font-family: 'Marcellus', Baskerville, serif;
     font-style: italic;
}


/* Styl dla stopki spotkań */
.appointment-footer {
    background: linear-gradient(to right, #a8a8a8, #fff) !important; /* Zmienia gradient */

}

.appointment-footer p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

/* Styl dla poziomej linii w stopce */
.footer-divider {
    width: 35%; /* Dostosuj szerokość linii według potrzeb */
    margin: 10px auto; /* Wyśrodkowanie linii */
    border: none;
    border-top: 2px solid #000; /* Kolor i styl linii */
}

.contact-info {
    font-size: 16px;
    color: #333;
}

.contact-item {
    margin: 0 15px;
}

.category_link{
  color: #000;
  text-decoration: none;
}

.ai-data-section {
    text-align: center;
}

.ai-title {
  font-size: 46px;
font-weight: bold;
margin-bottom: 20px;
font-family: 'Marcellus', Baskerville, serif;
margin-top: 40px;
padding-top: 55px;
  text-transform: uppercase;
}


.ai-divider {
    width: 70%;
    margin: 0 auto;
    border-top: 3px solid black !important;
    opacity: 1 !important; /* Ustaw pełną nieprzezroczystość */
}


.ai-description {
    font-size: 18px;
  line-height: 1.8;
  text-align: center;
  padding: 10px;
  font-family: 'Marcellus', Baskerville, serif;
  padding-left: 80px;
  padding-right: 80px;

}

.ai-services-section {
    text-align: center;
    margin-top:120px !important;
}

.ai-services-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Marcellus', Baskerville, serif;
}

.ai-service-box {
    border: 2px solid black;
    padding: 10px;
    margin: 20px auto;
    width: 90%;
    max-width: 900px;
    background-color: #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ai-service-box:hover {
    transform: translateY(-5px);
}

.ai-service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: 'Marcellus', Baskerville, serif;
}

.ai-service-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom:0px;
      font-family: 'Marcellus', Baskerville, serif;
}



.about-section {
    text-align: center;
}

.about-title {
  font-size: 46px;
font-weight: bold;
margin-bottom: 20px;
font-family: 'Marcellus', Baskerville, serif;
margin-top: 10px;
padding-top: 15px;
}

.about-divider {
    width: 70%;
    margin: 0 auto;
    border-top: 2px solid black;
    margin-bottom: 20px !important;
    opacity: 1 !important;
}

.about-description {
    font-size: 1.125rem;
    color: #333;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto 40px auto;
    font-family: 'Marcellus', Baskerville, serif;
}

.about-stats {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.about-stat-box {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    width: 210px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 5px;
}

.about-stat-number {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.about-stat-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.4;
      font-family: 'Marcellus', Baskerville, serif;
}



.about-profile {
    text-align: center;
}

.profile-picture-container {
    position: relative;
    display: inline-block;
}

.profile-picture {
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.linkedin-icon {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 50px;
    height: 50px;

}

.profile-name {
    font-size: 36px;
    font-family: 'Marcellus', Baskerville, serif;
    font-weight: normal;
    margin-bottom: 10px;
    text-align: center;
}

.profile-quote {
    font-size: 35px;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 20px auto;
     font-family: 'Playball', cursive;
    font-weight: 700;
}

.quote-symbol {
    font-size: 2rem;
    color: #555;
}

.about-divider1 {
  width: 70%;
  margin: 0 auto;
  border-top: 2px solid black;
  margin-bottom: 20px !important;
  opacity: 1 !important;
}

.background-title {
    font-size: 36px;
    font-weight: bold;
    font-family: 'Marcellus', Baskerville, serif;
    margin-top: 20px;
    margin-bottom: 10px;
}

.background-list {
    list-style-type: none;
    padding: 0;
    font-size: 1rem;
    color: #333;
    font-family: 'Marcellus', Baskerville, serif;
    text-align: left;
  margin-left: 150px;
}

.background-list li {
    position: relative;
    margin-bottom: 10px;
}

.background-list li::before {
    content: "•";
    color: #333;
    font-weight: bold;
    margin-right: 8px;
}


.rownajZdjAbout{
  text-align: right;
}

/* Stylizacja dla wersji mobilnej */
@media (max-width: 767.98px) {
    .profile-quote {
        text-align: center; /* Wyrównanie do środka na urządzeniach mobilnych */
    }

    .rownajZdjAbout{
      text-align: center;
    }

    .background-list {

      margin-left: 0px;
    }

    .ai-description {

      padding-left: 5px;
      padding-right: 5px;

    }
}


.contact-section {
    text-align: center;
}

.contact-title {
    font-size: 36px;
    font-family: 'Marcellus', Baskerville, serif;
    margin-bottom: 10px;
}

.contact-divider {
    width: 50%;
    margin: 0 auto;
    border-top: 2px solid black !important;
    margin-bottom: 20px;
    opacity: 1 !important;
}

.contact-subtitle {
    font-size: 26px;
    font-weight: 300;
    margin-bottom: 30px;
    font-family: 'Marcellus', Baskerville, serif;
}

.contact-info {
    font-size: 20px;
    color: #333;
    line-height: 1.6;
    font-family: 'Marcellus', Baskerville, serif;
}

.contact-info p {
    margin: 10px 0;
}

.contact-email {
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.contact-email:hover {
    color: #000;
    text-decoration: underline;
}

.contact-map {
    width: 100%;
    max-width: 85%;
    margin: 20px 0;
}

.contact-map-row {
    position: relative;
    text-align: center;
}

.contact-map-row .col-md-3 {
    position: relative;
    z-index: 1; /* Aby adresy były wyświetlane na mapie */
}

.contact-map-row .col-md-3:first-child {
    right: -85px; /* Przesunięcie adresu po lewej na mapę */
}

.contact-map-row .col-md-3:last-child {
    left: -85px; /* Przesunięcie adresu po prawej na mapę */
}

.contact-map-row p {
    font-family: 'Marcellus', Baskerville, serif;
    font-size: 22px;

    display: inline-block;
    padding: 5px 10px;
    border-radius: 5px;
}

@media (max-width: 767.98px) {
    .contact-info {
        font-size: 1rem;
    }



    .contact-map-row .col-md-3 {
        right: 0;
        left: 0;
    }


    .contact-map-row .col-md-3:first-child {
        right: 0px; /* Przesunięcie adresu po lewej na mapę */
    }

    .contact-map-row .col-md-3:last-child {
        left: 0px; /* Przesunięcie adresu po prawej na mapę */
    }
}




.language-switcher select {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    font-family: 'Marcellus', Baskerville, serif;
    text-transform: uppercase;
    border: 0px solid #000;
    border-radius: 5px;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0); /* Półprzezroczyste białe tło */

}

.language-switcher select:hover {
    border-color: #000;
}

.language-switcher select:focus {
    outline: none;
    border-color: #000;
}

.contact-locations {
    font-family: 'Playfair Display', serif; /* Dopasuj czcionkę, np. elegancką */
    font-size: 28px; /* Rozmiar czcionki */
    text-transform: uppercase; /* Wielkie litery */
    letter-spacing: 2px; /* Odstępy między literami */
}

.contact-locations .separator {
    font-size: 30px; /* Większy rozmiar dla separatorów */
    margin: 0 15px; /* Odstępy po bokach separatora */
}
/* Ukryj kropki na urządzeniach mobilnych */
@media (max-width: 768px) {
    .contact-locations .separator {
        display: none;
    }
}
