
body {
    background: url('images/background.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    color: white; /* Ensure text is visible */
}

#landing {
    height:800px ;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

#landing .d-flex {
    position: relative; /* Ensure the content is above the background */
    z-index: 1; /* Allow the content to remain clickable */
}

#landing::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none; /* Disable pointer events on the background */
    z-index: 1; /* Place it behind the content */
    top: 0;
    left: 0;
    height:800px ;
    width: 100%;
}

#slider::before{
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none; /* Disable pointer events on the background */
    z-index: 1; /* Place it behind the content */
    top: 0;
    left: 0;
    height:100% ;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust darkness (0.5 = 50% dark) */
    color: white;
}

/* Ensure text and button stay visible above the overlay */
#slider .content {
    position: relative;
    z-index: 2;
    color: white;
    margin: 15px;
    
}

#landing {
    position: relative; /* Ensure the container is positioned correctly */
    height: 800px;
    width: 100%;
}

#carouselImages .carousel-item {
    height: 800px; /* Ensure carousel items take full height */
    background-size: cover;
    background-position: center;
    position: relative; /* Make sure the overlay is on top of the background */
}

#carouselImages .carousel-item::before {
    content: '';
    position: absolute;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none; /* Disable pointer events on the background */
    z-index: 1; /* Place it behind the content */
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
}

#carouselImages .carousel-item .text-container {
    z-index: 2; /* Ensure text stays above the overlay */
    position: relative; /* Make the text layer clickable */
}

#landing .carousel-inner .carousel-item.active {
    background-image: url('images/Front1.jpg');
}

#navitem a {
    transition: 0.3s ease-in-out;
    font-weight: bold;
}

#navitem a:hover {
    color: #ffffff !important; /* Change text color on hover */
background-color: #07467c;
    transform: scale(1.1); /* Slightly enlarge the text */
}

#bookbtn {
    background-color:#C3A32B; /* Initial background color */
    color: aliceblue; /* Text color */
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease-in-out; /* Smooth transition */
    border-radius: 5px; /* Rounded corners */
}

#bookbtn:hover {
    background-color: #002F82; /* Darker shade on hover */
    color: #fff; /* Keep text white */
    transform: scale(1.1); /* Slight zoom effect */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add a shadow effect */
}






/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color:transparent;
    
    color: var(--default-color);
    z-index: 997;
    background-color: transparent;
    transition: background-color 0.5s ease-in-out;
  }

  
  
  .header .topbar {
    background-color: transparent;
    padding: 10px 0 0 0;
    font-size: 16px;
    transition: all 0.5s;
  }
  
  .header .topbar .contact-info i {
    font-style: normal;
    color: var(--accent-color);
  }
  
  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
  }
  
  @media (max-width: 575px) {
  
    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
      font-size: 13px;
    }
  }
  
  .header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
  }
  
  .header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
  }
  
  .header .topbar .cta-btn {
    color: var(--contrast-color);
    background: #C3A32B;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 6px 30px 8px 30px;
    border-radius: 50px;
    transition: 0.3s;
  }
  
  .header .topbar .cta-btn:hover {
    /* background-color: rgb(215, 176, 252); */
    background-color: #002F82;
    color: aliceblue ;
  }
  
  .header .branding {
    min-height: 60px;
    padding: 5px 0;
  }
  
  .header .logo {
    line-height: 1;
  }
  
  .header .logo img {
    max-height: 8rem;
    margin-right: 8px;
    margin-top: -30px;
  }
  
  .header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
  }
  
  /* Global Header on Scroll
  ------------------------------*/
  /* Navbar background changes when scrolled */
  #header.scrolled {
    background-color: #1E3A5FDB ; /* Blue background when scrolled */
}

  
  /*--------------------------------------------------------------
  # Navigation Menu
  --------------------------------------------------------------*/
  /* Navmenu - Desktop */
  @media (min-width: 1200px) {
    .navmenu {
      padding: 0;
    }
  
    .navmenu ul {
      margin: 0;
      padding: 0;
      display: flex;
      list-style: none;
      align-items: center;
    }
  
    .navmenu li {
      position: relative;
    }
  
    .navmenu a,
    .navmenu a:focus {
      color: var(--nav-color);
      padding: 18px 15px;
      font-size: 14px;
      font-family: var(--nav-font);
      font-weight: 400;
      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;
      transition: 0.3s;
    }
  
    .navmenu li:last-child a {
      padding-right: 0;
    }
  
    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
      color: var(--nav-hover-color);
    }
  }
  
  /* Navmenu - Mobile */
  @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;
      top: 60px;
      right: 0; /* Align to the right */

      height: calc(30vh - 80px); /* Adjust height dynamically */
      width: 30%;

      padding: 10px 0;
      margin: 0;
      border-radius: 6px;
      background-color: var(--nav-mobile-background-color);
      overflow-y: auto;
      transition: 0.3s;
      z-index: 9998;
      box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
  
    .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);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      box-shadow: none;
      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;
    }
  }
  



  /* 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: "Satisfy",  sans-serif;
    --nav-font: "Poppins",  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: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #433f39; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ffb03b; /* 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: #ffffff;  /* The default color of the main navmenu links */
    --nav-hover-color: #ffb03b; /* 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: #444444; /* Used for navigation links of the dropdown items in the navigation menu. */
    --nav-dropdown-hover-color: #ffb03b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
  }
  
  /* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */
  
  .light-background {
    --background-color: #fffaf3;
    --surface-color: #ffffff;
  }
  
  .dark-background {
    --background-color: #1e160d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #42301c;
    --contrast-color: #ffffff;
  }
  
  /* Smooth scroll */
  :root {
    scroll-behavior: smooth;
  }
  
  /*--------------------------------------------------------------
  # General Styling & Shared Classes
  --------------------------------------------------------------*/
  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;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    /* color: var(--heading-color); */
    font-family: var(--heading-font);
  }
  


/* Notification (Hidden by Default) */
#messageBox {
  position: fixed;
  top: 20px;
  right: -300px; /* Start off-screen */
  min-width: 250px;
  padding: 15px;
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: right 0.5s ease-in-out; /* Smooth sliding */
  z-index: 9999;
}
