/*:root {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  font-weight: 400;

  color-scheme: light dark;
  color: rgba(255, 255, 255, 0.87);
  background-color: #242424;

  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}*/
/* Overriding defaults Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Amatic SC",  sans-serif;
  --nav-font: "Inter",  sans-serif;
}
/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #212529; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #37373f; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #f37b0b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}
/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #7f7f90;  /* The default color of the main navmenu links */
  --nav-hover-color: #f37b0b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #7f7f90; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #f37b0b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}
/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}


body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}


a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}
/* Header */
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 0 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 70x;
  margin-right: 0px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  font-family: var(--default-font);
}

.header .logo span {
  color: var(--accent-color);
  font-size: 36px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 50px;
  border-style: none;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 0px 0 0;
    padding: 0px 0px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navbar-nav {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }
  
  .navbar-nav .nav-item {
    position: relative;
    white-space: nowrap;
  }
  
  .navbar-nav .nav-link {
    color: var(--nav-color);
    font-size: 15px;
    padding: 15px 14px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }
  .navbar-nav .nav-link i {
    font-size: 18px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navbar-nav .nav-link:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--nav-hover-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar-nav .nav-link:hover:before,
  .navbar-nav .nav-item:hover .nav-link:before,
  .navbar-nav .nav-link.active:before {
    visibility: visible;
    width: 100%;
    height: 4px;
  }

  .navbar-nav .nav-item:hover .nav-link,
  .navbar-nav .nav-link.active {
    color: color-mix(in srgb, var(--nav-color) 80%, black 50%);

  }

  /* Dropdown Menu */
  .dropdown-menu {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .dropdown-menu .dropdown-item {
    min-width: 200px;
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
    transition: 0.3s;
  }

  .dropdown-menu .dropdown-item i {
    font-size: 12px;
  }

  .dropdown-menu .dropdown-item:active {
    color: white;
    background-color: #e68e12;
  }



  .dropdown:hover>.dropdown-menu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  /* Nested Dropdowns */
  .dropdown-menu .dropdown-menu {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .dropdown-menu .dropdown:hover>.dropdown-menu {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  position: relative;
  padding: 60px 0;
  display: flex;
  align-items: center;
}


.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 500;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 640px) {

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*Image auto zoom for banner */
.banner-container {
  position: relative;
  overflow: hidden; /* Keeps the zoomed image within its bounds */
  width: 100%;
  height: 400px;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.auto-zoom {
  animation: zoomEffect 10s infinite; /* Zoom in and out animation */
}

@keyframes zoomEffect {
  0% {
    transform: scale(1); /* Normal size */
  }
  50% {
    transform: scale(1.8); /* Zoom in 20% */
  }
  100% {
    transform: scale(1); /* Back to normal size */
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.section-title h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 300;
  padding: 0;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--default-font);
}

.section-title p {
  color: var(--heading-color);
  margin: 10px 0 0 0;
  font-size: 30px;
  font-weight: 550;
  font-family: var(--heading-font);
}

.section-title p .description-title {
  color: var(--accent-color);
}


.col-lg-7,
.col-lg-5 {
  text-align: center;
  padding-bottom: 10px;
  position: relative;
}

.welcome-message {
  text-align: center;
  padding-bottom: 10px;
  padding-left: 200px;
  padding-right: 200px;
  position: relative;
  background-color: color-mix(in srgb, ivory, transparent 65%);/*rgba(255, 255, 255, 0.8); Light background for readability */
  border-radius: 8px; /* Optional: rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */  
  flex: 1 1 100%; 
  max-width: 100%;
}

.orange-underline {
  display: inline-block; /* Allows the underline to be applied only to the text */
  position: relative; /* For positioning the pseudo-element */
  color: black; /* Set the text color */
}

.orange-underline::after {
  content: ""; /* Creates an empty element */
  position: absolute;
  left: 0; /* Start underline from the left */
  bottom: -5px; /* Adjust position to be below the text */
  width: 100%; /* Make it as wide as the text */
  height: 5px; /* Thickness of the underline */
  background-color: orange; /* Color of the underline */
}

.grey-underline {
  display: inline-block; /* Allows the underline to be applied only to the text */
  position: relative; /* For positioning the pseudo-element */
  color: black; /* Set the text color */
 
}

.grey-underline::after {
  content: ""; /* Creates an empty element */
  position: absolute;
  left: 0; /* Start underline from the left */
  bottom: -2px; /* Adjust position to be below the text */
  width: 100%; /* Make it as wide as the text */
  height: 3px; /* Thickness of the underline */
  background-color: rgb(251, 207, 119); /* Color of the underline */
}

/*--------------------------------------------------------------
# about Us Section
--------------------------------------------------------------*/
.about-us .about-box {
  color: var(--contrast-color);
  background: var(--accent-color);
  padding: 30px;
  border-radius: 4px;
  
}
.highlight {
  font-weight: bold; /* Make text bold */
  color: var(--accent-color); /* Change to your desired color */
}
.about-us .about-box h3 {
  color: var(--contrast-color);
  font-family: var(--default-font);
  font-weight: 700;
  font-size: 20px;
    margin-bottom: 30px;
}

.about-us .about-box p {
    margin-bottom: 30px; color: dar;
}


.about-us .about-box .more-btn {
  display: inline-block;
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  padding: 8px 40px 10px 40px;
  color: var(--contrast-color);
  transition: all ease-in-out 0.4s;
  border-radius: 50px;
}

.about-us .about-box .more-btn i {
  font-size: 14px;
}

.about-us .about-box .more-btn:hover {
  color: var(--accent-color);
  background: var(--surface-color);
}

.about-us .icon-box {
  background-color: color-mix(in srgb, rgb(235, 241, 151), transparent 80%);
  text-align: center;
  margin-top: 20px;
  padding: 40px 30px;
  width: 100%;
  height: 80%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.about-us .icon-box i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 65%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.about-us .icon-box h4 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.about-us .icon-box p {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-us .icon-box:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.about-us .icon-box p.temple-hours {
  font-size: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.5; /* Increase line height for readability */
   text-align: left; /* Align text to the left */
  margin: 0; /* Remove default margin */
}
.icon-box a {
  color: var(--accent-color); /* Default link color (blue) */
  text-decoration: none; /* Rzemoves underline */
}

/* Change color on hover */
.icon-box a:hover {
  color:grey; /* Darker blue for hover */
  text-decoration: underline; /* Adds underline on hover */
}

/* If you want a custom color for links in the "highlight" class */
.icon-box .highlight a {
  color: var(--accent-color);; /* Custom color for links in the 'highlight' class */
}

.icon-box .highlight a:hover {
  color: grey; /* Hover effect for custom color */
}
/*--------------------------------------------------------------
# Announcements
--------------------------------------------------------------*/
.restricted-height {
  height: 500px;
  object-fit: contain; /* Ensures the image fits within the restricted height without distortion */
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  border: 0;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
  opacity: 1;
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    transition: none;
  }
}


/*--------------------------------------------------------------
# Contact US/ Visit US
--------------------------------------------------------------*/

.map-contact-container {
  display: flex;
  flex-wrap: wrap; 
  gap: 20px;
}

.map-container {
  flex: 1 1 100%; /* Make the map take half of the container */
  padding-right: 20px; /* Space between map and contact info */
  max-width: 100%;
}

.contact-info {
  flex: 1; /* Make the contact info take half of the container */
  padding-left: 20px; /* Space between map and contact info */
  border-left: 1px solid #ccc; /* Optional: Add a border for separation */
}

#contact-us {
  min-height: 300px; /* Adjust as needed */
 background: color-mix(in srgb, var(--accent-color), transparent 80%);
  padding: 40px 0;
  border-radius: 10px; /* Optional: rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
}
.priest-contact{
  flex: 1; 
  min-width: 300px;
}
.admin-contact{
  flex: 1; 
  min-width: 300px;
}
.contact-row{
  display: flex; 
  justify-content: space-between; 
  flex-wrap: wrap; 
  gap: 20px;
}

/*--------------------------------------------------------------
# Join US
--------------------------------------------------------------*/
#join-us {
  min-height: 50px; /* Adjust as needed */
 background: color-mix(in srgb, rgb(255, 251, 240), transparent 80%);
  padding: 40px 0;
  border-radius: 10px; /* Optional: rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Optional: subtle shadow */
  
}

#join-us .btn-orange {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 12px 40px; 
  margin: 0;
  width: 350px;
  border-radius: 5px;
  border-style: solid;
  border: 2px solid var(black); /* Inner border */
  transition: 0.3s;
  display: inline-block; 
}
#join-us .btn-orange .join-a{
  color: #e9eff6;
}
/* Outer Rectangle using Pseudo-Element */
#join-us .btn-orange  :before {
  content: ""; /* Empty content for styling */
  position: absolute; /* Position relative to the button */
  top: -8px; /* Create space outside the button */
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--contrast-color); /* Outer border */
  border-radius: 8px; /* Rounded corners matching the button */
  z-index: -1; /* Place behind the button */
}

#join-us .btn-orange:hover {
  background-color: darkorange; /* Darker orange on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

#join-us .btn-orange:hover::before {
  border-color: darkorange; /* Change outer border color on hover */
}

