body {
    font-family: 'Space Grotesk',sans-serif;
    background: #0a1017;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk',sans-serif!important;
}

.container.grid-xl {
    max-width: 1280px;
}

.mobile-menu .button_container span.top, .mobile-menu .button_container span.middle, .mobile-menu .button_container span.bottom{
  background-color: #d10a11!important;
}

#header{
    background-color: #0a1017;
    height:5.5rem;
    border-bottom: none;
}

#header .navbar-section {
    height: 4.5rem;
}

#header .logo img, #header .logo svg {
    display: inherit;
    height: 52px;
    padding-left: 25px;
}

.header-fixed #header {
    position: relative;
}

.header-fixed #header.scrolled {
    position: fixed;
    border-bottom: 1px solid rgba(172, 179, 194, .2);
    
}

.header-fixed #body-wrapper{
    padding-top: 0px;
}

#contact-bar {
    border-bottom: 1px solid rgba(172, 179, 194, .2);
    color: #fff;
}

#header .desktop-menu a{
    color:#fff;
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
}

#header .desktop-menu a::after{
    content: "/";
    position: absolute;
    left: 0;
    margin-left:10px;
    color: #d10a11;
    margin-top: -1px;
}

.dropmenu ul li a.active, .dropmenu ul li a:focus {
    color: #fff !important;
}

.dropmenu ul li a:hover{
    color: #d10a11!important;
}

a.active, a:active, a:focus, a:hover {
    text-decoration: none!important;
    color: #fff;
}

html {
    scroll-behavior: smooth!important;
  }

.mobile-menu-del {
    z-index: 201;
}

#overlay-del {
    z-index: 203!important;
}

.clip-path-custom1 {
    clip-path: polygon(0 0,100% 0,100% calc(100% - 30px),calc(100% - 30px) 100%,30px 100%,0 calc(100% - 30px));
    border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-bottom: 1px;
  }

  .clip-path-custom2 {
    clip-path: polygon(30px 0,calc(100% - 30px) 0,100% 30px,100% calc(100% - 30px),calc(100% - 30px) 100%,30px 100%,0 calc(100% - 30px),0 30px);
    margin-bottom: 1px;
  }

  .clip-path-custom2a {
    clip-path: polygon(0 30px,30px 0,calc(100% - 30px) 0,100% 30px,100% 100%,0 100%);
    border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  }

  .oferta img {
    mix-blend-mode: multiply!important;
  background-color: transparent!important;
  }

  /* menu mobile */
  .overlay.open{
    background-color: #0a1017!important;
  }

  
  
  .overlay-menu .treemenu-root {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
  }

  .overlay-menu .treemenu-root li {
    background-color: none!important;
    background: none!important;
    padding-left: 25px;
  }

  .overlay-menu .treemenu-root li a, .overlay-menu .treemenu-root li a.active {
    color: #fff!important;
    font-size: 26px;
    text-transform: uppercase;
  }

  .overlay-menu .treemenu-root li a::after {
    content: "/";
    position: absolute;
    left: 0;
    margin-left: 24px;
    color: #d10a11;
    margin-top: -1px;
}
 
  
  .toggler {
    display: none; /* ukrywamy elementy dekoracyjne, jeśli są puste */
  }
