/*  ============
    CSS VÁLTOZÓK 
    ============  */
:root {
  --primary-color: #f2415b;
  --primary-hover-color: #ff6666 ;
  --footer-hover-color-red: #CE5050;
  --main-page-background-color: #f7f8f9;
  --secondary-color: #FFAA01 !important;
  --light-red-color: #fddfe4;
  --dark-red-color: #e02121;
}
* {
  font-family: "Quicksand", sans-serif !important;
}

/*  =================
    HEADER WIDGET_001 
    =================  */

/* SZÖVEG KIJELÖLÉS */
::selection {
  color: white !important;
  background: var(--footer-hover-color-red) !important;
}
/* NAVBAR LINK HOVER */
.nav-link {
  color: #4f5962 !important;
  margin-left: 10px;
  margin-right: 10px;
  font-size: 14px !important;
  line-height: 30px;
  font-weight: 700 !important;
}
.nav-link:hover {
  color: #e02121 !important;
}
/* DROP DOWN MENÜ */
@media only screen and (min-width: 992px) {
  .dropdown:hover .dropdown-menu {
    position: absolute;
    display: block;
    border: none;
    box-shadow: 0px 0px 10px -6px;
    padding-bottom: 5px;
    padding-top: 5px;
  }
  .custom-border-lg {
    border-bottom: 1px solid #d8dce1;
  }
}
.custom-icon-ul li a i{
  margin-right: 15px;
}
.custom-icon-ul li a {
  font-weight: 600;
}
.custom-sticky-navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: white;
  z-index: 9999;
}

/*  =========
    MAIN PAGE 
    =========  */
