body {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 10pt;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
max-width: 100vw; /* Adjust this value as needed */
    overflow-x: hidden; /* Hide horizontal scrollbar */
letter-spacing: 10%;
	transition: background-color 0.5s ease;
	bottom: 0;

}


a {
	text-decoration: none;
	color: #000000;
}

a:hover {
	text-decoration: underline;
	cursor: pointer;
}

nav {
  margin-top: 0;
  padding-left: 1em;
  padding-right: 1em;
	padding-bottom: 1vh;

	z-index: 1000;
}

nav:visited {
	color: white;
  margin-top: 0;
  padding-left: 1em;
  padding-right: 1em;
	padding-bottom: 0vw;

	z-index: 1000;
}

.svg-container {
  margin-top: 0;
  width: 100vw;
  max-width: 100%;
  height: auto;
  align-self: flex-start;
	  color: white; /* Ensure text is visible */

}

.title-header {
  text-align: left;
  padding-top: 0%;
	padding-bottom: 2em;
}

.about {
	color: white;
	bottom: 50%;
	 text-align: center;
  text-justify: inter-word;
  font-weight: 400;
  letter-spacing: -2%;
	mix-blend-mode: difference;

}

.title-header h2 {
  font-size: 4em;
  font-weight: 400;
  letter-spacing: -2.5px;
  text-align: left;
	
  padding-top: 0.8em;
}

#project-index {
  position: relative;
  transition: top 0.3s ease-in-out;
  list-style: none;
  padding: 0;

}



.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure the fixed element is on top */
}

.project-title {
  font-size: 1.5em;
	font-weight: 600;
	letter-spacing: -0.03em;
  display: flex;
  justify-content: space-between;
  align-items: center; /* Align items vertically */
  padding-bottom: 1.5em;
}

.project-title:hover {
  text-decoration: underline;
	cursor: pointer;
}
.project-title:active {
  text-decoration: underline;
}

.project-detail {
  font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0;
  margin-left: 10px; /* Adjust spacing between title and detail */
  flex-shrink: 0; /* Prevent detail from shrinking */
}

.project-detail:hover {
  text-decoration: none;
}
.project-detail:active {
  text-decoration: none;
}

#project-index li {
  cursor: pointer;
  margin: 0em;
	padding-top: 1em;
	padding-bottom: 1em;
  border-top: 1.25pt solid black;
  list-style: none;
}

#project-index a {
	text-decoration: underline;
	cursor: pointer;
}


#project-index li:hover h3 {
  text-decoration: underline;
	padding-bottom: 0;
}

#project-index li:active h3 {
  text-decoration: underline;
	padding-bottom: 0;
}
.project-dropdown {
	
  display: none;
  padding: 0;
	padding-top: 0em;
	padding-bottom: 10em;
  transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-10px);
  position: relative;
	
}

.project-dropdown.active {
  display: block;
  transform: opacity 0.3s ease, transform 0.3s ease;

}


.project-dropdown p {
  padding-right: 60%;
  margin-right: 30px; 
	font-size: 12pt;
}

.project-dropdown img {
width: 100%;
}

/* Add CSS to style the close button */
.close-btn {
  position: fixed;
  top: 80px; /* Adjust as needed */
  right: 40px; /* Adjust as needed */
  z-index: 1000; /* Ensure the close button is above other elements */
  background-color: white;
  color: #000000; /* Close button color */
  border: solid;
	border-color: black;
  cursor: pointer;
  font-size: 4em;
	width: 65px;
}

.close-btn:hover {
  background-color: black;
    color: #FFFFFF; /* Close button color */
	cursor: pointer;
}



video {
  max-width: 100%;
  object-fit: cover;
  animation: play-loop 20s infinite;
  object-position: center;
}



.project-images {
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: center;
  margin-top: 0; /* Adjusted to align to the top */
  margin-bottom: 20px;
  position: relative;
}

.project-images::-webkit-scrollbar {
  width: 10px;
  height: 5px;
  scroll-behavior: smooth;
}

.project-images::-webkit-scrollbar-track {
  background: #ffffff;
  scroll-behavior: smooth;
}

.project-images::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
  scroll-behavior: smooth;
}




/* Adjust spacing between carousel items */
.project-images::before,
.project-images::after {
  content: "";
  flex: 0 0 10px;
  display: none;
}





