/* --- Główna nawigacja --- */
.navbar-right {
  padding-top: 20px;
  padding-bottom: 20px;
}

.navbar-inverse {
  background: rgba(125, 31, 45, 0.9);
  background-size: contain;
  background-position: center center;
  background-attachment: fixed;
  border: 0;
  border-radius: 0 0 20px 20px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  font-size: 12px;
}
.section-title {
  color: #FFF;
}
.submissionsForm {
  margin: 20px 0 50px 0;
  border-radius: 30px;
  background: url(/conf-data/PTChN2023/images/grafika/pattern3.jpg);
  padding: 20px;
}
.section-wrapper, .section-wrapper--consents {
    background: transparent;
    border: 1px solid #D2D2D2;
}
.submissionsForm label {
  color: #000000;
}
.submissionsForm .section-header, .submissionsForm .color-primary {
    color: #ED8E3B;
}
.section-header.section-header--underlined {
  background-color: transparent;
}
/* Linki w menu */
.nav > li > a {
  position: relative;
  display: block;
  padding-left: 7px !important;
  padding-right: 8px !important;
  font-size: 15px !important;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Efekt hover */
.nav > li > a:hover {
  color: #ED8E3B !important; /* pomarańczowy przy najechaniu */
}

/* Aktywny link */
.nav > li.active > a,
.nav > li > a:focus,
.nav > li > a:active {
  background-color: rgba(237, 142, 59, 0.15); /* półprzezroczyste tło */
  border-radius: 10px;
  color: #ED8E3B !important; /* pomarańczowy tekst */
}

/* Dodatkowe podkreślenie aktywnego linku */
.nav > li.active > a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: #ED8E3B;
  border-radius: 2px;
}

/* --- Struktura i kontenery --- */
.has-collapsed-aside-menu {
  padding-top: 25px !important;
}
@media (min-width: 1200px) {
  .navbar > .container {
    width: 1100px !important;
  }
}
@media (min-width: 1300px) {
  .navbar > .container {
    width: 1210px !important;
  }
}
@media (min-width: 1400px) {
  .navbar > .container {
    width: 1280px !important;
  }
}
@media (min-width: 1500px) {
  .navbar > .container {
    width: 1370px !important;
  }
}

.navbar > .container {
  padding-left: 10% !important;
}

/* --- Tło strony --- */
body {
  background: url("/conf-data/naczyniowka/images/background.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* --- Sekcje główne --- */
.glowna {
  margin-top: -50px;
  padding: 60px;
  background: url("/conf-data/PTChN2023/images/grafika/pattern3.jpg");
  border-radius: 30px;
  margin-bottom: 90px;
  -webkit-box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
  -moz-box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
  box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
}

.glowna2 {
  margin-top: -50px;
  padding: 60px;
  background: #fff;
  border-radius: 30px;
  margin-bottom: 90px;
  -webkit-box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
  -moz-box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
  box-shadow: 1px 1px 24px 0px rgba(66, 68, 90, 0.46);
}

.container-fluid--max-width {
  max-width: 1100px;
}

.columns {
  column-count: 2;
  column-gap: 80px;
  column-rule: 1px dashed #fff;
}

.fullwidth-section__tint {
  padding-bottom: 50px;
}

.footer {
  display: none;
}

/* --- Responsywność --- */
@media only screen and (max-width: 768px) {
  .columns {
    column-count: 1;
    column-gap: 80px;
    column-rule: 1px dashed #fff;
  }

  .glowna {
    margin-top: -10px;
    padding: 30px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 1366px) {
  .has-collapsed-aside-menu {
    padding-top: 55px !important;
  }
}

/* --- Pasek przewijania --- */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: #7D1F2D;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(125, 31, 45, 0.8);
}

/* --- Efekt fade-in dla elementów --- */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}