
input:-webkit-autofill {
  -webkit-text-fill-color: white;
}

input:-webkit-autofill,
input:-webkit-autofill:focus {
  background-color: transparent !important;
  -webkit-text-fill-color: white !important;
}



/* code to make menu text shoot right on click */
@keyframes shootRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100vw);
    opacity: 0;
  }
}

.shoot-right {
  animation: shootRight 0.6s ease-out forwards;
}
/* code end  to make menu text shoot right on click */



/* code to scale images in contact us page */
.responsive-icon {
  max-width: 100%;
  height: auto;
  width: 100%; /* or use % or vw if you want it to scale */
}
/* code end to scale images in contact us page */





/* code to make the central text box dimensions */
.wrap-container {
  background-color: rgba(107, 105, 104, 0.7);
  font-size: 4vw;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: auto;
  padding: 10px;
  color: white;
}
/* code end to make the central text box dimensions */









/* code to make the fade from pic to pic on the home page */

					.full-screen-image {
					  position: relative;
					  width: 100%;
					  height: 100vh;
					  overflow: inherit;
					}

					.full-screen-image img {
					  position: absolute;
					  top: 0;
					  left: 0;
					  width: 100%;
					  height: 100%;
					  object-fit: cover;
					}

					/* Base image stays visible */
					.full-screen-image img:first-child {
					  z-index: 1;
					}

					/* Overlay image fades in */
					.overlay-image {
					  z-index: 2;
					  opacity: 0;
					  animation: fadeInOverlay 3s ease-in forwards;
					}

					/* Keyframes for fade-in effect */
					@keyframes fadeInOverlay {
					  	from {
   						 opacity: 0;
						}	
					    to {
						opacity: 1;
					  }
					}

/* code end  to make the fade from pic to pic on the home page */











@font-face {
  font-family: 'se';
  src: url('fonts/SegUIVar.ttf') format('truetype'); 
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Full-page setup */
html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'se', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}

/* Top-right fixed menu */
.top-right-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

/* Hide the checkbox input */
.menu-toggle {
  display: none;
}







.menu-text-button {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  padding: 20px;
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.menu-text-button:hover {
  font-style: italic;
}


/* The menu content area */

.menu-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10; /* Higher than the image */
}

.menu-button {
  
  padding-top: 30px;
  padding-right: 50px;
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
}



.menu-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw; /* Half the viewport width */
  height: 100vh; /* Full viewport height */
  background-color: #385262;
  box-shadow: -2px 0 5px rgba(0,0,0,0.2);
  transform: translateX(100%); /* Initially off-screen */
  transition: transform 0.3s ease-in-out; }

.menu-content ul {
  list-style: none;
  padding: 60px 20px 20px; /* Adjust padding to make space for the button */
  margin: 0;
  text-align: left;
}

.menu-content ul li {
  margin: 20px 0;
}

.menu-content ul li a {
  text-decoration: none;
  color: #FFFFFF;
  font-size: 2.5rem;
  display: block;
  padding: 10px;
  transition: background-color 0.2s, color 0.2s;


}

.menu-content ul li a:hover {
  background-color: #ddd;
  color: grey;
  opacity: 0.9;




}

/* Show the menu when the checkbox is checked */ .menu-toggle:checked ~ .menu-content {
  transform: translateX(0);
}




/* Home Page Specifics */
.home-page {
    width: 100%;
    height: 100vh; /* Viewport height for full screen */
    position: relative;
    overflow: hidden;
}




/* Page Content (for other pages) */
.page-content {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}


	
	
/*	 
/*