.footer {
	z-index: 1000;
	opacity: 100%;
  backdrop-filter: blur(0.4em);
	padding-left: 1vw;
	padding-right: 1vw;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%; /* Adjust this value as needed */
    margin: 0 auto; /* Center the footer */
	position: sticky;
   transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
		mix-blend-mode: difference;


}

.footer p {
  font-size: .7em;
	font-weight: 600;
	letter-spacing: -0.3px;
	opacity: 100%;
	color: black;

}



.footer:hover {
  background-color: white; 
	  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	cursor: default;
    opacity: 100%;
    backdrop-filter: blur(5px);
		mix-blend-mode: difference;


}

.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(5px);
    pointer-events: none;
    z-index: 1000;
}


h5 {
	
	font-size: 2vw;
  font-weight: 400;
  letter-spacing: -.75px;
	margin-top: -.2%;
  text-align: left;
}




h3 {
  font-weight: 400;

}
h2{
	 font-size: 3vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
	padding-right: 45%;
	
}

.current-time h4 {
    padding-left: 1.5em;
}

p {
  font-weight: 400;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.project-information {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	padding-left: 10em;
	padding-right: 10em;
}

.project-column {
	flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0;
  padding-bottom: 1.5em;
  padding-top: 0em;
	padding-right: 0;
}

.project-column h2 {
	padding-top: 0em;
	width: 20%;
}

.project-column2 {
	flex-basis: 49%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 1.5em;
  padding-top: 0em;
	padding-right: 0em;
	
}

.project-column2 p {
	max-width: 500px;
	width: 100%;
	margin-left: 1em;


}

.project-column2 h3 {
	font-size: 12pt;
	color:black;
	font-weight: 600;
	padding-top: 0em;
	letter-spacing: -0.02rem;
	width: 100%;
	margin-left: 1em;
}

.column {
  flex-basis: 45%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 0em;
  padding-top: 4em;
	padding-right: 0em;
	
	

}

.column h4 {
  font-size: 3vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
}

.place h4 {
     padding-left: 0em;
}

.column h5 {
  padding-left: 0em;
}

.column3 {
	padding-top: 0;
	padding-left: 0vw;
}




.landing-page {
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  position: relative;
	padding: 0;
  width: 100%;
  height: 100vh;
	width: 100%;
  overflow: hidden;

}

.landing-page h4 {
  font-size: 3.8vw;
	letter-spacing: -0.1rem;
  width: 85vw; /* Adjust this for how wide you want it (80% of viewport width) */
  text-align: center;
	line-height: 95%;
      font-weight: 300;
	bottom: 0;
	  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */


}

.svg-container{
	  color: white; /* Ensure text is visible */
mix-blend-mode: difference;

}

.svg-container2 {
	  color: black; /* Ensure text is visible */
bottom: 0;

}

.svg-container2 img {
padding-bottom: -100vh;

}

.landing-page .svg-container {
  margin-bottom: 0%;
background: black;
	top: 0;
	width: 100%;
}

/* Carousel Container - Full screen */
.carousel {
  position: absolute;

top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0; /* Behind other content */
  overflow: hidden;
	background: black;
}

/* Individual Carousel Items */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active Carousel Item */
.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

/* Landing Page Content (SVG and About) */
.landing-page-content {
  position: relative;
  z-index: 2; /* Above the carousel */
  text-align: center;
  color: white; /* Ensure text is visible */
}


/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
	width: 50%;
	height: 100%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0);
  color: white;
  border: none;
  padding: 0;
  cursor: pointer;
	z-index: 1000;
	 font-size: 3.8vw;
}

.carousel-btn.prev {
  left: 0.5em;
}

.carousel-btn.next {
  right: 0.5em;
}

.svg-container, img {
	text-align: center;
  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}


/* Fixed Project Info Button */
.project-info-btn {
  position: fixed;
  top: 20px;
  left: 20px; /* Left aligned */
  background-color: white;
  border: 2px solid black;
  color: black;
  padding: 10px 20px;
  cursor: pointer;
  z-index: 10;
}

/* Dropdown Container */
.project-info-dropdown {
  display: none; /* Hidden by default */
  position: fixed;
  top: 60px; /* Slightly below the buttons */
  left: 20px; /* Same alignment as the Project Info button */
  width: 30%; /* Takes 30% of the browser width */
  background-color: white;
  padding: 20px;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 9;
  transition: all 0.3s ease;
}

