/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/

      .bd-placeholder-img {
        font-size: 1.125rem;
        text-anchor: middle;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
      }

      @media (min-width: 768px) {
        .bd-placeholder-img-lg {
          font-size: 3.5rem;
        }
      }

      .b-example-divider {
        width: 100%;
        height: 3rem;
        background-color: rgba(0, 0, 0, .1);
        border: solid rgba(0, 0, 0, .15);
        border-width: 1px 0;
        box-shadow: inset 0 .5em 1.5em rgba(0, 0, 0, .1), inset 0 .125em .5em rgba(0, 0, 0, .15);
      }

      .b-example-vr {
        flex-shrink: 0;
        width: 1.5rem;
        height: 100vh;
      }

      .bi {
        vertical-align: -.125em;
        fill: currentColor;
      }

      .nav-scroller {
        position: relative;
        z-index: 2;
        height: 2.75rem;
        overflow-y: hidden;
      }

      .nav-scroller .nav {
        display: flex;
        flex-wrap: nowrap;
        padding-bottom: 1rem;
        margin-top: -1px;
        overflow-x: auto;
        text-align: center;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
      }

      .btn-bd-primary {
        --bd-violet-bg: #712cf9;
        --bd-violet-rgb: 112.520718, 44.062154, 249.437846;

        --bs-btn-font-weight: 600;
        --bs-btn-color: var(--bs-white);
        --bs-btn-bg: var(--bd-violet-bg);
        --bs-btn-border-color: var(--bd-violet-bg);
        --bs-btn-hover-color: var(--bs-white);
        --bs-btn-hover-bg: #6528e0;
        --bs-btn-hover-border-color: #6528e0;
        --bs-btn-focus-shadow-rgb: var(--bd-violet-rgb);
        --bs-btn-active-color: var(--bs-btn-hover-color);
        --bs-btn-active-bg: #5a23c8;
        --bs-btn-active-border-color: #5a23c8;
      }

      .bd-mode-toggle {
        z-index: 1500;
      }

      .bd-mode-toggle .dropdown-menu .active .bi {
        display: block !important;
      }
	  
	/* Referral Bar */
	.hm-referral {
		height: 1.5rem;
		background: #0d2542; /* Dark blue background */
		position: fixed; /* Fix the referral bar at the top of the screen */
		top: 0; /* Ensures it sticks to the top */
		width: 100%; /* Span the full width */
		z-index: 1030; /* Higher than the navbar and carousel */
		text-align: center;
		font-size: .8rem;
		line-height: 1.5rem;
		display: flex;
		justify-content: center;
		align-items: center;
		color: white;
	}

	/* Adjust navbar padding to account for the fixed top bar */
	.navbar {
		margin-top: 1.5rem; /* Push the navbar down to make room for the fixed referral bar */
		--bs-navbar-padding-y: 0.0rem !Important;
	}
	
	.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgb(1 48 95) !important;
}
	
	/* Adjust the body or any other elements */
	body {
		padding-top: 3.5rem; /* Adjust padding for both referral bar and navbar */
	}

.review-avatar {
    color: #447daa;
}

.star-rating {
    color: #447daa; /* Star color */
    font-size: 1.25rem; /* Adjust size if needed */
    margin-right: 2px; /* Space between stars */
}

.categories__link {
		font-family: 'Open Sans', sans-serif;
		font-size: .8rem;
        padding: 0 1.4rem;
        padding-top: .4rem;
		position: relative;
        display: inline-block;
        line-height: 2rem;
        letter-spacing: .0275rem;
        padding: 0 .55rem;
        padding-top: .2rem;
		text-transform: uppercase;
		color: #fff;
	    text-decoration: none;
}


.booking-button {
	font-family: 'Open Sans', sans-serif;
	font-size: .8rem;
    background-color: #4d4d4d; /* Dark gray background */
    color: white; /* White text */
    border: 1px solid transparent; /* Remove default border */
    padding: 0.2rem 1.3rem; /* Custom padding for spacing */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add some spacing between letters */
    border-radius: 0; /* No rounded corners */
    transition: background-color 0.3s ease; /* Smooth transition effect */
}

.booking-button:hover {
    background-color: #6c757d; /* Lighter gray on hover */
    color: white; /* Maintain white text on hover */
}


/* ------ Dark Mode Buttons ------ */

/* Default theme for the button */
.btn-success-custom {
    background-color: #242415 !Important; /* Success green */
	border-radius: 0 !Important; /* No rounded corners */
    color: white !Important; /* White text */
    border: 1px solid transparent !Important; /* Remove default border */
    padding: 0.2rem 1.3rem; /* Custom padding for spacing */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add some spacing between letters */
	font-family: 'Open Sans', sans-serif;
	font-size: .8rem;
}