/* classic menu */
  .dropmenu ul{
    gap: 25px;
  }

  /* cennik */
  ul.cennik li{
    color:#fff;
    background: linear-gradient(to right, #cf0a11, transparent);
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    padding-left: 25px;
    font-weight: bold;
    font-size: 21px;
    margin-top: 15px;
    max-width: 250px;
    transition: background 0.3s ease;
    transition: transform 0.3s ease;
  }
  ul.cennik li:hover{
    background: linear-gradient(to right, #a32019, transparent);
    transform: translateX(5px);
  }

  ul.cennik li span{
    font-size: 14px;
    font-weight: normal;
    text-transform: uppercase;
  }

  ul.cennik li p.days{
    font-size: 12px;
    font-weight: normal;
    padding-bottom: 5px;
  }

  /* wynajmij btn + modal */

  .btn-wynajmij{
    transition: background 0.3s ease;
    transition: transform 0.3s ease;
  }

  .btn-wynajmij:hover{
    background: linear-gradient(to right, #c9261e, transparent);
    transform: translateX(5px);
  }

  /* Cookies */
.cc-compliance .cc-allow{
background-color: #cf0a11!important;
border-radius: 0.6rem;
}

.cc-revoke{
  display: none!important;
}

html .cc-revoke, html .cc-window{
  z-index: 99999!important;
}

.cc-window.cc-floating{
  border-radius: 2rem;
}


  /* ---- Modal: tło + animacja ---- */
  .modal {
    display: none;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(10,16,23,0.20);
    align-items: center;
    justify-content: center;

    /* fade */
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .modal.show {
    display: flex;
    opacity: 1;
  }

  /* ---- Zawartość modala ---- */
  .modal-content {
    position: relative;
    background: rgba(10,16,23,0.92);
    color: #fff;
    padding: 1rem;
    border-radius: 2rem;
    width: 90%;
    max-width: 500px;
    height: 50vh;
    max-height: 285px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /* ---- Przycisk zamknięcia (X) ---- */
  .modal-close {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #fff;
    cursor: pointer;
    line-height: 1;
  }



  /* Ogólne style dla kontenera .markdown1 */


/* Container do otoczenia treści */
.markdown1 .container {
    color: #ffffffcb;
    max-width: 1000px;
    font-family: 'Space Grotesk', sans-serif;
}

/* Nagłówki */
.markdown1 h1, .markdown1 h2, .markdown1 h3, .markdown1 h4, .markdown1 h5, .markdown1 h6 {
    color: #fff;
    font-weight: bold;
    margin-top: 1.5em;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.markdown1 h1 {
    font-size: 40px;
    font-weight: bold;
    text-align: left;
    color: #fff;
    margin-top: -40px;
    line-height: 100px;
    margin-bottom: 70px;
  }

  .markdown1 h1::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100vw; /* pełna szerokość ekranu */
    min-height: 100px;
    z-index: -1; /* tło pod tekstem */
    background: linear-gradient(to right, #cf0a11, transparent);
  }



.markdown1 h1 {
    font-size: 2em;
    padding-bottom: 10px;
}

.markdown1 h2 {
    font-size: 1.75em;
    margin-top: 1.25em;
}

.markdown1 h3 {
    font-size: 1.5em;
    
}

.markdown1 h4, .markdown1 h5, .markdown1 h6 {
    font-size: 1.25em;
}

/* Style akapitów i tekstu */
.markdown1 p {
    margin: 1.25em 0;
    text-align: justify;
}

.markdown1 ul, .markdown1 ol {
    margin: 1em 0;
    padding-left: 20px;
}

.markdown1 li {
    margin-bottom: 0.5em;
}

/* Linki */
.markdown1 a {
    color: #0073e6;
    text-decoration: none;
}

.markdown1 a:hover {
    text-decoration: underline;
}

/* Tabele */
.markdown1 table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.markdown1 th, .markdown1 td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

.markdown1 th {
    background-color: #f4f4f4;
}

/* Bloki cytatów */
.markdown1 blockquote {
    border-left: 5px solid #0073e6;
    padding-left: 15px;
    font-style: italic;
    color: #555;
    margin: 1.5em 0;
}

/* Kod w tekście */
.markdown1 code {
    font-family: 'Courier New', monospace;
    background-color: #f4f4f4;
    padding: 3px 5px;
    border-radius: 3px;
}

/* Listy z numerami */
.markdown1 ol {
    list-style-type: decimal;
}

/* Listy punktowane */
.markdown1 ul {
    list-style-type: disc;
    margin-left: 20px;
}

/* Definicje */
.markdown1 dl {
    margin: 1.5em 0;
}

.markdown1 dt {
    font-weight: bold;
}

.markdown1 dd {
    margin-left: 20px;
}

/* Style dla obrazków */
.markdown1 img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Przycisk "link" */
.markdown1 button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1em;
    border-radius: 5px;
    cursor: pointer;
}

.markdown1 button:hover {
    background-color: #005bb5;
}

#footer a:visited, #footer a{
    color:#b0b0b0;
}