/* Hírdetés */
.main-page-background-color {
  background-color: var(--main-page-background-color);
}
/* Kutyás videó a háttérben */
.button-pulse-hover {
  transition: transform 0.3s ease;
}
.button-pulse-hover:hover {
  animation: pulse 0.7s infinite;
}
@keyframes pulse {
  0% {
      transform: scale(1);
  }
  50% {
      transform: scale(1.05);
  }
  100% {
      transform: scale(1);
  }
}
.owl-dot {
  background-color: black !important;
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.owl-carousel .owl-nav:hover {
  --cnvs-owl-nav-bg: #f46177 !important;
}
/* Hírlevél */
.newsletter-section input[type="email"] {
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
}
.newsletter-section .btn-subscribe {
  background-color: var(--primary-color);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  color: white;
}
.newsletter-section .btn-subscribe:hover {
  background-color: #ff6666;
}
@media only screen and (min-width: 992px) {
  #newsletter-box {
    padding-left: 18vw;
    padding-right: 18vw;
  }
}
.newsletter-button {
  background-color: #f2435d !important;
  color: white !important;
  width: 100% !important;
}
.newsletter-button:hover {
  background-color: #f58d9d !important;
}
.terms-of-use-link,
.terms-of-use-link a {
  color: white !important;
  transition: all 0.5s;
}
.terms-of-use-link:hover,
.terms-of-use-link:hover a {
  color: var(--secondary-color) !important;
}
.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}
.form-check-input {
  background-color: white !important;
  border-color: white !important;
}
/* BANNER */
.hero-section {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  position: absolute;
  left: 0;
  top: 0;
  background-image: url('/img/02_SLIDER.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
}
@media only screen and (min-width: 768px) {
  .hero-section {
    height: 700px;
  }
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.search-box {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.search-box input,
.search-box select,
.search-box button {
  height: 44px;
  border-radius: 5px;
  width: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.search-box input:focus {
  border-color: var(--primary-color) !important;
  box-shadow: var(--primary-color) !important;
}
.search-box button {
  font-size: 15px !important;
  background-color: var(--primary-color) !important;
  border: none;
  border-radius: 5px;
  color: white;
  font-weight: 700;
}
.search-box button:hover {
  background-color: var(--primary-hover-color) !important;
}
.guests-dropdown {
  width: 250px !important;
  position: absolute;
  top: 110%;
  right: 50%;
  transform: translateX(50%);
  background-color: #fff;
  color: #000;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 5;
}
@media only screen and (min-width: 992px) {
  .guests-dropdown {
    right: 26%;
  }
}
.guests-dropdown.active {
  display: block;
}
.guest-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.guest-option:last-child {
  margin-bottom: 0;
}
.guest-option span {
  font-size: 1rem;
}
.guest-option button {
  background-color: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  color: white;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.guest-option button:hover {
  background-color: #ff6666;
}
/* COOL CARD CAROUSEL */
.custom-button-hover:hover {
  background-color: #f2415b !important;
  color: white !important;
}
/* ACCOMMODATION */
.custom-carousel-image {
  transition: all 0.3s;
}
.custom-hover-effect:hover img {
  transform: scale(1.05);
}
.changing-word {
  display: inline-block;
  color: #ff6363 !important;
  animation: fadeInOut 3s infinite;
  font-weight: 700;
}
@keyframes fadeInOut {
    0%, 100% {
      opacity: 0;
      transform: scale(0) translateY(50px);
  }
  10%, 90% {
      opacity: 1;
      transform: scale(1) translateY(0);
  }
}
/* ADDITIONAL-ACCOMMODATIONS */
.zoom-effect-area {
  overflow: hidden;
  position: relative;
  height: 235px;
}
.zoom-effect-area img {
  height: 235px;
  width: 100%;
  transition: all 0.3s;
}
.card:hover .zoom-effect-area:hover img {
  transform: scale(1.05);
}
.zoom-effect-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.05) 65%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.6) 90%,
    rgba(0, 0, 0, 0.8) 100%
  );
}
.card:hover .zoom-effect-area::after {
  opacity: 0.5;
}
.additional-accommodation-card-link-hover {
  color: black;
  transition: 0.3s;
}
.additional-accommodation-card-link-hover:hover {
  color: var(--primary-color) !important;
}

/* CUSTOM-CAROUSEL */
.circle-button-left,
.circle-button-right {
  border-radius: 50%;
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  transition: all 0.3s;
  color: white;
}
.circle-button-left:hover,
.circle-button-right:hover {
  background-color: #f58d9d;
  cursor: pointer;
}
.circle-button-left i {
  font-size: 12px;
  position: relative;
  top: 18%;
  left: 33%;
  transform: rotate(-90deg);
}
.circle-button-right i {
  font-size: 12px;
  position: relative;
  top: 18%;
  left: 33%;
  transform: rotate(90deg);
}
.rounded-box {
  width: 180px;
  height: 30px;
  position: relative;
  top: 5px;
  border-radius: 15px;
  display: flex;
  background-color: white;
  margin-left: 10px;
  margin-right: 10px;
  border: 1px solid #f7f8f9;
  box-shadow: 0 0 10px -6px;
}
.custom-carousel-dot {
  position: relative;
  margin-left: 10px;
  margin-right: 10px;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #f58d9d;
  border-radius: 50%;
}
.custom-carousel-dot:hover {
  border: 2px solid transparent;
  outline: 3px solid #ff6666;
  outline-offset: 2px;
  cursor: pointer;
}
.custom-active {
  background-color: #ff6666;
  border: 2px solid transparent;
  outline: 3px solid #ff6666;
  outline-offset: 2px;
}
.badge {
  width: auto;
  height: 22px;
  border-radius: 11px !important;
  position: absolute;
  z-index: 2;
  transition: all 0.3s;
}
.cl-white-hover-black {
  background-color: white !important;
  color: black !important;
}
.cl-white-hover-black:hover {
  background-color: black !important;
  color: white !important;
}
.cl-red {
  background-color: #dd3333 !important;
  color: white;
}
.cl-red:hover {
  background-color: var(--primary-color) !important;
  color: white;
}
.cl-white-hover-red {
  background-color: white !important;
  color: var(--primary-color) !important;
}
.cl-white-hover-red:hover {
  background-color: var(--primary-color) !important;
  color: white !important;
}
.badge-circle {
  border-radius: 50% !important;
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 2;
  transition: all 0.3s;
}
.badge-circle i {
  font-size: 20px;
  transform: translateX(6px);
}
.custom-border-radius {
  border-radius: 15px;
}

/*  =================
    FOOTER WIDGET_001 
    =================  */
.footer-ul {
  list-style-type: none;
  padding-left: 0px;
}
.footer-ul li {
  margin-bottom: 10px;
}
.footer-ul li a {
  text-decoration: none;
  color: #000;
  transition: color 0.15s;
}
.footer-ul li a:hover, .footer-ul li a:hover i {
  color: var(--footer-hover-color-red);
}
.footer-link-hover {
  text-decoration: none;
  color: #000;
  transition: color 0.15s;
}
.footer-link-hover:hover {
  color: var(--footer-hover-color-red);
}
.footer-image-gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(120, 120, 120, 0.5), rgba(120,120,120, 0.1));
  pointer-events: none; /* Az overlay nem befolyásolja a kattintásokat */
}
.footer-link-underline-hover:hover {
  text-decoration: underline !important;
}

