/* General styling for body, header, and footer */
body {
    margin: 0;
    font-family: Arial, sans-serif;    
}

* ::-webkit-scrollbar{
    display: none;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 25px;
    padding-bottom: 10px;
    background-color: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.title{
    position: relative;
    width: 100%;
    height: 500px;
    background: url('../assets/assets booking/title-booking.png') no-repeat center center/cover;
    margin: 0;
    padding: 0;
}

.overlay-title{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.324);
    display: flex;
    justify-content: center;
    align-items: center;
}

.text-title {
    color: white;
    background: rgba(172, 172, 172, 0.356);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
}

.text-title h1 {
    font-size: 64px;
    margin: 0;
}

.logo img {
    height: 98px;
    margin-left: 50px;
}

.navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    gap: 62px;
    align-items: center;
}

.navbar ul li:last-child{
    margin-right: 50px;
}

.navbar ul li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
    font-size: 1.5em;
}

.navbar ul li a.active{
    color: #20A8D8;
}

.navbar ul li a.active:hover{
    text-decoration: underline;
}

.navbar ul li a.nonActive:hover {
    color: #20A8D8;
}


footer {
    background-color: #404A49;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

.footer-content img {
    height: 98px;
    margin-bottom: 0px;
}

.social-icons {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icons a {
    display: flex;
    justify-content: center;
    min-width: 50px;
    align-items: center;
    margin: 15px 10px;
    color: #fff;
    text-decoration: none;
}

.social-icons img {
    height: 35px; /* Adjust the size of the icons here */
    margin-right: 5px; /* Add some space between the icon and text */
}

.social-icons a:hover {
    text-decoration: underline;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 10px;
    padding: 0;
}

.footer-nav ul li{
    width: 133px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5em;
}

.footer-nav ul li a:hover {
    text-decoration: underline;
}

#trademarks{
    margin: 0;
    font-size: 1.2em;
}

/* Main content styling */
/* main { */
    /* padding: 20px; */


/* Section */
.facilityDetailContainer{
    display: flex;
    align-items: center;
    margin: 95px;
    gap: 45px;
}

.imageContainer{
    position: relative;
    max-height: 534px;
    max-width: 581px;
}

.discButtons{
    display: flex;
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, -50%);
    gap: 15px;
}