/* Dark mode theme for the button */
[data-bs-theme="dark"] .btn-success-custom {
	border-radius: 0 !Important; /* No rounded corners */
    background-color: #000 !Important; /* Darker green for dark mode */
    color: white; /* White text */
    border: 1px solid transparent !Important; /* Remove default border */
    padding: 0.2rem 1.3rem; /* Custom padding for spacing */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add some spacing between letters */
	font-family: 'Open Sans', sans-serif;
	font-size: .8rem;
}

/* Hover and focus states for light mode */ 
.btn-success-custom:hover, 
.btn-success-custom:focus {
    background-color: #000000 !Important; /* Darken on hover for light mode */ 
    color: white !Important; 
    border: 1px solid transparent !Important; /* Remove default border */
}

/* Hover and focus states for dark mode */ 
[data-bs-theme="dark"] .btn-success-custom:hover, 
[data-bs-theme="dark"] .btn-success-custom:focus {
    background-color: #464637 !Important; /* Darken even more for dark mode hover */
    color: white;
    border: 1px solid transparent !Important; /* Remove default border */
}


/* ------ Dark Mode Buttons LRG------ */

/* Default theme for the button */
.btn-success-custom-lg {
    background-color: #242415 !Important; /* Success green */
	border-radius: 0 !Important; /* No rounded corners */
    color: white !Important; /* White text */
    border: 1px solid transparent !Important; /* Remove default border */
    padding: 0.4rem 1.6rem; /* Custom padding for spacing */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add some spacing between letters */
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
}

/* Dark mode theme for the button */
[data-bs-theme="dark"] .btn-success-custom-lg {
	border-radius: 0 !Important; /* No rounded corners */
    background-color: #000 !Important; /* Darker green for dark mode */
    color: white; /* White text */
    border: 1px solid transparent !Important; /* Remove default border */
    padding: 0.4rem 1.6rem; /* Custom padding for spacing */
    text-transform: uppercase; /* Make the text uppercase */
    letter-spacing: 1px; /* Add some spacing between letters */
	font-family: 'Open Sans', sans-serif;
	font-size: 1.2rem;
}


/* Hover and focus states for light mode */ 
.btn-success-custom-lg:hover, 
.btn-success-custom-lg:focus {
    background-color: #000000 !Important; /* Darken on hover for light mode */ 
    color: white !Important; 
    border: 1px solid transparent !Important; /* Remove default border */
}

/* Hover and focus states for dark mode */ 
[data-bs-theme="dark"] .btn-success-custom-lg:hover, 
[data-bs-theme="dark"] .btn-success-custom-lg:focus {
    background-color: #464637 !Important; /* Darken even more for dark mode hover */
    color: white;
    border: 1px solid transparent !Important; /* Remove default border */
}

.vr {
    display: inline-block;
    align-self: stretch;
    width: var(--bs-border-width);
    min-height: 6em !Important;
    background-color: currentcolor !Important;
    opacity: .25 !Important;
}

/* @VIEWPORT FOR MOBILE */

@media (max-width: 768px) {
  .horiz-img img {
    height: 18vh !Important; /* Increase height on mobile to 50% of viewport */
	width: 100% !Important;
  }
}

/* READ MORE BUTTON */

.btn-link-rm {
    text-transform: uppercase; /* Makes the text all caps */
    letter-spacing: 1px; /* Adds spacing between letters */
    font-size: .8rem; /* Sets the font size to 1rem */
    font-family: 'Open Sans', sans-serif; /* Uses Open Sans font */
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Keeps the default link color or inherited color */
    font-weight: 600; /* Adjusts the font weight for better visibility */
}

.btn-link-rm:hover {
    color: #82b4f7 !Important; /* Optional: Change hover color, adjust to preference */
    text-decoration: none; /* Ensures no underline on hover */
	border: 1px solid transparent !Important; /* Remove default border */
}
 
/* PHONE NUMBER */

.phone-link {
    text-transform: uppercase; /* Makes the text all caps */
    letter-spacing: 1px; /* Adds spacing between letters */
    font-size: .8rem; /* Sets the font size to 1rem */
    font-family: 'Open Sans', sans-serif; /* Uses Open Sans font */
    text-decoration: none; /* Removes the underline */
    color: inherit; /* Keeps the default link color or inherited color */
    font-weight: 600; /* Adjusts the font weight for better visibility */
}

.phone-link:hover {
    color: #82b4f7 !Important; /* Optional: Change hover color, adjust to preference */
    text-decoration: none; /* Ensures no underline on hover */
	border: 1px solid transparent !Important; /* Remove default border */
}


/* COMPARE */

.compare-container {
  max-width: 960px;
}

.compare-header {
  max-width: 700px;
}