/* Big Rectangle Container */
.button-container {
  border: 2px solid rgb(219, 212, 212); /* Grey border */
  border-radius: 10px; /* Rounded corners */
  padding: 20px; /* Padding inside the container */
  margin-top: 30px; /* Spacing above the container */
  text-align: center; /* Center contents */
  background-color: #f9f9f9; /* Light grey background */
}
/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  display: flex; /* Enables flexbox layout */
  justify-content: space-between; /* Aligns items with space between */
  align-items: center; /* Vertically centers the items */
  padding: 30px 20px; /* Optional padding */
  background-color: color-mix(in srgb, rgb(204, 204, 197), transparent 80%); /* Optional background color */
  margin-top: 10px;
  border-top: 2px solid rgb(244, 202, 128);
}

.footer .social-links a {
  margin-left: 10px; /* Adds spacing between social media icons */
  text-decoration: none; /* Removes underline from social media links */
  font-size: 20px; /* Adjust icon size */
  color: #333; /* Default icon color */
}

.footer .social-links a:hover {
  color: #007bff; /* Change icon color on hover */
}
/* 
About US Page
*/
/* Make text color of all accordion headers orange */
.accordion-button {
  color:orangered !important; /* Ensure the text turns orange */
  background-color: transparent !important; /* Remove default background color */
  border: none !important; /* Optional: remove border */
}

