@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');


.site-header {
     top: 0;
height: 20%; /* Set a fixed height for the header */
  width: 1000px;
margin-left: 270px;
}



body {
  font-family: 'Inter', sans-serif;
  margin-left: 100px;
  background: #fff;
  color: #000;
}



.image-gallery {
  display: flex;
  flex-wrap: wrap;
  padding-top: 4%;
  justify-content: space-between;
  gap: 10px;
  max-width: 100%;
  margin: 0 auto;
}

.image-item {
  flex: 1 1 calc(50% - 10px);
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
}

.image-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}


.fixed-return {
  position: fixed;
  top: 80%;
  left: 100px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 30px; /* adjust as needed */
  text-decoration: none;
  color: black
}

footer {
  font-family: 'Merriweather', serif;
  font-size: 10px;
   position: fixed;
            bottom: 0;
            width: 100%;
            height: 50px;
 
  color:  #A9A9A9;
}

.menu {  position: relative;
  margin-top: 40px;
}

@keyframes pulseOuterGlowLavender {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(111, 81, 147, 0.3),
      0 0 5px rgba(111, 81, 147, 0.2),
      0 0 15px rgba(111, 81, 147, 0);
  }
  50% {
    text-shadow:
      0 0 8px rgba(111, 81, 147, 0.7),
      0 0 12px rgba(111, 81, 147, 0.5),
      0 0 15px rgba(111, 81, 147, 0.3);
  }
}

.menu a:hover {
  animation: pulseOuterGlowLavender 3s infinite ease-in-out;
  color: #E6E6FA; 
}

/* Remove bullets and reset margins/padding */
.menu ul,
.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Main menu items */
.menu > ul > li {
  margin-bottom: 25px;
}

.menu > ul > li > a {
  font-size: 22px;
  font-weight: 700;
  color: black;
  text-decoration: none;
  cursor: pointer;
  display: block;
  padding: 6px 0;
}




.page-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  width: 100%; /* Changed from max-width */
}
@keyframes pulseOuterGlowLavender {
  0%, 100% {
    text-shadow:
      0 0 2px rgba(111, 81, 147, 0.3),
      0 0 5px rgba(111, 81, 147, 0.2),
      0 0 15px rgba(111, 81, 147, 0);
  }
  50% {
    text-shadow:
      0 0 8px rgba(111, 81, 147, 0.7),
      0 0 12px rgba(111, 81, 147, 0.5),
      0 0 15px rgba(111, 81, 147, 0.3);
  }
}









.menu a:hover {
  animation: pulseOuterGlowLavender 3s infinite ease-in-out;
  color: #E6E6FA; 
}

.menu-img a:hover {
  animation: pulseOuterGlowLavender 3s infinite ease-in-out;
  color: #E6E6FA; 
}

.menu-label {
  cursor: default;         /* shows default arrow cursor, not pointer */
  color: black;            /* same color as links */
  font-size: 22px;
  font-weight: bold;
  user-select: none;       /* optional: prevent text selection */
  display: inline-block;
  padding: 4px 0;
}


/* Submenu container */
.submenu {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 2s ease, opacity 2s ease;
  margin-left: 20px
  margin-bottom: 5px;
}

/* Show all submenus when hovering over the parent <li> with class "has-submenu" */
.has-submenu:hover .submenu {
  max-height: 1000px; /* large enough to show all nested submenus */
  opacity: 1;
}

/* Style all submenu list items — including non-links */
.submenu li {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  padding: 4px 0;
  padding-left: 10px;
  cursor: default; /* not a link, so default cursor */
}

/* Override for actual links inside submenu items */
.submenu li a {
  color: #000;
  text-decoration: none;
  display: block;
  font-weight: 500;
}

/* Optional: subtle hover effect only for real links */
.submenu li a:hover {
  color: #444;
}

/* Hover colors */
.menu a:hover,
.submenu li a:hover {
  color: #0077cc;
  text-decoration: underline;
}

.page-wrapper {
  display: flex;
  gap: 40px; /* optional spacing between menu and content */
  align-items: flex-start; /* align top edges */
}

.menu {
  width: 250px; /* fix sidebar width */
  /* keep your existing menu styling */
}

.content {
  flex: 1; /* take remaining space */
  /* keep your existing content styling */
}

/* General fade-in for content */
.content-fade {
  opacity: 0;
  transform: translateY(20px); /* optional slide-up */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.content-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
    
    
    
  

a {
  position: relative;
  display: inline-block;
}


.floating-image {
  z-index: 10;
}








 