.discButtons .disc{
    width: 36px;
    height: 38px;
    background-image: url('../assets/assets global/DiscUnactive.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: pointer;
}

.discButtons .disc:hover{
    background-image: url('../assets/assets global/DiscHover.png');
}

.discButtons .disc.active-disc{
    background-image: url('../assets/assets global/DiscActive.png');
}

.facilityDetailContainer h1{
    font-size: 2.5em;
    margin-top: 10px;
}

.facilityDetailContainer p{
    font-size: 1.5em;
    word-spacing: 5px;
}

.infosFacilityContainer{
    display: flex;
    flex-direction: column;
}

.infosFacility{
    display: flex;
    align-items: center;
    gap: 35px;
    min-height: 104px;
}

.infosFacility img{
    width: 48px;
    height: 60px;
    object-fit: contain;
}


.facilities-section {
    position: relative;
    text-align: center;
    margin: 60px 0;
    padding: 0 80px;
    margin-bottom: 80px;
}

.facilities-section h2 {
    display: flex;
    gap: 74px;
    align-items: center;
    justify-content: space-between;
    font-size: 2.5em;
    color: #015581;
}

.facilities-section h2 span {
    flex: 1;
    height: 3px;
    max-width: 406px;
    background-color: #20A8D8;
    margin: 0 10px;
}

.carousel {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.carousel-slide {
    display: flex;
    min-width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.carousel-item {
    width: 50%;
    padding: 10px;
    box-sizing: border-box;
    color: #32766E;
}

.carousel-item img {
    width: 100%;
    height: 300px; /* Tinggi gambar disesuaikan */
    object-fit: cover; /* Gambar akan menyesuaikan ukuran kontainer tanpa merubah rasio aspek */
    display: block;
}

.status{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.status img{
    width: 37px;
    height: 37px;
}

.status p{
    font-size: 1.7em;
    margin: 0;
}

.detail-btn {
    margin-top: 20px;
    padding: 20px 60px; /* Adjust padding to make the button larger */
    background-color: #fff; /* Background color white */
    color: #32766E; /* Border and text color */
    border: 5px solid #015581; /* Border color and width */
    border-radius: 10px; /* Optional: Add border radius for rounded corners */
    font-size: 2em; /* Adjust font size if needed */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease; /* Transition for smooth hover effect */
}

.detail-btn-closed {
    margin-top: 20px;
    padding: 20px 60px; 
    color: #32766E; 
    border: 0 solid;
    border-radius: 10px; 
    font-size: 2em; 
    background-color: #B6B6B6 !important;
    cursor: not-allowed;
    transition: background-color 0.3s ease, color 0.3s ease; 
}


.detail-btn:hover {
    background-color: #015581;
    color: #fff;
}

.prev-btn, .next-btn {
    position: absolute;
    transform: scale(0.9);
    background-color: rgba(0, 0, 0, 0);
    color: #fff;
    border: none;
    padding: 5px; /* Reduced padding */
    cursor: pointer;
    z-index: 100; /* Ensure z-index is high enough */
    width: 40px; /* Reduced width */
    height: 50px; /* Reduced height */
    background-size: cover;
    background-position: center;
}

.prev-btn:hover:hover, .next-btn:hover {
    transform: scale(1.2); /* Enlarge icon on hover */;
}

.prev-btn {
    top: 35%;
    left: 20px;
    background-image: url('../assets/assets homepage/Property\ 1=ArrowLeft.png');
}

.next-btn {
    top: 35%;
    right: 20px;
    background-image: url('../assets/assets homepage/Property\ 1=ArrowRight.png');
}

.prev-btn:hover {
    background-image: url('../assets/assets homepage/Property\ 1=ArrowLeftClicked.png');
}

.next-btn:hover {
    background-image: url('../assets/assets homepage/Property\ 1=ArrowRightClicked.png');
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.dot{
    cursor: pointer;
    width: 33px;
    height: 33px;
    background-image: url('../assets/assets global/DiscUnactive.png');
}

.active-dot {
    background-image: url('../assets/assets global/DiscActive.png') !important;
}

.dot:hover{
    background-image: url('../assets/assets global/DiscHover.png');
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

body.slide-1 {
    background-color: #fff; /* Ganti dengan warna latar belakang yang sesuai dengan slide 1 */
}

body.slide-2 {
    background-color: #fff; /* Ganti dengan warna latar belakang yang sesuai dengan slide 2 */
}

/* Pop-up Styles */
.popup-container {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    transform: translateY(135px);
    /* width: 100%; */
    /* height: 60%; */
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .popup-content {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  .profile-info {
    display: flex;
    align-items: center;
  }
  
  .profile-image {
    width: 75px;
    border-radius: 50%;
    margin-right: 20px;
  }
  
  .profile-details {
    display: flex;
    flex-direction: column;
  }
  
  .profile-name {
    font-weight: bold;
    margin-top: 0;
  }
  
  .profile-nim {
    color: black;
    margin: 0;
  }
  
  .profile-options,
  .profile-logout {
    margin-top: 10px;
  }
  
  .profile-option,
  .profile-logout {
    display: flex;
    align-items: center;
    margin: 10px 0;
    padding-left: 10px;
  }
  
  .option-icon {
    height: 36px;
    object-fit: contain;
    margin-right: 36px;
  }
  
  .option-text {
    cursor: pointer;
  }
  
  .profile-option a {
    text-decoration: none;
    color: black;
  }
  
  hr {
    border: none;
    border-top: 1px solid black;
    margin: 10px 0;
  }