@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}
body {
    display: flex;
    flex-direction: column;
    height:100vh;
    overflow-x:hidden;
}
a {
    color:#EC3158;
}
a:hover {
    text-decoration: underline;
    color:#EC3158;
}
.input-styling {
    border: none;
    border-radius: 0.5rem;
    padding-left: 1rem;
    width: 100%;
    height: 3rem;
}
.custom-font-weight {
    font-weight: 700;
}

/*Navigation bar styling*/
.nav-list {
    margin:0;
    padding:1rem 0;
    display:flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}
.nav-item {
    list-style:none;
    margin: 0.5rem;
    padding: 0 1rem;
}
.btn-nav {
    background-color:#fff;
    border: 1px solid #DCDCDC;
    border-radius: 0.5rem;
    color: #50396F;
    padding: 0.5rem 1rem;
    transition: all 250ms ease-in;
}
.btn-nav:hover {
    background-color:#50396F;
    color:#fff;
}
.btn-nav.active {
    background-color:#50396F;
    color:#fff;
}

.room-cart-divider {
    border: 1px solid #d3d3d3; 
    width:100%;
}

/*Horizontal line styling*/
.full-width-hr {
    border: 0;
    height: 1px;
    background: #E4E4E4;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw; 
}

/*Booking date section*/
.booking-date-section {
    margin: 2rem 1rem;
    padding: 1rem 0;
    background-color: #F3F3F3;
    border-radius: 0.5rem;
}
#checkin-date, #checkout-date {
    font-size: 1.3rem;
    padding: 0 1rem;
}

/*Room card section*/
.room-card-container {
    margin: 1.5rem 1rem;
    border: 1px solid #BBBBBB;
    border-radius: 2rem;
    height:auto;
}
.room-card-img .roomCarousel {
    height:100%;
}
.carousel-inner {
  overflow: hidden;
  border-top-left-radius: 2rem; /* Apply border-radius to the images if needed */
  border-bottom-left-radius: 2rem; /* Adjust the value for desired rounding */
}

.carousel-item img.room-img-disp {
  border-top-left-radius: 2rem; /* Apply border-radius to the images if needed */
  border-bottom-left-radius: 2rem; /* Ensure images have the same radius as the container */
}
/* .room-card-container .room-card-img {
    display: flex;
    align-items: stretch;
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
}
.room-card-container img {
    border-top-left-radius: 2rem;
    border-bottom-left-radius: 2rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
} */
.room-card-img .carousel-inner {
    display: flex;
    align-items: stretch;
    height: 100%; /* Ensure the inner carousel takes the full height of its parent */
}

