/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    background-color: #f7f7f7;
    padding-bottom: 60px; /* Add space at the bottom for the fixed navbar */
  }

  #about{

    background-color: #f7f7f7;
  }

  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
  }
  
  button {
    border: none;
    cursor: pointer;
  }
  
  /* Hero Section */
  .hero-section {
    text-align: center;
    padding: 5em 2em;
    background: linear-gradient(135deg, #d8e9f3, #f1f8ff);
    color: #333;
  }
  
  .hero-section .hero-content h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
  }
  
  .hero-section .hero-content p {
    font-size: 1.2em;
    color: #555;
  }
  
  /* Content Section */
  .content-section {
    display: flex;
    align-items: center;
    padding: 3em 2em;
    gap: 2em;
  }
  
  .content-section .section-content {
    flex: 1;
  }
  
  .floating-image {
    width: 190px;
    height: 180px;
    /* border-radius: 50%; */
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); */
  }
  
  /* Cards */
  .cards {
    display: flex;
    gap: 2em;
    overflow-x: auto; /* Make cards scrollable horizontally */
  }
  
  .card {
    background-color: #fff;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
    text-align: center;
    min-width: 200px; /* Minimum width for cards */
    min-height: 200px;
  }
  
  .card h3 {
    margin: 0.5em 0;
  }
  
  /* History Section */
  .historycontainer {
    padding: 3em 2em;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  
  .history-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }
  
  .historycontainer p {
    margin: 1em 0; /* Space out paragraphs for readability */
  }
  
  /* Footer */
  .footer {
    text-align: center;
    padding: 1em;
    background-color: #d8e9f3;
    position: relative;
  }
  /* Bottom Navigation Bar - Glassmorphism Style */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.3); /* Glass effect with transparency */
  backdrop-filter: blur(10px); /* Blur effect for glassmorphism */
  -webkit-backdrop-filter: blur(10px); /* Safari support */
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: space-around;
  padding: 0.5em 0;
  z-index: 1000;
  font-weight: 500;
}

.bottom-nav ul {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin: 0;
  padding: 0;
  font-weight: 300;
}

.bottom-nav li {
  display: flex;
  flex-direction: column; /* Stack icon and text vertically */
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 0.9em;
  font-weight: bolder;

  transition: transform 0.3s ease, color 0.3s ease;
}

.bottom-nav li:hover {
  transform: translateY(-5px); /* Slight lift effect */
  color: #0056b3;
}

.bottom-nav a {
  text-align: center;
  color: inherit;
  text-decoration: none;
}

.bottom-nav i {
  font-size: 1.8em; /* Larger icon size */
  margin-bottom: 0.5em; /* Space between icon and text */
  color: inherit;
  transition: color 0.3s ease;
}

.bottom-nav li:hover i {
  color: #3A8EBA; /* Icon color on hover */
}

.bottom-nav span {
  font-size: 0.8em; /* Smaller text size */
  margin-top: 0.2em;
  color: inherit;
}

----------------------------------- */



.content-section2 {
    display: flex;
    align-items: center;
    padding: 3em 2em 1em 2em;
    /* gap: 2em; */
    flex-direction: column; /* Stack content vertically */
    align-content: center;
    
  }
  
  .content-section2 h2 {
    margin-bottom: 1em; 
  }
  
  /* Cards */
  .cards {
    display: flex;
    gap: 1em; /* Adjust gap for mobile view */
    overflow-x: auto; /* Allow horizontal scrolling */
    padding: 0em 0em 2em 0em; /* Add padding above and below cards */
    width: 100%; /* Ensure cards section uses full width */
    box-sizing: border-box; /* Include padding in width */
  }
  
  .card {
    background-color: #fff;
    padding: 1.5em;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 0 0 auto; /* Prevent card from growing to fill space */
    width: 250px; /* Set a fixed width for each card */
    text-align: center;
    transition: transform 0.2s; /* Smooth transition for hover effect */
  }
  
  .card:hover {
    transform: scale(1.05); /* Slightly enlarge the card on hover */
  }
  
  .card a {
    color: inherit; /* Keep text color same as card */
  }
  
  .card h3 {
    margin: 0.5em 0;
  }

  .card-image {
    width: 100%; /* Adjust this based on your layout */
    height: auto; /* Maintain aspect ratio */
    border-radius: 8px; /* Optional: adds rounded corners */
}

.room-types-actions {
  display: flex;           /* Enable flexbox */
  justify-content: center; /* Center horizontally */
  gap: 20px;              /* Space between buttons */
  margin-top: 2em;        /* Space above buttons */
  flex-wrap: wrap; /*Allow wrapping on smaller screens*/
}
.room-types-actions .hotelpage-book-button{
  min-width: 150px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .room-type {
      min-width: 90%;
  }
  .room-types-actions{
      flex-direction: column;
      align-items: center;
      align-content: center;
      text-align: center;
  }
}
  
  .content-section2 {
    background-color: #fff;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px; /* Reduced top margin for the container */
    align-items: center;
}

