@charset "utf-8";
/* CSS Document */
.bg-stone-100 {
    --tw-bg-opacity: 1;
 background: url("../img/body-bg.png") center center / cover no-repeat!important;
	
}

.shadow

{

background:#fff!important;

}


.facilities-bg

{
  --tw-bg-opacity: 1;
 background: url("../img/facilities-bg.png") center center / cover no-repeat!important;
	

}

.facilities-bg-pet

{
  --tw-bg-opacity: 1;
 background: url("../img/pet-friendly.jpg") center center / cover no-repeat!important;
	

}



.bg-teal-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(0 62 126)!important;
   
}

.bg-red-600 {
    --tw-bg-opacity: 1;
    background-color: rgb(0 62 126)!important;
    border: 3px solid!important;
}


.text-teal-700 {
    --tw-text-opacity: 1;
    color: #fff!important;
}
.attr

{
	
  border-top: 5px solid #333; /* adjust width and color as needed */
	
}

.font-class

{
	font-size:17px!important;
}

.facility-font {
    --tw-text-opacity: 1;
    color: #000!important;
    font-weight: 600!important;
}

.attraction-img-bg

{
  --tw-bg-opacity: 1;
 background: url("../img/attraction-img.jpg") center center / cover no-repeat!important;
	

}

.attraction-font {
    --tw-text-opacity: 1;
    color: #fff!important;
    font-weight: 600!important;
}

.attraction-text {
    --tw-text-opacity: 1;
    color: #003e7e!important;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #003e7e8f;
  color: white;
  text-align: center;
  padding: 15px;
  z-index: 1000;
  display: none;
  font-size: 14px;
  line-height: 1.5;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.cookie-banner button {
  margin-left: 10px;
  padding: 6px 12px;
  background-color: #003e7e8f;
  border:1px solid;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.bottom-6 {
    bottom: 11rem!important;
}

.title-tag

{
	color: rgb(30 58 138 / var(--tw-text-opacity, 1));
}
/* Full Amenities Section */
.luxury-amenities-section {
  padding: 40px 5% 100px;
  background: #f7f7f7; /* Light background for contrast */
  text-align: left;
  position: relative;
}

/* Full Amenities Container */
.luxury-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Title Section */
.luxury-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.luxury-section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #00309f; /* Blue color for the title */
  line-height: 1.2;
  margin: 0;
  padding-bottom: 10px;
  text-transform: uppercase;
  border-bottom: 2px solid #ffff00; /* Yellow underline */
}

.luxury-section-title h2 br {
  display: block;
  margin: 0 auto;
  line-height: 1.2;
}

/* Section Titles */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #00309f;
  margin-bottom: 20px;
  text-transform: uppercase;
  border-bottom: 2px solid #ffff00;
  padding-bottom: 10px;
}

/* Amenity List */
.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Two columns */
  gap: 10px;
}

.amenity-list li {
  font-size: 18px;
  color: #333; /* Dark gray text */
  padding-left: 35px;
  position: relative;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

/* Icon Style */
.amenity-list li i {
  font-size: 22px;
  color: #00309f; /* Blue for icons */
  position: absolute;
  left: 0;
}

/* Hover Effect for List Items */
.amenity-list li:hover {
  color: #00309f;
  font-weight: bold;
}

.amenity-list li:hover i {
  color: #ffcc00; /* Yellow color on hover for icon */
}

/* Facility Category */
.facility-category {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .luxury-section-title h2 {
    font-size: 28px; /* Smaller title size */
  }

  .amenity-list li {
    font-size: 16px;
  }

  .amenity-list li i {
    font-size: 20px;
  }

  .amenity-list {
    grid-template-columns: 1fr; /* Single column for mobile */
  }
}

/* Inner Page Hero Section */
.inner-page-hero {
  position: relative;
  width: 100%;
  height: 60vh; /* Full viewport height */
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
}

/* Overlay */
.inner-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 48 159 / 30%); /* Dark blue overlay to make text more readable */
  z-index: 1;
}

/* Hero Content */
.hero-content {
  z-index: 2;
  padding: 20px;
  max-width: 900px;
}