/* Style for the active (expanded) accordion header */
.accordion-button:not(.collapsed) {
  color: white !important; /* Change text color for active header */
  background-color: orange !important; /* Change background color for active header */
}

/* Remove focus outline box (optional) */
.accordion-button:focus {
  box-shadow: none !important;
}

/* 
Contact US Page
*/
.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  max-width: 100%;
}
/* General styling for the container */
.lhs {
  flex: 1;
      padding: 20px;
      background: white;
      border: 1px solid #ddd;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      max-width: 100%;
}

h2 {
  color: #333;
  margin-bottom: 20px;
}

/* Style for the rectangles */
.contact-info-box {
  background-color: color-mix(in srgb, ivory, transparent 80%);
  border: 1px solid #ddd;   /* Light border */
  border-radius: 8px;       /* Slightly rounded corners */
  padding: 15px;            /* Padding inside the box */
  margin-bottom: 20px;      /* Space between contact boxes */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  width: 100%;
}

/* Underline for headings */
.contact-heading {
  text-decoration: underline;
  font-size: 16px;
  color: #333;
  margin-bottom: 10px;
}

/* Style for the contact details */
.contact-info-box p {
  margin: 5px 0; /* Add spacing between lines */
  color: #555; /* Slightly darker grey for text */
  line-height: 1.6; /* Improve readability */
}