.project-info-dropdown p {
  margin: 0;
  font-size: 14px;
  color: #333;
}


/* Thumbnail styling */
.thumbnail {
    margin-right: 0px; /* Add spacing */
}

.thumbnail-img {
    width: 113px; /* Adjust size of thumbnail */
    height: 63px; /* Ensure the image is square */
    object-fit: cover;
    border-radius:0px;
    border: none; /* Optional border */
}

.thumbnail-img:visited {
    display: none;
}


@media only screen and (max-width: 800px)
{
	
    nav {
  margin-top: 4em;
  padding-left: 1em;
  padding-right: 1em;
	padding-bottom: 1vh;

	z-index: 1000;
}

.project-dropdown p {
  width: 80%;
  padding-right: 0%;
  margin-right: 0px; 
	font-size: 12pt;
    letter-spacing: 0em;
}

.about {
	color: white;
	bottom: 50%;
	 text-align: center;
  text-justify: inter-word;
  font-weight: 400;
  letter-spacing: -2%;
	mix-blend-mode: difference;

}

	
	
	.landing-page h4 {
  font-size: 5.5vw;
	
  width: 85vw; /* Adjust this for how wide you want it (80% of viewport width) */
  text-align: center;
	line-height: 97%;
      font-weight: 300;
	bottom: 0;
	  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */


}
	
	.title-header h2 {
  font-size: 3em;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  padding-top: 0;
  width: 100%;
}
	
	.project-dropdown {
	
  display: none;
  padding: 0;
	padding-top: 0em;
		padding-bottom: 5em;
  transition: opacity 0.3s ease, transform 0.3s ease;
	transform: translateY(-10px);
  position: relative;
	
}

.project-information {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	padding-left: 1em;
	padding-right: 1em;
}

.project-column {
	flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0;
  padding-bottom: 1em;
  padding-top: 0em;
	padding-right: 0;
}

.project-column h2 {
	padding-top: 0em;
	width: 100%;
}

.project-column2 {
	flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 1em;
  padding-top: 0em;
	padding-right: 0em;
	
}

.project-column2 p {
	flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 1em;
  padding-top: 0em;
	padding-right: 0em;
    letter-spacing: 0em;
	
}

.project-column2 h3 {
	font-size: 12pt;
	color:black;
	font-weight: 600;
	padding-top: 0em;
	letter-spacing: -0.02rem;
	width: 100%;
	margin-left: 0em;
}
	
	.column {
  flex-basis: 100%;
		left: 0%;
		right: 0%;
  margin-bottom: 0em;
  padding-left: 0.5em;
  padding-bottom: 0.5em;
  padding-top: 0em;

}
	
	.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
    flex-basis: 100%;

}
	

	

	
	.column h4 {
  font-size: 7vw;
		line-height: 100%;
  font-weight: 400;
  letter-spacing: -.75px;
  text-align: left;
  margin: 0;

}
	h5 {
	
	font-size: 4.5vw;
  font-weight: 400;
  letter-spacing: -.5px;
	margin-top: -.2%;
    padding-left: 5em;
  text-align: left;
}
	
	h6 {
	
	font-size: 1vw;
  letter-spacing: -.5px;
	margin-top: -.2%;
    padding-left: 5em;
  text-align: left;
}
	
	.column h5 {
  padding-left: 1em;
}
	
	.project-column2 {
	flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 1.5em;
  padding-top: 0em;
	padding-right: 0em;
	
}
	
	
	.project-column2 p {
	width: 100%;
	margin-left: 0vw;
	margin-right:0vw;
}

h2{
	 font-size: 6vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.02rem;
  text-align: left;
  margin: 0;
  padding-right: 5%;

	
}


.close-btn {
  position: fixed;
  top: 90px; /* Adjust as needed */
  right: 10px; /* Adjust as needed */
  z-index: 1000; /* Ensure the close button is above other elements */
  background-color: white;
  color: #000000; /* Close button color */
  border: solid;
	border-color: black;
  cursor: pointer;
  font-size: 2em;
	margin: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

/* Fixed Project Info Button */
.project-info-btn {
  position: fixed;
  top: 20px;
  
  background-color: white;
  border: 0.5px solid black;
  color: black;
  cursor: pointer;
  z-index: 10;
}
	

}
	

