@import "tailwindcss";

/* 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;
}

/* Custom Scrollbar Styling */
/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #28457D #e5e7eb;
}

/* Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #e5e7eb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #28457D;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
}

::-webkit-scrollbar-thumb:hover {
  background: #1e3460;
}

::-webkit-scrollbar-thumb:active {
  background: #152847;
}

/* Main content wrapper */
#page-wrapper {
  min-height: 100vh;
  position: relative;
}


/* Font Import */
@font-face {
  font-family: "29LT Kaff";
  src: url("../fonts/29LTKaff-Regular.woff2") format("woff2"),
       url("../fonts/29LTKaff-Regular.woff") format("woff"),
       url("../fonts/29LTKaff-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Navigation Links */
/* Main Navigation Links */
nav ul li a {
    color: #9CA3AF; /* gray-400 */
    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 */
#mobileMenu {
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

#mobileMenu::-webkit-scrollbar {
  width: 6px;
}

#mobileMenu::-webkit-scrollbar-track {
  background: transparent;
}

#mobileMenu::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}

/* Ensure video is responsive */
main video {
  max-height: 250px;
  min-width: 100vw;
}

/* 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;
  }
}