.contact-info-box i {
  color: #1e1d1d; /* Icon color (blue) */
  margin-right: 5px;
}

/* Wrapper for each image */
.image-wrapper {
  width: 100%; /* Full width of the parent container */
  max-width: 200px; /* Optional: Set a maximum width to control image size */
  aspect-ratio: 4 / 2; /* Ensures the image is a rectangle (4:3 ratio) */
  border: 2px solid #e99228; /* Light gray border */
  border-radius: 8px; /* Optional: Rounded corners for a modern look */
  overflow: hidden; /* Ensures the image doesn't overflow the container */
  background-color: #f8f9fa; /* Light gray background for fallback */
}

/* Image itself */
.custom-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image fills the container without distortion */
  object-position: center; /* Centers the image within the rectangle */
}
/* 
All Headimgs
*/
.all-headings{
  color: #0b0b0a;
 
  font-weight: bold;
}
/* 
Committee Members
*/

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #333;
}

.card-text a {
  color: #007bff;
  text-decoration: none;
}

.card-text a:hover {
  text-decoration: underline;
}

.card {
  border-radius: 10px;
  overflow: hidden;
}
.card-img-top{
  object-fit: contain;
  height: 200px;
}

/*
For Useful  resources 
*/
.u-resources{
margin-bottom: 100px;
margin-top: 100px;
background-color: color-mix(in srgb, ivory, transparent 80%);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
box-sizing: border-box; /* Ensure padding doesn't affect width */
padding-top: 20px;
padding-bottom: 20px;
}

.u-resources a{
  color: #e68e12;
}
.u-resources a:hover{
  color: firebrick;
}

/*
For Gallery Page
*/
.card-gallery img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.card-gallery:hover img {
  transform: scale(1.05);
  box-shadow: 0 8px 15px rgba(235, 153, 10, 0.986);
  
}

.modal-content img {
  max-height: 80vh;
  object-fit: contain;
}
.gallery-img {
  border: 2px solid #ff8c00; /* Blue border */
  border-radius: 5px; /* Rounded corners */
  padding: 5px; /* Optional padding inside the border */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add hover effect */
}

.gallery-img:hover {
  transform: scale(1.05); /* Slight zoom */
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Shadow effect */
}

/* Calendar Page */

/* Highlight event days */
/* Center align the calendar */
.calendar-container {
  max-width: 900px;
}

.react-calendar__tile {
  min-height: 90px; /* Adjust height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1rem; /* Adjust text size */
  padding: 10px;
  position: relative;
}
/* Highlight today's date */
.react-calendar__tile--now {
  background-color: orange !important; /* Bootstrap primary color */
  color: white !important;
  border-radius: 20%;
}

/* Highlight selected date */
.react-calendar__tile--active {
  background-color: rgb(197, 193, 193) !important; /* Bootstrap success color */
  color: white !important;
  border-radius: 20%;
}

/* Hover effect for calendar tiles */
.react-calendar__tile:hover {
  background-color: #e9eff6; /* Bootstrap light gray */
  border-radius: 20%;
}

/* Make holiday dates bold and red */
.holiday-date {
  color: red !important;
  font-weight: bold;
}

/* Style for today's date */
.today-date {
  background-color: #ffc107 !important; /* Yellow background */
  color: white !important;
  border-radius: 5px;
}

/* Position holiday names below the date */
.holiday-name {
  font-size: 0.65rem;
  color: rgb(243, 67, 67);
  margin-top: 5px;
  text-align: center;
  font-weight: bold;
}
/* 
Cremation Service Page
*/ 
.c-service h3{
  text-decoration: underline;
  margin-top: 20px;
  padding-top: 20px;

}
.c-service a{
  color: orange;
}
.c-service{
  max-width:  90%;
  margin-left: 70px;
  background-color: color-mix(in srgb, ivory, transparent 80%);
  text-align: left;
  margin-top: 20px;
  padding: 40px 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box; /* Ensure padding doesn't affect width */
}

