.btn-gold {
  background-color: #AD974F;
  color:white;
}

.btn-gold:hover {
  background-color: #AD974F;
  color:black;
}

.btn-darkgold {
  background-color: #8E793E;
  color:white;
}

.btn-darkgold:hover {
  background-color: #8E793E;
  color:black;
}

.text-gold {
  color: #AD974F;
}

.text-darkgold {
  color: #8E793E;
}

.bg-gold {
  background-color: #AD974F;
  color:white;
}

.bg-darkgold {
  background-color: #8E793E;
  color:white;
}

#sluzby, #portfolio, #referencie, #cennik, #faq, #kontakt {  
  scroll-margin-block-start: 50px; 
}

/* Otvorený (active) accordion header */
.accordion-button:not(.collapsed) {
  background-color: #212529;
  color: #fff; /* text aby bol čitateľný */
  box-shadow: none; /* zruší ten modrý glow efekt */
}

/* Ikonka šípky v otvorenom stave */
.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* aby bola biela */
}

/* Zatvorený (collapsed) accordion header */
.accordion-button.collapsed {
  background-color: #AD974F;
}

/* Focus stav (keď na to klikneš alebo tabuješ) */
.accordion-button:focus {
  box-shadow: none;
  border-color: #212529;
}

@media only screen and (max-width: 499px) {
  .cta {
    width:100%;
  }         
}

/* ==== Cookie Bar CSS ==== */
.cookie-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1080;
  background: #111;
  color: #fff;
  box-shadow: 0 -10px 30px rgba(0,0,0,.25);
  margin-bottom: 0;
}

.cookie-inner{
  padding: 12px 16px;  /* rovnaký padding hore/dole */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-text{ line-height: 1.35; }

.cookie-actions{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  width: 100%;
}

/* default (mobile/tablet): tlačidlá sa správajú flexibilne */
.cookie-btn{ flex: 1 1 0; }

/* Desktop: 3 tlačidlá vždy vedľa seba */
@media (min-width: 768px){
  .cookie-inner{
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 24px;
  }
  .cookie-actions{
    width: auto;
    flex-wrap: nowrap;
  }
  .cookie-btn{ flex: 0 0 auto; }
}

/* Mobile layout do 468px:
   1. riadok: Viac informácií = 100%
   2. riadok: Odmietnuť + Súhlasím = 50/50
*/
@media (max-width: 468px){
  .cookie-actions{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
  }
  #cookieMoreLink.cookie-btn{
    flex: 0 0 100%;
    width: 100%;
    text-align: center;
  }
  #cookieDecline.cookie-btn,
  #cookieAccept.cookie-btn{
    flex: 0 0 calc(50% - 4px);
    width: calc(50% - 4px);
    min-width: 0;
    white-space: nowrap;
    text-align: center;
  }
}

/* iOS safe area */
@supports (padding: max(0px)){
  .cookie-bar{ padding-bottom: env(safe-area-inset-bottom); }
}