/* Hero Heading */
.inner-page-hero h1 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  margin-top: 50px;
  color: #FFD700; /* Gold color for the heading */
  text-transform: uppercase;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Subtle shadow for better readability */
}

/* Hero Subheading */
.inner-page-hero h5 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #fff;
}

/* Explore Button */
.explore-btn {
  background: #00309f; /* Blue color */
  color: #FFD700; /* Gold text color */
  font-weight: bold;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  transition: background 0.3s, transform 0.2s;
}

.explore-btn:hover {
  background: #FFD700; /* Change to gold on hover */
  color: #00309f; /* Change text color to blue on hover */
  transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .inner-page-hero {
    height: 50vh; /* Adjust height on smaller screens */
  }

  .inner-page-hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .inner-page-hero h5 {
    font-size: 16px;
    text-align: center;
  }

  .hero-content {
    padding: 20px;
  }
}
/* Custom Header Section */
.custom-things-header {
  background-color: #f7f7f7; /* Light soft background */
  padding: 20px 20px;
  text-align: center;
}

.custom-things-title {
  font-size: 36px;
  color: #00309f; /* Dark blue for the title */
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 20px;
}

/* Grid Section */
.things-grid-section {
  padding: 20px 20px;
  background: #f7f7f7; /* Same light background */
}

.things-grid-section .container {
  max-width: 1240px;
  margin: auto;
}

/* Section headers inside the grid */
.things-title {
  font-size: 28px;
  color: #00309f; /* Dark blue for section titles */
  margin: 40px 0 20px;
  font-weight: bold;
  border-bottom: 2px solid #FFD700; /* Accent gold */
  padding-left: 15px;
  text-transform: uppercase;
}

/* Grid layout */
.things-grid.two-cols {
  display: grid;
  grid-template-columns: 3fr 3fr;
  gap: 25px;
}

/* Cards */
.thing-card {
  background: #fff; /* Clean white for cards */
  border-top: 4px solid #FFD700; /* Accent gold for card border */
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Card text */
.thing-card h4 {
  font-size: 18px;
  color: #00309f; /* Dark blue for card headings */
  margin-bottom: 6px;
  font-weight: 600;
}

.thing-card p {
  color: #555; /* Softer gray for secondary text */
  font-size: 14px;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .things-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .custom-things-title {
    font-size: 28px;
  }

  .things-title {
    font-size: 20px;
  }
}



/* Location Section Header */
.location-section-hero {
  background: #f9f9f9; /* Soft light background */
  padding: 30px 20px;
}

.location-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* Clean white background for the container */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Slightly softer shadow */
  overflow: hidden;
}

.location-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-info-box h2 {
  font-size: 2.6rem;
  color: #0033A0; /* Primary blue */
  margin-bottom: 15px;
}

.location-info-box p {
  font-size: 1.2rem;
  color: #444; /* Slightly lighter dark grey */
  margin-bottom: 30px;
  line-height: 1.6;
}

.coordinates-area,
.directions-area {
  background: #0033A0; /* Primary blue background */
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold accent */
  margin-bottom: 25px;
  border-radius: 10px;
  color: #fff; /* White text for contrast */
}

.coordinates-area h4,
.directions-area h4 {
  color: #FFD700; /* Gold headings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.coordinates-area ul {
  list-style: none;
  padding-left: 0;
}

.coordinates-area ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #fff; /* White for list items */
}

.directions-area form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.directions-area form button {
  width: 100%;
  padding: 12px;
  background: #FFD700; /* Gold button */
  color: #0033A0; /* Blue text */
  border: none;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s, transform 0.2s;
}

.directions-area form button:hover {
  background: #FFC700; /* Slightly darker gold */
  transform: scale(1.05);
}

/* Right Side Map */
.location-map-box {
  flex: 1;
  background: #e6f0fa; /* Very light blue background for the map */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .location-wrapper-hero {
    flex-direction: column;
  }

  .location-map-box {
    height: 300px;
  }
}

/* Custom Location Header */
.custom-location-header {
  text-align: center;
  padding: 10px 20px;
  background-color: #f9f9f9; /* Light grey background */
}