/*
For PDF related pages
*/
.show-pdf{
  width: 100%;
  
}

/*
Membership Application
 */
.addresstemplehk
{
  color: #f37b0b;
}

.memberapplication{
  max-width: 80%;
  margin-left: 70px;
  margin-top: 20px;
  padding: 20px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  background-color: color-mix(in srgb, ivory, transparent 80%);
  
}

/* 
Funeral Services
*/

.funeral-service{
  max-width: 80%;
  margin-left: 70px;
  margin-top: 20px;
  padding: 30px;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  background-color: color-mix(in srgb, ivory, transparent 80%);
  
}
.funeral-service .text-underline{
 text-decoration: underline;
}
.funeral-service .more-padding{
  padding-left: 70px;
}
/*
President Message
*/
.president-message{
  max-width: 80%;
  margin-left: 70px;
  margin-top: 20px;
  padding: 30px;
  text-align: left;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  background-color: color-mix(in srgb, ivory, transparent 80%);
  
}

/*
Festivals Page 
*/
.festival-content{
  margin: 10px;
  padding-left: 40px;
  padding-right: 40px;
}

/*
Yearly Programme Page
*/
.y-programme{
  margin-bottom: 100px;
margin-top: 100px;
background-color: color-mix(in srgb, ivory, transparent 80%);
border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
box-sizing: border-box; /* Ensure padding doesn't affect width */
padding-top: 20px;
padding-bottom: 20px;
padding-left: 70px;
  text-align: left;
}
.admin-login-container{
  display: flex;  
  flex-direction: column;  /* ✅ Ensures vertical stacking */
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  height: 100vh; /* Full screen height */
  width: 100%;
  background-color: white;
  margin: 45px;
}

.admin-login-box{
  background: rgb(240, 183, 118);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
}

/* Input fields */
.admin-input-field {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.admin-login-button{
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: none;
  cursor: pointer;
  font-size: 16px;
  border-radius: 4px;
  background-color: darkgray;
}
.admin-text-orange{
  text-decoration: double;
  color: rgb(255, 115, 0);
}

/* 
Banner text scrolling on Home page
*/
.bannertext-container {
  width: 100%;
  overflow: hidden;
  background-color: var(--accent-color);
  padding: 10px 0;
  position: relative;
  white-space: nowrap;
  margin-top: 10px;
  margin-bottom: 15px;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  font-size: 12px;
  font-weight: bold;
  color: white;
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

/*
Temple Scehdule on Home 
*/
.schedule-table{
  margin-top: 10px;
  word-wrap: break-word;
  font-size: 13px;
  border: 1px solid white;
  border-collapse: collapse;
}
.schedule-table th{
  background-color: rgba(60, 60, 59, 0.479) !important;
  color: white !important;
  font-size: 15px;
}
.other-cell{
  background-color: whitesmoke !important;
}

.bold-cell{
  background-color: whitesmoke !important;
  font-size: 14px;
  text-align: center;
  
}

.other-cell1{
  border-color: grey;
}
.icon-box1 i {
  color: var(--accent-color);
  font-size: 32px;
  margin-bottom: 30px;
  background: color-mix(in srgb, var(--accent-color), transparent 65%);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  transition: 0.3s;
}

.icon-box1 h4 {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 30px 0;
  font-family: var(--default-font);
}

.icon-box1 p {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.icon-box1:hover i {
  color: var(--contrast-color);
  background: var(--accent-color);
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto; /* Ensures flexible column widths */
}

th, td {

  text-align: left;
  word-break: break-word; /* Prevents text overflow */
}

.th-width {
  width: 35%; /* Adjust this value as needed */
  min-width: 100px;
  max-width: 200px;
}

@media (max-width: 600px) {
  .th-width {
    width: 30%; /* Adjust to allow more space for the second column */
    min-width: 80px;
  }
}
