
body {
  background: #fff none repeat scroll 0 0;
  color: #444;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  text-align: left;
  overflow-x: hidden;
  line-height: 22px;
}
a {
  transition: all 0.3s ease 0s;
  text-decoration: none !important;
  color:blue;
}

a:hover {
  color:#f8d210;
  text-decoration: none;
}

	
        .navbar {
            background-color: #004080; /* Adjust color to match the logo */
        }
        .navbar-brand img {
            max-height:75px;
            width: auto;
        }
        .navbar-nav {
            margin: 0 auto; /* Center the menu bar */
        }
        .nav-link {
            color: #ffffff !important; /* Default text color */
            font-weight: bold;
            text-decoration: none;
            padding: 8px 15px; /* Add padding for button-like appearance */
            border-radius: 5px; /* Rounded edges for hover and active states */
        }
        .nav-link:hover {
            background-color: #0056b3; /* Hover background color */
            color: #ffffff !important; /* Maintain white text on hover */
        }
        .nav-link.active {
            background-color: #ffd700; /* Active link background color (gold) */
            color: #000 !important; /* Dark blue text for contrast */
        }
        .phone-link {
            color: #ffffff;
            font-weight: bold;
            text-decoration: none; /* Remove underline */
        }
        .phone-link:hover {
            text-decoration: underline; /* Optional hover effect */
        }
		 body, html {
            margin: 0;
            padding: 0;
            height: 100%;
        }
        .carousel-item {
            height: 100vh; /* Full viewport height */
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .carousel-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2); /* Dark transparent overlay */
        }
        .carousel-caption {
            position: absolute;
            bottom: 20%;
            left: 50%;
            transform: translateX(-50%);
            text-align: center;
            color: #fff;
            z-index: 2;
        }
        .carousel-caption h1 {
            font-size: 3rem;
            text-transform: uppercase;
            animation: fadeInDown 1.5s ease-out;
        }
        .carousel-caption p {
            font-size: 1.5rem;
            animation: fadeInUp 1.5s ease-out;
        }
        .carousel-caption a {
            font-size: 1.2rem;
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            border: 2px solid #ffd700;
            border-radius: 5px;
            background: rgba(255, 215, 0, 0.8); /* Semi-transparent gold */
            animation: fadeInUp 2s ease-out;
        }
        .carousel-caption a:hover {
            background: #ffd700; /* Solid gold */
            color: #004080;
        }
        .carousel-indicators [data-bs-target] {
            background-color: #ffffff; /* White indicators */
            width: 12px;
            height: 12px;
            border-radius: 50%;
        }
        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            background-color: rgba(0, 0, 0, 0.5); /* Add darker background for control icons */
            border-radius: 50%;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
 .content-section {
            padding: 40px 0px;
            background-color: #f9f9f9; /* Light background */
        }
        .content-section h2 {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            color: #004080; /* Dark Blue */
        }
        .content-section p ul li{
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
        }
        .btn-primary {
            background-color: #ffd700; /* Gold */
            border: none;
            color: #004080; /* Dark Blue */
        }
        .btn-primary:hover {
            background-color: #f0c108; /* Darker Gold */
            color: #ffffff;
        }
.services-section {
            padding: 60px 20px;
            background-color: #f9f9f9;
        }
        .service-box {
            text-align: center;
            padding: 30px;
            border-radius: 8px;
            background: #fff;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .service-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }
        .service-box i {
            font-size: 3rem;
            color: #ffd700; /* Gold color */
            margin-bottom: 15px;
        }
        .service-box h3 {
            font-size: 1.5rem;
            color: #004080; /* Dark Blue */
            margin-bottom: 15px;
        }
        .service-box p {
            font-size: 1rem;
            color: #555;
        }
        .btn-primary {
            background-color: #ffd700; /* Gold */
            color: #004080; /* Dark Blue */
            border: none;
        }
        .btn-primary:hover {
            background-color: #f0c108; /* Darker Gold */
            color: #fff;
        }
		 .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .gallery-item img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
	  cursor:pointer;
    }
    .gallery-item:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    }
    .gallery-item .gallery-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0, 0, 0, 0.5);
      color: white;
      padding: 10px;
      text-align: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .gallery-item:hover .gallery-caption {
      opacity: 1;
    }
    .gallery-item img:hover {
      transform: scale(1.1);
    }
    .footer { width:100%!important;
            background-color: #343a40; /* Dark Gray */
            color: #fff;
            padding: 60px 20px;
        }
        .footer p a {
            color: #f8d210; /* Gold */
            text-decoration: none;
        }
        .footer p a:hover {
            color: #ffd700; /* Lighter Gold */
        }
        .footer h5 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        .footer .social-icons a {
            font-size: 1.8rem;
            margin-right: 15px;
            color: #f8d210;
        }
        .footer .social-icons a:hover {
            color: #ffd700;
        }
		.foot p{color: #fff;}
        .foot p a {
            color: #f8d210; /* Gold */
            text-decoration: none;
        }
        .foot p a:hover {
            color: #ffd700; /* Lighter Gold */
        }
		.foot {color: #fff;}
        .foot a {
            color: #f8d210; /* Gold */
            text-decoration: none;
        }
        .foot a:hover {
            color: #ffd700; /* Lighter Gold */
        }
        .back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #f8d210;
            color: #343a40;
            font-size: 1.2rem;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: none;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .back-to-top:hover {
            background-color: #ffd700;
            color: #343a40;
        }
		 .tagline {
            background-color:#003366; /* Light Gray */
            color: #fff; /* Dark Gray */
            font-size:14px;
            padding: 10px 15px;
            text-align: center;
        }
        .tagline a {
            color: #fff; /* Bootstrap Primary Blue */
            text-decoration: none;
        }
        .tagline a:hover {
            text-decoration: underline;
            color:#f8d210; /* Darker Blue */
        }
		  @media only screen and (min-width:320px) and (max-width:480px)
{.carousel-item {
            height:250px; /* Full viewport height */
            background-size: cover;
            background-position: center;
            position: relative;
        }
		.slide2{ width:100%; margin:0 auto; padding-top:100px; }
		}
		@media only screen and (min-width:481px) and (max-width:768px)
{.carousel-item {
            height:500px; /* Full viewport height */
            background-size: cover;
            background-position: center;
            position: relative;
        }}
		.slide1{ width:100%; margin:0 auto; background:#f8f7f7; }
.slide1 iframe { margin-top:100px;}
.ada { width:100%; margin:0 auto; padding:12px 0; text-align:center; color:#fff; background:#FBB118; font-size:17px;}
.ada a { color:#fff; text-decoration:none;}

  .reservation-box {
    background-color: #003366; /* Best Western dark blue */
    color: white;
    padding: 20px;
    border-radius: 10px;
  }

  .reservation-box label {
    color: #ffffff;
    font-weight: 500;
  }

  .reservation-box .form-control,
  .reservation-box .form-select {
    border-radius: 6px;
  }

  .reservation-box .btn-book {
    background-color: #005baa; /* Lighter blue from logo */
    color: white;
    font-weight: bold;
    border-radius: 6px;
    padding: 10px 20px;
  }

  .reservation-box .btn-book:hover {
    background-color: #003f7f;
  }
#more {display: none;}