.room-card-img img {
    height: 100%; /* Makes the image stretch to fill the height */
    width: 100%;  /* Makes the image stretch to fill the width */
    border-top-left-radius: 2rem; /* Apply border-radius to the images if needed */
    border-bottom-left-radius: 2rem; /* Apply border-radius to the images if needed */
}
.room-card-content {
    display: flex;
    flex-direction: column;
    padding: 1rem;
}
.room-content-wrapper {
    flex-grow: 1;
}
.main-room-facilities-list {
    margin-bottom: 0.5rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.sub-room-facilities-list {
    margin-bottom: 2rem;
    margin-left: 1rem;
    padding: 0;
}
.main-facilities-items {
    list-style: none;
    padding-right: 0.5rem;
    flex: 0 0 calc(33.333% - 1rem);
    display: flex;
    align-items: center;
}
/*.main-facilities-items:last-child {*/
  /*flex: 0 0 100%; */
/*}*/
.sub-facilities-items {
    margin-left: 1rem;
    padding-right: 0.5rem;
}
.room-content-wrapper-bottom-outer {
    display: flex;
    justify-content: space-between;
}
.room-content-wrapper-bottom-inner {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
}
.btn-room-quantity {
    background-color:#227950;
    color:#fff;
    outline: none;
    border: none;
    border-radius: 0.5rem;
    padding: 0.1rem 2rem;
}
.add-to-cart-btn {
    align-self: flex-end;
    margin-top: 1rem;
    padding: 0.3rem 1rem;
    border-radius: 0.5rem;
    background-color: #EC3158;
    border:none;
    color: #fff;
}
.add-to-cart-btn:disabled {
    background-color: #f792a8;
}
.add-to-cart-btn:not(:disabled):hover {
    background-color:#e71240;
}
.add-to-cart-btn.active {
    border: none;
    background-color:#e71240;
    color: #fff;
}
.expand-popup-btn {
    color: #EC3158;
    cursor: pointer;
}
.expand-popup-btn:hover {
    text-decoration: underline;
    color:#EC3158;
}
.room-icons {
    margin-right: 0.5rem;
}
.extras-btn {
    background-color: #EC3158;
    color:white;
}
.extras-btn:hover {
    color:white;
}
.checkbox-container {
    display:none;
}

/*Order cart section*/
.carted-items {
    display: flex;
    align-items: center;
    /* padding: 2rem; */
    background-color:white;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}
.carted-items .carted-item-details, .carted-additional-item-details {
    padding-left: 1rem;
    display:flex;
    width:100%;
}
.carted-items .carted-room-rate, .additional-item-rate { 
    margin-left:auto;
}
.room-cart-section {
    margin: 2rem 1rem;
    padding: 1rem 1rem;
    /* background-color: #F3F3F3; */
    border-radius: 0.5rem;
}
.rounded-img {
    border-radius: 0.5rem;
}
.room-cart-container {
    padding: 0;
}
.proceed-checkout-btn {
    border-radius: 0.3rem;
    padding: 0.5rem 1rem;
    border: none;
    background-color: #5c417e;
    color:#fff;
    font-weight: 600;
}
.proceed-checkout-btn:hover {
    background-color: #50396F;
}
.proceed-checkout-btn:disabled {
    background-color: #dcc8f5;
}
.cart-total {
    margin-right: 1rem;
}

/*Room checkout section*/
.room-checkout-container {
    margin:2rem 1rem;
    background-color: #F3F3F3;
    padding: 1rem 1rem;
    border-radius: 0.5rem;
}

/*Guest details section*/
.guest-section {
    padding: 1rem;
}

/*Order summary section*/
.order-summary-section {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem;
    align-self: flex-start;
}
.order-summary-details {
    display:flex;
    justify-content: space-between;
}
.order-summary-title {
    color:#888888;
}
.checkout-btn {
    width: 100%;
    border-radius: 0.3rem;
    margin-top: 2.5rem;
    padding: 1rem;
    border: none;
    background-color: #50396F;
    color:#fff;
    font-weight: 600;
}
.checkout-btn:disabled {
    background-color: #dcc8f5;
}
.promo-input {
    border: none; /* Removes default border */
    padding: 12px;
    height: 50px; /* Adjust height */
}
.promo-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none;
}
.apply-btn {
    border: none;
    background: none;
    color: #50396F; /* Bootstrap primary color */
    font-weight: bold;
    cursor: pointer;
    padding: 0 10px;
}
.apply-btn:hover {
    text-decoration: underline;
}
.apply-btn:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none;
}
.promo-container {
    display: flex;
    align-items: center;
    border: 1px solid #ccc; /* Match input border */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures smooth edges */
}
.promo-cta {
    cursor: pointer;
    color: #50396F;
}
.promo-cta:hover {
    text-decoration: underline;
}
.discount-tag-container {
    display: flex;
    align-self: flex-start;
}
.discount-tag {
    background-color: #F6F6F6;
    padding: 0.5rem 0.2rem 0.5rem 1rem;
    border-radius: 0.3rem;
}
.remove-discount {
    background: none;
    border: none;
    cursor: pointer;
    padding-left: 0.5rem;
}
/*Custom bootstrap modal styling*/
.modal-dialog-scrollable .modal-body {
    max-height: 500px;
    overflow-y: auto;
}

/*Form validation styling*/
.border-red {
    border: 1px solid red;
}
.error-message {
    margin-top: 5px;
    font-size: 0.875em;
}