.custom-location-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0033A0; /* Primary blue */
  margin-bottom: 20px;
  position: relative;
}

.custom-location-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-location-description {
  font-size: 18px;
  line-height: 1.8;
  color: #444; /* Dark grey text */
  max-width: 1300px;
  margin: 0 auto;
}
/* 1. Contact Header Section */
.custom-contact-header {
  text-align: center;
  padding: 20px 20px;
  background-color: #f7f7f7; /* Soft light gray background */
}

.custom-contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #00309f; /* Deep blue for title */
  margin-bottom: 20px;
  position: relative;
}

.custom-contact-title::after {
  content: '';
  width: 60px;
  height: 4px;
  background-color: #FFD700; /* Gold accent */
  display: block;
  margin: 20px auto 0;
  border-radius: 2px;
}

.custom-contact-description {
  font-size: 20px;
  line-height: 1.8;
  color: #333; /* Dark gray text for readability */
  max-width: 1200px;
  margin: 0 auto;
}

/* 2. Main Contact Info Section */
.contact-section-hero {
  background: #fff; /* White background */
  padding: 30px 20px;
}

.contact-wrapper-hero {
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
  background: #fff; /* White background for the content box */
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.contact-info-box {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-info-box h2 {
  font-size: 2.6rem;
  color: #00309f; /* Primary blue */
  margin-bottom: 15px;
}

.contact-info-box p {
  font-size: 1.2rem;
  color: #444; /* Dark gray for description */
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-details-area {
  background: #00309f; /* Primary blue background */
  padding: 20px;
  border-left: 5px solid #FFD700; /* Gold border accent */
  margin-bottom: 25px;
  border-radius: 10px;
  color: #fff; /* White text */
}

.contact-details-area h4 {
  color: #FFD700; /* Gold for subheadings */
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.contact-details-area ul {
  list-style: none;
  padding-left: 0;
}

.contact-details-area ul li {
  margin-bottom: 12px;
  font-size: 1rem;
  color: #fff; /* White for list items */
}

.contact-details-area a {
  color: #FFD700; /* Gold color for links */
  font-weight: 600;
  text-decoration: none;
}

.contact-details-area a:hover {
  color: #00309f; /* Blue on hover */
  text-decoration: underline;
}

/* 3. Right Side Image */
.contact-image-box {
  flex: 1;
  background: #e4edf2; /* Very light blue background */
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 4. Responsive Design */
@media (max-width: 992px) {
  .contact-wrapper-hero {
    flex-direction: column;
  }

  .contact-image-box {
    height: 300px;
  }

  .custom-contact-title {
    font-size: 2rem;
  }

  .custom-contact-description {
    font-size: 1rem;
  }

  .contact-info-box h2 {
    font-size: 2rem;
  }
}
/* 📍 Microtel Inn & Suites Montgomery Sitemap Section */
.sitemap-section {
    padding: 30px 20px;
    background: linear-gradient(to bottom, #ffffff, #f9f9f9, #ffffff); /* Soft white-gray gradient */
    text-align: center;
}

.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
}

.sitemap-title {
    font-size: 3rem;
    color: #004C97; /* Microtel primary blue */
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.sitemap-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: #333333; /* Dark gray text */
    max-width: 1300px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.sitemap-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.sitemap-block {
    background-color: #ffffff; /* White card background */
    padding: 40px;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 76, 151, 0.08); /* Soft blue shadow */
    border: 1px solid #e3e3e3; /* Light gray border */
}

.sitemap-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 76, 151, 0.15); /* Darker blue shadow on hover */
}

.sitemap-block h2 {
    font-size: 1.8rem;
    color: #FFD700; /* Accent gold for headings */
    margin-bottom: 15px;
    font-weight: 600;
}

.sitemap-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sitemap-block ul li {
    margin-bottom: 15px;
}

.sitemap-block ul li a {
    font-size: 18px;
    color: #004C97; /* Microtel primary blue for links */
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
    font-weight: 500;
}

.sitemap-block ul li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #FFD700; /* Gold for icons */
}

.sitemap-block ul li a:hover {
    color: #002C5F; /* Darker blue on hover */
}

/* 📱 Responsive Design */
@media (max-width: 1024px) {
    .sitemap-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sitemap-links {
        grid-template-columns: 1fr;
    }
}
/* 🎯 FAQ Section - Microtel Inn & Suites Montgomery (Logo Colors, No Green) */
.faq-section {
    padding: 30px 20px;
    background: #F9F9F9; /* Light off-white background */
    color: #4D4D4D; /* Dark gray for general text */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title a {
    font-size: 3rem;
    font-weight: 700;
    color: #0033A0; /* Deep blue for title */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
}

.faq-subtitle {
    font-size: 1.3rem;
    color: #4D4D4D; /* Dark gray text for subtitle */
    margin-bottom: 50px;
}

.faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #D9E6F6; /* Soft blue border */
    box-shadow: 0 8px 20px rgba(0, 51, 160, 0.06); /* Blue shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #FFD200; /* Gold accent */
}

.faq-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 51, 160, 0.12); /* Darker blue shadow on hover */
}

