@charset "utf-8";
/* CSS Document */

    /* Navbar Styling */
    .navbar {
      background: #b30000; /* Econo Lodge red */
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    }

    .navbar-brand img {
      height:75px;
    }

    .navbar-nav {
      margin: auto; /* center nav */
    }

    .navbar-nav .nav-link {
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      margin: 0 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
      color: #ffd700; /* gold hover */
    }

    .navbar-nav .nav-link.active {
      background-color: #ffd700;
      color: #b30000 !important;
      border-radius: 25px;
      padding: 8px 18px;
      font-weight: 600;
    }
.dropdown-menu {
      border-radius: 8px;
      border: none;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    }
    .dropdown-item:hover {
      background-color: #f4b41a;
      color: #fff;
    }

    .phone-btn {
      background-color: #ffd700;
      color: #b30000;
      font-weight: 600;
      border-radius: 30px;
      padding: 8px 18px;
      transition: all 0.3s ease;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phone-btn:hover {
      background-color: #fff;
      color: #b30000;
    }
    /* Hero Slider */
    .carousel-item {
      position: relative;
      height: 100vh;
      background-size: cover;
      background-position: center;
      transition: transform 1s ease, opacity 1s ease;
    }

    .carousel-inner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      color: #fff;
      text-align: center;
      animation: fadeInUp 1.2s ease;
    }

    .carousel-caption, capt {
      font-size: 3rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .carousel-caption p {
      font-size: 1.2rem;
      margin-bottom: 20px;
    }

    .btn-hero {
      background-color: #ffd700;
      color: #b30000;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

    .btn-hero:hover {
      background-color: #fff;
      color: #b30000;
    }

    /* Next/Prev Button Customization */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(255, 215, 0, 0.8);
      border-radius: 50%;
      padding: 20px;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      background-color: #ffd700;
    }
@media only screen and (min-width:320px) and (max-width:768px)
{.carousel-item {
      position: relative;
      height:250px;
      background-size: cover;
      background-position: center;
      transition: transform 1s ease, opacity 1s ease;
    }

    .carousel-inner::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .carousel-caption {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      color: #fff;
      text-align: center;
      animation: fadeInUp 1.2s ease;
    }

    .carousel-caption, capt {
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 15px;
    }

    .carousel-caption p {
      font-size:14px !important;
      margin-bottom: 20px;
    }

    .btn-hero {
      background-color: #ffd700;
      color: #b30000;
      border-radius: 30px;
      padding: 10px 25px;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
      text-transform: uppercase;
    }

    .btn-hero:hover {
      background-color: #fff;
      color: #b30000;
    }

    /* Next/Prev Button Customization */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(255, 215, 0, 0.8);
      border-radius: 50%;
      padding: 20px;
    }

    .carousel-control-prev:hover .carousel-control-prev-icon,
    .carousel-control-next:hover .carousel-control-next-icon {
      background-color: #ffd700;
    }}
    @keyframes fadeInUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Indicators (dots) */
    .carousel-indicators [data-bs-target] {
      background-color: #ffd700;
    }
    body {
      background-color: #fff9f9;
    }
    .content-section {
      background-color: #fff9f9;
      padding: 20px 0 80px 0;
    }
    .image-wrapper {
      position: relative;
      display: inline-block;
    }
    .main-image {
      border: 5px solid #c8102e;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(200, 16, 46, 0.2);
      width: 100%;
    }
    .overlay-image {
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 50%;
      border: 5px solid #f4c542;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(244, 197, 66, 0.4);
      background-color: #fff;
    }
    .content-text h1 {
      font-family: 'Poppins', sans-serif;
      font-weight: 700;
      color: #c8102e;
    }
    .content-text h5 {
      color: #f4c542;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .content-text p {
      font-family: 'Open Sans', sans-serif;
      color: #333;
      font-size: 1.1rem;
    }
    .btn-custom {
      background-color: #c8102e;
      color: #fff;
      border-radius: 30px;
      padding: 10px 25px;
      transition: all 0.3s ease;
    }
    .btn-custom:hover {
      background-color: #a50d26;
      color: #fff;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff9f9;
    }

    /* Background section with overlay */
    .highlights-bg {
      position: relative;
      background: url('doublebed.jpg') no-repeat center center/cover;
      padding: 100px 0;
    }

    .highlights-bg::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(200, 16, 46, 0.75); /* Econo Lodge red with opacity */
      z-index: 1;
    }

    .highlights-section {
      position: relative;
      z-index: 2;
      background-color: rgba(255, 255, 255, 0.95);
      border-radius: 15px;
      padding: 50px;
      max-width: 900px;
      margin: 0 auto;
      box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .highlight-title {
      font-weight: 700;
      color: #c8102e;
      margin-bottom: 30px;
      text-align: center;
    }

    .highlight-item {
      display: flex;
      align-items: center;
      gap: 15px;
      background-color: #fde8e8;
      padding: 12px 20px;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .highlight-item:hover {
      background-color: #f4c54233;
      transform: translateY(-3px);
    }

    .highlight-icon {
      background-color: #fbe1e1;
      color: #c8102e;
      font-size: 1.5rem;
      width: 45px;
      height: 45px;
      border-radius: 10px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .highlight-text {
      color: #333;
      font-weight: 500;
    }

    .highlight-text small {
      display: block;
      color: #777;
      font-size: 0.9rem;
    }

    .btn-view {
      border: 2px solid #c8102e;
      color: #c8102e;
      font-weight: 600;
      border-radius: 50px;
      padding: 10px 30px;
      transition: all 0.3s ease;
      background: #fff;
    }

    .btn-view:hover {
      background-color: #c8102e;
      color: #fff;
    }

    @media (max-width: 768px) {
      .highlight-item {
        flex: 1 1 100%;
      }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .attraction-section {
      position: relative;
      overflow: hidden;
      color: #fff;
      padding: 100px 0;
      text-align: center;
      min-height: 600px;
    }

    /* Background slides */
    .bg-slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }

    .bg-slide.active {
      opacity: 1;
    }

    /* Dark overlay */
    .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.55);
      z-index: 1;
    }

    .attraction-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    .section-title {
      color: #f4b41a;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 0.95rem;
    }

    .main-heading {
      color: #fff;
      font-weight: 800;
      font-size: 2.5rem;
      position: relative;
      margin-bottom: 40px;
    }

    .main-heading::after {
      content: "";
      display: block;
      width: 80px;
      height: 3px;
      background-color: #f4b41a;
      margin: 10px auto 0;
    }

    /* Tabs */
    .tab-nav {
      display: inline-flex;
      justify-content: center;
      gap: 25px;
      margin-bottom: 40px;
      flex-wrap: wrap;
    }

    .tab-nav a {
      text-decoration: none;
      color: #fff;
      font-weight: 600;
      position: relative;
      transition: all 0.3s ease;
    }

    .tab-nav a:hover {
      color: #f4b41a;
    }

    .tab-nav a.active {
      color: #f4b41a;
    }

    .tab-nav a.active::after {
      content: "";
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: #f4b41a;
    }

    /* Lists */
    .attraction-list {
      list-style: none;
      padding: 0;
      margin: 0 auto;
      max-width: 500px;
      text-align: left;
      font-size: 1.05rem;
      animation: fadeIn 0.8s ease-in-out;
    }

    .attraction-list li {
      margin-bottom: 8px;
      padding-bottom: 6px;
      border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 768px) {
      .main-heading { font-size: 2rem; }
      .tab-nav { gap: 15px; }
      .attraction-list { font-size: 0.95rem; }
    }
    body {
      font-family: 'Poppins', sans-serif;
      background-color: #fff;
      color: #333;
    }

    .section-title1 {
      color: #d40000;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 1px;
      font-size: 0.9rem;
    }

    .main-heading1 {
      color: #d40000;
      font-weight: 800;
      font-size: 2.2rem;
      border-bottom: 3px solid #f4b41a;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 1.5rem;
    }
	   .main-heading2 h1{
      color:#b30000 !important;
      font-weight: 800;
      font-size: 2.2rem;
      border-bottom: 3px solid #f4b41a;
      display: inline-block;
      padding-bottom: 5px;
      margin-bottom: 1.5rem;
	  text-align:center !important;
    }

    iframe {
      border: none;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.15);
      width: 100%;
      height: 350px;
    }

    .video-map-section {
      background-color: #fafafa;
    }

    body {
      font-family: 'Poppins', sans-serif;
    }

    /* Footer Styles */
    footer {
      background-color: #2b2b2b;
      color: #ddd;
      position: relative;
      padding-top: 60px;
    }

    footer h5 {
      color: #f4b41a;
      font-weight: 700;
      margin-bottom: 1rem;
    }

    footer a {
      color: #ccc;
      text-decoration: none;
      display: block;
      margin-bottom: 8px;
      transition: all 0.3s ease;
    }

    footer a:hover {
      color: #f4b41a;
      padding-left: 5px;
    }

    /* Contact Info */
    .contact-info p {
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      color: #ccc;
    }

    .contact-info i {
      color: #f4b41a;
      margin-right: 10px;
      font-size: 1.1rem;
      width: 22px;
      text-align: center;
    }

    .contact-info a.phone {
      color: #ccc;
      transition: color 0.3s ease;
    }

    .contact-info a.phone:hover {
      color: #f4b41a;
    }

    /* Social Icons */
    .social-icons a {
      display: inline-block;
      width: 38px;
      height: 38px;
      background: #d40000;
      color: #fff;
      text-align: center;
      line-height: 38px;
      border-radius: 50%;
      margin-right: 10px;
      transition: all 0.3s ease;
    }

    .social-icons a:hover {
      background: #f4b41a;
      color: #2b2b2b;
      transform: translateY(-4px);
    }

    /* Footer Bottom */
    .footer-bottom {
      border-top: 1px solid #444;
      padding: 20px 0 10px;
      text-align: center;
      color: #aaa;
      font-size: 0.9rem;
    }

    .footer-bottom a {
      color: #ccc;
      text-decoration: none;
      margin: 0 5px;
      transition: color 0.3s ease;
    }

    .footer-bottom a:hover {
      color: #f4b41a;
    }

    /* Back to Top Button */
    #backToTop {
      position: fixed;
      bottom: 25px;
      right: 25px;
      background-color: #d40000;
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 45px;
      height: 45px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.3s ease;
      z-index: 1000;
    }

    #backToTop:hover {
      background-color: #f4b41a;
      color: #2b2b2b;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f8f9fa;
    }

    .reservation-box {
      background: #fff;
      padding: 30px;
      border-radius: 20px;
      box-shadow: 0px 6px 25px rgba(0,0,0,0.1);
      max-width:1200px;
      margin: 60px auto;
    }
    .reservation-title {
      font-size: 1.8rem;
      font-weight: 700;
      color:#b30000; /* Dark Blue */
      margin-bottom: 25px;
      text-align: center;
    }
    .form-control, .form-select {
      border-radius: 12px;
      padding: 10px 15px;
      font-size: 1rem;
    }

	    .btn-book {
      background: linear-gradient(45deg, #d40000, #f4b41a);
      border: none;
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
      padding: 12px 30px;
      border-radius: 6px;
      transition: 0.3s ease;
    }

    .btn-book:hover { color: #fff !important;
      background: linear-gradient(45deg, #f4b41a, #d40000);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(212, 0, 0, 0.3);
    }
     @media (max-width: 768px) {
      .reservation-box {
        flex-direction: column;
        gap: 10px;
      }
      .reservation-box .form-control,
      .reservation-box .form-select {
        width: 100%;
      }
      .btn-book {
        width: 100%;
      }
    }
	.cont {color:#000000; text-decoration:none;}
		.cont a{color:#b30000; text-decoration:none;}
		.cont a:hover{color:#000000; text-decoration:none;}
		#more {display: none;}
		