
.hero .carousel-container {
    min-height: 100vh;
    width: 100vw;
    }

.hero-background {
    width: 100%;
    position: absolute;
    inset: 0;
    background-image: url(../img/bg/0000.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.05;
    height: 110%;
    z-index: 0;
}

/*PARALLAX*/
.parallax-bg {
  background-image: url(../img/parallax/0000-5.png);
  /*background-size: cover;*/
  background-attachment: fixed;
  background-repeat: repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
  /*z-index: 0;*/ /*modalnal bezavart*/
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 65px;
  z-index: 996;
  width: 44px;
  height: 44px;
  transition: all 0.8s;
  background-color: var(--bs-primary);
  color: #ffffff;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 3px 6px 15px #000

}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
.back-to-top:hover {
  background: #ffffff;
  color: #000000;
  box-shadow: 2px 3px 5px #000000;
}
.back-to-top:hover i {
  color: var(--bs-primary);
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Cookie button
--------------------------------------------------------------*/
.cookie-btn {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  transition: all 0.8s;
  background-color: var(--bs-primary);
  color: #ffffff;
  border-radius: 50%;
  box-shadow: 3px 6px 15px #000000;
  padding-top: 2px;
}
.cookie-btn i {
  position: relative;
  font-size: 1.6rem;
  top: 2px;
}
.cookie-btn:hover {
  background: #ffffff;
  box-shadow: 2px 3px 5px #000000;
}
.cookie-btn:hover i {
  color: var(--bs-primary);
}


/*--------------------------------------------------------------
# Cookie
--------------------------------------------------------------*/
.cookie-disclaimer {
  display: none;/*hogy ne villanjon fel*/
  background: #000000;
  color: #ffffff;
  opacity: 0.95;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: auto;
  position: fixed;
  border-top:1px solid white;
}

.cookie-disclaimer .container {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cookie-disclaimer .cookie-close{
  float: right;
  padding: 10px;
  cursor: pointer;
}

.cookieModal .modal-dialog{
  max-width: 60%;
}

@media only screen and (max-width: 767px) {
  .cookieModal .modal-dialog{
      max-width: 90%;
      margin-left: 5%;
      margin-right: 5%;
  }
  .accept_all_cookies,
  .set_cookies,
  .reject_all_cookies{
      width: 80%;
  }
}

@media only screen and (max-width: 767px) {
  .portfolio .portfolio-filters li {
    padding: 8px 8px 8px 8px !important;
  }
}


.portfolio .portfolio-item .portfolio-info h4 {
  text-align: justify !important;
  padding-left: 20px;
}


#countdown{
  font-size: 10rem;
}
@media only screen and (max-width: 767px) {
#countdown{
  font-size: 5rem;
}
}



/*--------------------------------------------------------------
# fade-in ANIMÁCIÓ
--------------------------------------------------------------*/
.fade-in {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 1.5s ease, transform 1.5s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}


/*--------------------------------------------------------------
# RESZPONZÍV BETŰTÍPUS
--------------------------------------------------------------*/


.responsive-input {
    font-size: 1rem !important;
}

@media (max-width: 768px) {
    .responsive-input {
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {
    .responsive-input {
        font-size: 0.7rem !important;
    }
}


.bg-white-transparent{
    background: rgb(255 255 255 / 30%);
    backdrop-filter: blur(1.25px);
}



/*--------------------------------------------------------------
# FOGLALÁS
--------------------------------------------------------------*/

/* Ikonok méretezése */
.calendar-day-cell .bi {
    font-size: 20px;
    margin-right: 4px;
}

.calendar-day-cell .placeholder-msg .bi {
    font-size: 3rem;
}

/* 📅 Elmúlt napok */
.calendar-day-cell.past-cell {
    background-color: #e9ecef !important;
    border: 1px solid #dee2e6 !important;
    opacity: 0.5 !important;
    cursor: not-allowed !important;
}

.calendar-day-cell.past-cell .placeholder-msg {
    color: #6c757d !important;
}

/* ⚠️ Mai nap */
.calendar-day-cell.today-cell {
    background-color: #fff3cd !important;
    border: 1px solid #ffc107 !important;
    opacity: 0.8 !important;
}

.calendar-day-cell.today-cell .placeholder-msg {
    color: #856404 !important;
}

/* 🔴 Szabadnap */
.calendar-day-cell.day-off-cell {
    background-color: #f8d7da !important;
    border: 1px solid #dc3545 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.calendar-day-cell.day-off-cell .placeholder-msg {
    color: #721c24 !important;
}

/* ⛔ Nincs szabad időpont */
.calendar-day-cell.no-slots-cell {
    background-color: #e9ecef !important;
    border: 1px solid #ced4da !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

.calendar-day-cell.no-slots-cell .placeholder-msg {
    color: #6c757d !important;
}

/* 🟢 Van szabad időpont */
.calendar-day-cell.free-slots {
    background-color: #ffffff !important;
    border: 2px solid #28a745 !important;
    opacity: 1 !important;
    cursor: pointer !important;
}

.calendar-day-cell.free-slots:hover {
    background-color: #f0fff4 !important;
    transform: scale(1.02);
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

/* Badge stílus */
.slot-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #28a745;
    color: white;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 10px;
    font-weight: bold;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Placeholder szöveg stílus */
.placeholder-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    font-size: 12px;
    text-align: center;
    padding: 8px 4px;
}

.placeholder-msg .bi {
    font-size: 20px;
    margin-bottom: 2px;
}

/* CSS-ben */
.booking-modal-actions {
    display: flex !important;
    gap: 10px !important;
    width: 100% !important;
}

.booking-modal-actions .swal2-confirm,
.booking-modal-actions .swal2-cancel {
    flex: 1 !important;
    width: 100% !important;
}

.full-h{
  height: -webkit-fill-available !important;
}