h2 {
    text-align: center;
    color: #333;
    margin-bottom: 10px; /* Reduced bottom margin for the title */
}

.faq-container {
    margin-top: 10px; /* Optional: Adjust if needed */
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-item:last-child {
    border-bottom: none; /* Remove border for the last item */
}

/* FAQ Question Link Styles */
.faq-question {
    font-size: 18px;
    color: #3A8EBA; /* Soft blue color for links */
    transition: color 0.3s;
}

.faq-question a {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}

.faq-question a:hover {
    text-decoration: underline; /* Underline on hover */
    color: #0056b3; /* Darker blue on hover */
}

/* Responsive Styles */
@media (max-width: 600px) {
    .content-section2 {
        padding: 15px;
        align-items: center;
    }

    h2 {
        font-size: 24px;
    }

    .faq-question {
        font-size: 16px;
    }
}

/* Temple History Page Styles */
.temple-history {
    padding: 20px;
}

.history-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.temple-history h3 {
    color: #333;
    margin-top: 25px;
}

.temple-history ul {
    margin-left: 20px;
    margin-top: 10px;
}

.temple-history li {
    margin-bottom: 8px;
}

/* Temple Timing Page Styles */
.timing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.para     {
    padding: 10px;
    margin-top: -50px;
    margin-left: 20px ;
}

/* styles.css */
/* ... (Existing styles from previous responses) ... */

/* Hotel Page Specific Styles - Prefix: .hotelpage-* */
.hotelpage-hero {
  background-image: url("assets/hotel-hero.jpeg"); /* Add a relevant hero image */
  background-size: cover;
  background-position: center;
  position: relative;
  color: white; /* Ensure text is visible on the image */
  text-shadow: 2px 2px 4px #000000; /* Add a text shadow for better readability */
  /* filter: blur(2px);  */
}

.hotelpage-hero::before { /* The overlay */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Adjust opacity as needed */
  z-index: 1; /* Ensure overlay is above the image */
}

.hotelpage-hero .hero-content {
  position: relative; /* To bring the content above the overlay */
  z-index: 2;
}


.hero-section.hotelpage-hero .hero-content p { /* More specific */
  color: #eee; /* Your desired color */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); 

}

.hotelpage-room-pricing .container .row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.hotelpage-room-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  margin-bottom: 20px; /* Space between room cards */
  text-align: center;
}

.hotelpage-room-card .price {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #007bff; /* Example price color */
}

.hotelpage-book-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
  margin-top: 10px;
}

.hotelpage-book-button:hover {
  background-color: #0056b3;
}

.hotelpage-room-features {
  background-color: #f8f9fa;
  padding: 30px;
  margin-top: 20px;
}

.hotelpage-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
  gap: 20px;
}

.hotelpage-feature-grid .room-feature {
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd
}

/* styles.css (Continued) */
/* ... (Previous styles) ... */

/* Improved Carousel Styles (for better control and responsiveness) */
.carousel-inner img {
  width: 100%;
  height: 300px; /* Set a fixed height or use max-height */
  object-fit: cover; /* Prevent image distortion */
}

/* Optional: Style carousel controls */
.carousel-control-prev,
.carousel-control-next {
  background-color: rgba(0, 0, 0, 0.5); /* Add a semi-transparent background */
  width: 5%; /* Adjust width if needed */
}
.carousel{
  margin-bottom: 10px;
}

/* Responsive adjustments for hotel page */
@media (max-width: 768px) {
  .hotelpage-feature-grid {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); /* Adjust minmax for smaller screens */
  }
  .hotelpage-room-card {
      margin: 10px;
  }
  .hotelpage-room-pricing .container .row{
      flex-direction: column;
      align-items: center;
  }
  .hotelpage-room-pricing .container .row .col-md-4{
      width: 90%;
  }
  .carousel-inner img {
      height: 200px; /* Set a fixed height or use max-height */
  }
}


.hotelpage-gallery {
  background-color: #fff; /* Or any suitable background color */
}

.hotelpage-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
  grid-gap: 1em; /* Space between grid items */
  padding: 1em;
}

.gallery-item {
  overflow: hidden; /* Prevent image overflow */
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover{
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure images cover the entire grid cell */
  display: block; /* Prevents a small space below the image */
  transition: transform 0.3s ease;
}

/* Responsive adjustments for gallery */
@media (max-width: 768px) {
  .hotelpage-gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Smaller minmax for smaller screens */
  }
}