.faq-item h2 {
    font-size: 1.8rem;
    color: #0033A0; /* Blue headers */
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px dashed #FFD200; /* Gold dashed underline */
}

.faq-item p {
    font-size: 1.1rem;
    color: #4D4D4D; /* Dark gray text */
    line-height: 1.75;
    margin-bottom: 10px;
}

.faq-item a {
    color: #0033A0; /* Blue links */
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.faq-item a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD200; /* Gold underline */
    transition: width 0.3s ease;
}

.faq-item a:hover {
    color: #FFD200; /* Gold on hover */
}

.faq-item a:hover::after {
    width: 100%; /* Full width gold underline on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .faq-title {
        font-size: 2.5rem;
    }

    .faq-item h2 {
        font-size: 1.5rem;
    }

    .faq-item p {
        font-size: 1rem;
    }
}
.attraction-section {
  padding: 30px 20px;
  background-color: #f8f9fb; /* Light background instead of pure white for softness */
}

.attraction-container {
  max-width: 1200px;
  margin: 0 auto;
}

.attraction-header {
  text-align: center;
  margin-bottom: 50px;
}

.attraction-heading {
  font-size: 30px;
  font-weight: 700;
  color: #002a80; /* Darker blue from the logo for stronger heading */
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  padding-bottom: 5px;
}

.attraction-heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #ffd700; /* Brighter yellow from the logo */
  margin: 8px auto 0;
  border-radius: 2px;
}

.attraction-subheading {
  font-size: 20px;
  color: #ffcc00; /* Use yellow accent for subheading for contrast */
  margin-top: 10px;
}

.attraction-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  background-color: #ffffff; /* Clean white for content cards */
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  padding: 40px;
}

.attraction-img {
  flex: 1;
  min-width: 500px;
  margin-top: 10px;
}

.attraction-img img {
  width: 100%;
  max-width: 500px;
  height:500px;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.attraction-img img:hover {
  transform: scale(1.03);
}

.attraction-details {
  flex: 2;
  font-size: 16px;
  color: #1a1a1a; /* Dark gray text for readability instead of pure black */
  line-height: 1.7;
}

.attraction-details p {
  margin-bottom: 18px;
}

.distance-highlight {
  background-color: #fff3b2; /* Softer yellow background */
  padding: 12px 18px;
  border-left: 4px solid #ffd700; /* Bright yellow accent border */
  border-radius: 6px;
  font-weight: 600;
}

/* Styling for the Booking Link */
.booking-link {
  text-decoration: none; /* Remove underline */
  color: #002a80; /* Deep blue for links */
  font-weight: bold;
  transition: color 0.3s ease;
}

.booking-link:hover {
  color: #ffcc00; /* Bright yellow hover effect */
}

@media (max-width: 768px) {
  .attraction-wrapper {
    flex-direction: column;
    padding: 25px;
  }

  .attraction-img img {
    max-width: 100%;
  }

  .attraction-heading {
    font-size: 24px;
  }

  .attraction-subheading {
    font-size: 16px;
  }
}
