/* CSS for Elrowad */


/* Page Transition */
.page-enter-active,
.page-leave-active {
  transition: opacity 0.3s ease;
}

.page-enter-from,
.page-leave-to {
  opacity: 0;
}

/* Ensure the body takes full viewport height */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Hide Scrollbar */
/* Firefox */
* {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

/* Webkit browsers (Chrome, Safari, Edge) */
*::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

/* Custom Scrollbar Utility - Hidden */
.custom-scrollbar {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.custom-scrollbar::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

/* Main content wrapper */
#page-wrapper {
  min-height: 100vh;
  position: relative;
}


/* Font Import */
/* Font Import commented out as requested */


/* Navigation Links */
/* Main Navigation Links */
nav ul li a {
  color: #E5E7EB;
  /* gray-200 */
  transition: color 0.2s ease-in-out;
}

nav ul li a:hover,
nav ul li a:focus,
nav ul li a.active {
  color: #FFFFFF;
  /* white */
}

/* Active state for current page */
nav ul li a[href*="website-gallery.html"] {
  color: #FFFFFF;
  font-weight: 500;
}

/* Mobile menu links */
#mobileMenu a {
  color: #E5E7EB;
  /* gray-200 */
}

#mobileMenu a:hover,
#mobileMenu a:focus,
#mobileMenu a.active {
  color: #FFFFFF;
}

/* Navigation Icon Styles */
.nav-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.nav-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Body and Main Styles */
body {
  margin: 0;
  padding: 0;
  font-family: "29LT Kaff", -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

main {
  margin: 0;
  padding: 0;
}

/* Navbar transition */
nav {
  transition: transform 0.3s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  nav {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .nav-icon {
    width: 2rem;
    height: 2rem;
  }
}

/* Mobile menu smooth scrolling - Scrollbar Hidden */
#mobileMenu {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

#mobileMenu::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
  width: 0;
  height: 0;
}

/* Ensure video is responsive */
main video:not(.object-cover) {
  max-width: 100vw;
  max-height: 250px !important;
}

/* Carousel container spacing */
.carousel-container {
  margin-bottom: 3rem;
  /* Add space between pagination and footer */
}

/* Prevent horizontal scroll on small screens */
@media (max-width: 640px) {
  body {
    overflow-x: hidden;
  }
}