/*Payment success animation*/
.checkmark__circle{stroke-dasharray: 166;stroke-dashoffset: 166;stroke-width: 2;stroke-miterlimit: 10;stroke: #7ac142;fill: none;animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards}
.checkmark{width: 56px;height: 56px;border-radius: 50%;display: block;stroke-width: 2;stroke: #fff;stroke-miterlimit: 10;margin: 5% auto;box-shadow: inset 0px 0px 0px #7ac142;animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both}
.checkmark__check{transform-origin: 50% 50%;stroke-dasharray: 48;stroke-dashoffset: 48;animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards}
@keyframes stroke{100%{stroke-dashoffset: 0}}
@keyframes scale{0%, 100%{transform: none}50%{transform: scale3d(1.1, 1.1, 1)}}
@keyframes fill{100%{box-shadow: inset 0px 0px 0px 30px #7ac142}}

.home-btn {
    width: 50%;
    border-radius: 0.3rem;
    margin-top: 2.5rem;
    padding: 1rem;
    border: none;
    background-color: #5c417e;
    color:#fff;
    font-weight: 600;
}
.home-btn:hover {
    background-color: #50396F;
}
.booking-confirm-text {
    color:#EC3158;
}

/*Homepage section*/

.homepage-section {
    margin: 2rem 1rem;
    padding: 1rem 0;
}
.homepage-text {
    color:#EC3158;
    font-weight:600;
}
.homepage-title-text {
    color:#50396F;
}
.arrow-icon {
    cursor: pointer;
}
.read-more {
    display:none;
}
.extend-read-more {
    cursor:pointer;
    color:#EC3158;
    font-weight:600;
}

/*Host section*/
.box {
    width: 150px;
    height: 150px;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px RGBA(80, 57, 111, 0.8);
    transition: transform 0.2s;
}

.box:hover {
    transform: translateY(-5px);
}

.icon {
    font-size: 32px;
    color: #333;
}
.card {
  background-color: #50396F; /* Purple background */
  color: white;
  border-radius: 15px;
  padding-top: 60px; /* Extra padding to make space for the circle */
}
.circle {
  width: 90px;
  height: 90px;
  background-color: #c0c0c0; /* Gray color for the circle */
  border-radius: 50%;
  position: absolute;
  top: -30px; /* Positioned to overlap */
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid #50396F; /* Border to match the card background */
  background-size: cover; /* Ensures the image covers the circle */
  background-position: center; /* Centers the image within the circle */
  background-repeat: no-repeat; 
}
.testimonial-name {
  margin-top: 30px; /* Spacing between the circle and the name */
  font-size: 1rem;
}
.testimonial-content {
  font-size: 0.875rem;
  line-height: 1.5;
}
.small-text {
    font-weight:600;
    color: #50396F;
}
.host-action {
    color:#EC3158;
}
.host-action:hover {
    text-decoration: underline;
    color:#EC3158;
}
.property-assessment-btn {
    border-radius: 0.3rem;
    padding: 1rem 1rem;
    margin: 1rem 0;
    border: none;
    background-color: #5c417e;
    color:#fff;
    font-weight: 600;
}

.property-assessment-btn:hover {
    background-color: #50396F;
}

/*Counter section*/

#decrease, #increase {
    border-radius: 0.3rem;
    background-color: #EC3158;
    margin: 0 0.3rem;
    color: white;
    font-size: 20px;
}

#counter {
    font-size: 15px;
}

.decrease-bf, .increase-bf {
    border-radius: 0.3rem;
    background-color: #EC3158;
    margin: 0 0.3rem;
    color: white;
    font-size: 15px;
}

.counter-bf {
    font-size: 15px;
}

.decrease-dinner, .increase-dinner {
    border-radius: 0.3rem;
    background-color: #EC3158;
    margin: 0 0.3rem;
    color: white;
    font-size: 15px;
}

.counter-dinner {
    font-size: 15px;
}

/*Footer text color*/
.footer-title {
  color: #EC3158;
}

@media (max-width: 992px) {
    /*Navigation bar styling*/
    .navbar-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    /*Room card section*/
    /*.room-card-container img {*/
    /*    border-top-left-radius: 2rem;*/
    /*    border-bottom-left-radius: 0;*/
    /*    border-top-right-radius: 2rem;*/
    /*    border-bottom-right-radius: 0;*/
    /*}*/
    .room-content-wrapper-bottom-outer {
        flex-direction:column;
    }
    .add-to-cart-btn {
        align-self: flex-start;
        margin-bottom:1rem;
    }
    .room-content-wrapper-bottom-inner {
        align-items: flex-start;
    }

    /*Order cart section*/
    .carted-items .carted-item-details {
        flex-direction: column;
        width: 100%;
        padding: 0;
    }
    .carted-items .carted-room-rate{ 
        margin-left: 0;
    }
    .carousel-inner {
      overflow: hidden;
      border-top-left-radius: 2rem; /* Apply border-radius to the images if needed */
      border-top-right-radius: 2rem; /* Adjust the value for desired rounding */
    }
    
    .carousel-item img {
      border-top-left-radius: 2rem; /* Apply border-radius to the images if needed */
      border-top-right-radius: 2rem; /* Ensure images have the same radius as the container */
    }
}