/* Kutyás kalandok */
.custom-svg-sizing {
  height: clamp(1.5rem, 4vw, 4rem) !important;
}
.custom-header-sizing {
  font-size: clamp(1.5rem, 4vw, 4rem) !important;
  white-space: pre;
}

.archivo-800 {
  font-family: "Archivo", sans-serif !important;
  font-optical-sizing: auto;
  font-weight: 800;
  font-style: normal;
  font-variation-settings:
      "wdth" 100;
}
.dog-adventures-overlay {
  transition: all 1.5s ease;
}
.dog-adventures-image-zoom:hover .dog-adventures-overlay {
  background-color: #0201013a !important;
}
.dog-adventures-button {
  color: white;
  padding-left: 17px;
  padding-right: 17px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fc4e4e !important;
  border-radius: none !important;
  border-width: 1px !important;
  border-style: solid;
  border-color: white !important;
  transition: all 0.4s ease;
}
.dog-adventures-button:hover {
  color: #ff0000;
  background-color: black !important;
  border-color: #ff0000 !important;
}
.dog-adventures-image-zoom h3,
.dog-adventures-image-zoom h5 {
  position: relative;
  top: 6vw;
}
.dog-adventures-image-zoom img,
.dog-adventures-image-zoom h3,
.dog-adventures-image-zoom h5 {
  transform: scale(1.0);
  transition: all 1.5s ease;
}
.dog-adventures-image-zoom:hover img {
  transform: scale(1.2);
}
.dog-adventures-image-zoom:hover h3,
.dog-adventures-image-zoom:hover h5 {
  transform: scale(1.1);
}
@media only screen and (max-width: 992px) {
  .dog-adventures-image-zoom h3,
  .dog-adventures-image-zoom h5 {
    position: relative;
    top: 40%;
  }
}
.line {
  transform: translateX(110%);
}
@media only screen and (max-width: 1200px) {
  .line {
      transform: translateX(20%);
  }
}

/* Észak MO */
.north-hungary-image-zoom img {
  transform: scale(1.0);
  transition: all 1.5s ease;
}
.north-hungary-image-zoom:hover img {
  transform: scale(1.2);
}
.north-hungary-overlay {
  transition: all 1.5s ease;
}
.north-hungary-image-zoom:hover .north-hungary-overlay {
  background-color: #0201013a !important;
}
/* Gomb és animáció */
.north-hungary-button {
  border-bottom: 1px black solid;
  padding-bottom: 5px;
  fill: #212121;
  color: #212121;
  background-color: #f7f7f7 !important;
  transition: all 0.4s ease;
  display: inline-block;
  position: relative;
}
.north-hungary-button:hover {
  color: #FF4747;
  fill: #FF4747;
  animation: custom-bounce 0.7s ease !important;
}
@keyframes custom-bounce {
  0% {
      transform: translateY(0);
  }
  25% {
      transform: translateY(7px);
  }
  50% {
      transform: translateY(-5px);
  }
  75% {
      transform: translateY(2px);
  }
  100% {
      transform: translateY(0);
  }
}



.custom-select {
  position: relative;
  display: inline-block;
  width: auto;
  min-width:100px;
}

.select-selected {
  background-color: white;
  cursor: pointer;
  width: auto;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
  padding-left: 10px; padding-right: 10px; margin-left: -10px; margin-right: -10px;
  border-radius: 5px;
}

/* Dropdown items */
.select-items {
  transform: translateX(-10px);
  position: absolute;
  background-color: white;
  border: 1px solid var(--primary-color);
  width: 100%;
  box-sizing: border-box;
  z-index: 99;
  display: none;
  max-height: 200px; /* Set max height */
  overflow-y: auto;  /* Enable vertical scrolling */
}

.select-items div {
  padding: 10px;
  cursor: pointer;
}

.select-items div:hover {
  background-color: var(--primary-color);
  color: white;
}

.select-items.show {
  display: block;
}

.custom-button{
  background-color: var(--primary-color) !important;
  color: white !important;
  width: 100% !important;
}

.custom-button:hover {
  background-color: var(--primary-hover-color) !important;
  color: white !important;
}

.custom-inputs:focus {
  outline: none;
  box-shadow: 0 0 5px var(--primary-hover-color) !important;
  border-color: var(--primary-hover-color) !important;
}