/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
     width: 100%;
     height: 100vh;
     background-color: rgba(39, 37, 34, 0.8);
     overflow: hidden;
     padding: 0;
     margin-top: -40px;
     box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px;
     position: relative;
 }

 #hero .carousel-item {
     width: 100%;
     height: 100vh;
     background-size: cover;
     background-position: center;
     background-repeat: no-repeat;
     position: relative;
 }

 #hero .carousel-inner {
     position: relative;
     width: 100%;
     height: 100vh;
     overflow: hidden;
 }

 #hero .carousel-inner .carousel-item {
     display: none;
 }

 #hero .carousel-inner .carousel-item.active {
     display: block;
 }

 #hero .carousel-item::before {
     content: "";
     background-color: rgba(12, 11, 10, 0.5);
     position: absolute;
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
 }

 #hero .carousel-container {
     display: flex;
     justify-content: center;
     align-items: center;
     position: absolute;
     bottom: 0;
     top: 0;
     left: 0;
     right: 0;
     padding-left: clamp(24px, 4vw, 72px);
     padding-right: clamp(24px, 4vw, 72px);
 }

 #hero .carousel-content {
     text-align: center;
     width: min(760px, 100%);
 }

 #hero .hslider-text-left .carousel-container {
     justify-content: flex-start;
 }

 #hero .hslider-text-right .carousel-container {
     justify-content: flex-end;
 }

 #hero .hslider-text-left .carousel-content {
     text-align: left;
     margin-left: 0 !important;
     margin-right: auto !important;
 }

 #hero .hslider-text-right .carousel-content {
     text-align: right;
     margin-left: auto !important;
     margin-right: 0 !important;
 }

 #hero h2 {
     color: #fff;
     margin-bottom: 30px;
     font-size: 40px;
     font-family: 'Poppins';
     font-weight: 600;
     text-shadow: 1px 1px 8px black;
 }

 #hero h2 span {
     color: #ffb03b;
 }

 #hero p {
     width: 80%;
     -webkit-animation-delay: 0.4s;
     animation-delay: 0.4s;
     margin: 0 auto 30px auto;
     color: #fff;
 }

 #hero .hslider-text-left h2,
 #hero .hslider-text-left p,
 #hero .hslider-text-left .btn-menu,
 #hero .hslider-text-left .btn-get-started {
     text-align: left;
 }

 #hero .hslider-text-right h2,
 #hero .hslider-text-right p,
 #hero .hslider-text-right .btn-menu,
 #hero .hslider-text-right .btn-get-started {
     text-align: right;
 }

 #hero .hslider-text-left p {
     margin-left: 0;
     margin-right: auto;
 }

 #hero .hslider-text-right p {
     margin-left: auto;
     margin-right: 0;
 }

 @media (max-width: 991.98px) {
     #hero .carousel-container,
     #hero .hslider-text-left .carousel-container,
     #hero .hslider-text-right .carousel-container {
         justify-content: center !important;
         padding-left: 24px;
         padding-right: 24px;
     }

     #hero .carousel-content,
     #hero .hslider-text-left .carousel-content,
     #hero .hslider-text-right .carousel-content {
         width: 100%;
         text-align: center !important;
         margin-left: auto !important;
         margin-right: auto !important;
     }

     #hero .hslider-text-left h2,
     #hero .hslider-text-left p,
     #hero .hslider-text-left .btn-menu,
     #hero .hslider-text-left .btn-get-started,
     #hero .hslider-text-right h2,
     #hero .hslider-text-right p,
     #hero .hslider-text-right .btn-menu,
     #hero .hslider-text-right .btn-get-started {
         text-align: center !important;
     }

     #hero p,
     #hero .hslider-text-left p,
     #hero .hslider-text-right p {
         width: 100%;
         margin-left: auto;
         margin-right: auto;
     }
 }

 #hero .carousel-inner .carousel-item {
     transition-property: opacity;
     background-position: center top;
 }

 #hero .carousel-inner .carousel-item,
 #hero .carousel-inner .active.carousel-item-start,
 #hero .carousel-inner .active.carousel-item-end {
     opacity: 0;
 }

 #hero .carousel-inner .active,
 #hero .carousel-inner .carousel-item-next.carousel-item-start,
 #hero .carousel-inner .carousel-item-prev.carousel-item-end {
     opacity: 1;
     transition: 0.5s;
 }

 #hero .carousel-inner .carousel-item-next,
 #hero .carousel-inner .carousel-item-prev,
 #hero .carousel-inner .active.carousel-item-start,
 #hero .carousel-inner .active.carousel-item-end {
     left: 0;
     transform: translate3d(0, 0, 0);
 }

 #hero .carousel-control-next-icon,
 #hero .carousel-control-prev-icon {
     background: none;
     font-size: 30px;
     line-height: 0;
     width: auto;
     height: auto;
     background: rgba(255, 255, 255, 0.2);
     border-radius: 50px;
     transition: 0.3s;
     color: rgba(255, 255, 255, 0.5);
     width: 54px;
     height: 54px;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 #hero .carousel-control-prev,
 #hero .carousel-control-next {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     width: 60px;
     height: 60px;
     opacity: 1;
     z-index: 5;
     text-decoration: none !important;
     border-bottom: 0 !important;
     box-shadow: none !important;
 }

 #hero .carousel-control-prev::before,
 #hero .carousel-control-prev::after,
 #hero .carousel-control-next::before,
 #hero .carousel-control-next::after {
     content: none !important;
     display: none !important;
     border: 0 !important;
     background: none !important;
 }

 #hero .carousel-control-prev-icon,
 #hero .carousel-control-next-icon {
     text-decoration: none !important;
     border-bottom: 0 !important;
 }
 #hero .carousel-control-prev { left: 18px; }
 #hero .carousel-control-next { right: 18px; }

 #hero .carousel-control-next-icon:hover,
 #hero .carousel-control-prev-icon:hover {
     background: rgba(255, 255, 255, 0.3);
     color: rgba(255, 255, 255, 0.8);
 }

 #hero .carousel-indicators {
     position: absolute;
     left: 50%;
     bottom: 22px;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
     margin: 0;
     z-index: 6;
 }
 #hero .carousel-indicators button {
     width: 10px;
     height: 10px;
     border: 0;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.45);
     cursor: pointer;
     padding: 0;
 }
 #hero .carousel-indicators button.active {
     background: #ffffff;
 }

 #hero .btn-menu,
 #hero .btn-book {
     font-weight: 600;
     font-size: 13px;
     letter-spacing: 1px;
     text-transform: uppercase;
     display: inline-block;
     padding: 12px 30px;
     border-radius: 50px;
     transition: 0.5s;
     line-height: 1;
     margin: 0 10px;
     -webkit-animation-delay: 0.8s;
     animation-delay: 0.8s;
     color: #fff;
     border: 2px solid #ed3c0d;
 }

 #hero .btn-menu:hover,
 #hero .btn-book:hover {
     background: #ed3c0d;
     color: #fff;
 }

 @media (max-width: 768px) {
     #hero h2 {
         font-size: 26px;
         font-family: 'Poppins';
         font-weight: 600;
         text-shadow: 1px 1px 8px black;
     }
     #hero .carousel-control-prev { left: 10px; }
     #hero .carousel-control-next { right: 10px; }
     #hero .carousel-control-next-icon,
     #hero .carousel-control-prev-icon {
         width: 44px;
         height: 44px;
         font-size: 24px;
     }
 }

 @media (min-width: 1024px) {
     #hero p {
         width: 50%;
     }

     #hero .carousel-control-prev,
     #hero .carousel-control-next {
         width: 5%;
     }
 }

/* Metin-odaklı slayt (kendi görseli yok, zeminde sabit banner): alt başlık mobilde gizlenir, yalnızca başlık görünür */
@media (max-width: 767.98px) {
     #hero .carousel-item.hero-textonly p {
         display: none !important;
     }
 }