/* styles.css */
/* ... other styles ... */

/* Room Types Slider Styles */
#room-types-index {
  padding: 3em 2em;
  background-color: #f9f9f9;
}

#room-types-index h2 {
  text-align: center;
  margin-bottom: 2em;
}

.room-types-slider {
  display: flex;
  overflow-x: auto; /* Enable horizontal scrolling */
  scroll-snap-type: x mandatory; /* For smooth scrolling */
  padding-bottom: 1em; /* Add some padding for scrollbar */
  gap: 1em;
}

.room-type {
  min-width: 300px; /* Minimum width for each room type */
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  scroll-snap-align: start; /* Snap to the start of each item */
  flex: 0 0 auto; /* Prevent items from stretching */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-type h3 {
  margin-bottom: 0.5em;
}

.room-type ul {
  list-style-type: none;
  padding: 0;
  margin: 1em 0;
}
.room-type li{
  margin-bottom: 0.5em;
}

.room-type .price {
  font-size: 1.2em;
  font-weight: bold;
  color: #007bff;
  margin-top: auto;
}
#room-types-index .text-center{
  margin-top: 2em;
}

/* Hide scrollbar (optional, but often preferred) */
.room-types-slider::-webkit-scrollbar {
  display: none;
}

/* For Firefox */
.room-types-slider {
  scrollbar-width: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .room-type {
      min-width: 90%; /* Full width on smaller screens */
  }
}



/* styles.css */
/* ... other styles from previous responses ... */

.glass-card {
  background: rgba(255, 255, 255, 0.2);
  /* backdrop-filter: blur(10px); */
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.contact-card {
  box-shadow: none;
}
.contact-person img{
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}
.contact-person {
  text-align: center;
  margin-bottom: 20px; /* Add some space between contact persons */
}
.contact-info{
  text-align: center;
  margin-top: 20px;
}
/* Responsive adjustments for contact persons */
@media (max-width: 768px) {
  .contact-person {
      margin-bottom: 30px; /* More space on smaller screens */
  }
}


/* pooja.css */

/* Pooja Specific Styles */
.poojaicon {
  width: 80px;
  height: 80px;
  margin: 10px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.Pooja-Heading {
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
}

.Pooja-Heading h1 {
  font-size: 2em;
  font-weight: bold;
  color: #333; /* Use your main text color */
  margin-bottom: 0.5em;
}

.Pooja-Heading p {
  color: #555; /* Use your secondary text color */
}

.Pooja-subheading {
  display: flex;
  align-items: center;
  margin: 2em 20px 1em;
}

.oneicon {
  width: 32px;
  height: 32px;
  margin-right: 1em;
}

/* Styles for Lists (Consistent with rest of the site) */
.services-list,
.items-list {
  margin: 20px;
}

.services-list h2,
.items-list h2 {
  font-size: 1.2em;
  font-weight: bold;
  color: #c35e06; /* Your accent color */
  margin-bottom: 0.5em;
}

.services-list ul,
.items-list ul {
  list-style-type: none;
  padding-left: 0;
}

.services-list li,
.items-list li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 8px;
}

.services-list li:before,
.items-list li:before {
  content: "\2022";
  color: #c35e06;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0.2em;
}

/* Card Specific Styles for Pooja Page */
.pooja_details .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.pooja_details .card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  width: 100%;
  max-width: 350px; /* Set a maximum width */
  margin: 10px; /* Increased margin for spacing */
}

.pooja_details .card img {
  width: 100%;
  height: auto;
}

.pooja_details .card-body {
  padding: 15px;
  text-align: left; /* Align text within card body to the left */
}

.pooja_details .card-body p {
  font-size: 15px;
  margin-bottom: 5px; /* Add some spacing between paragraphs */
}

.pooja_details .card-title {
  font-size: 20px;
  font-weight: 800;
  color: #c35e06; /* Use your accent color */
  margin: 0 0 10px;
}

.pooja_details .price {
  font-weight: bold;
  color: #007bff; /* Example price color */
}

.pooja_details .extra {
  color: #555; /* Use your secondary text color */
}

/* Style the Book Now Button */
.pooja_details .card-body a {
  display: inline-block;
  padding: 8px 16px;
  background-color: #007bff; /* Example button color */
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s;
}

.pooja_details .card-body a:hover {
  background-color: #0056b3;
}

/* Responsive adjustments for pooja cards */
@media (max-width: 768px) {
  .pooja_details .card {
      max-width: 90%; /* Make cards take up more width on smaller screens */
      margin: 10px auto; /* Center the cards */
  }
}

/* Section Divider */
.section-divider {
  border-top: 1px solid #ddd;
  margin: 20px 0;
}