@charset "utf-8";
/* CSS Document */

/* Reset + Theme */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: #F1ece1;
  color: #0B0B0B;
  line-height: 1.6;
}

a {
  color: #4e4e4e;
  text-decoration: none;
}


/* Layout Utility */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

/* Navbar */
nav {
  background: #505668;
  box-shadow: 0 2px 8px rgba(0, 0 ,0.035);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
	font-family: basic-sans, sans-serif;
	font-weight: 700;
	font-style: normal;
}

nav li a {
  font-weight: bold;
  color: #BBBED7;
	transition: color 0.2s ease-in-out;
}

nav li a:hover {
  color: #f0f0f0;
}
/* Project Header */
.project-main {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.project-header {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.project-info {
  list-style: none;
  min-width: 200px;
}

.project-info li {
  margin-bottom: 10px;
  color: #505668;
	font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.project-info li strong {
  color: #3a353f;
  margin-right: 5px;
	font-family: basic-sans, sans-serif;
	font-weight: 700;
	font-style: normal;
}

.project-description {
  flex: 1;
  max-width: 600px;
	font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;

}

.project-description p {
  color: #3a353f;
}

/* Gallery */
.project-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns always */
  gap: 20px;
}


.project-gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease;
}

.project-gallery img:hover {
  transform: scale(1.02);
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.lightbox-img {
  max-width: 90%;
  max-height: 80%;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #BBBED7;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.5s ease;
}

.lightbox .close:hover {
  color: #fff;
}

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #BBBED7;
  font-size: 40px;
  border: none;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.nav:hover {
  color: #dd5144;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Footer */
footer {
	font-family: "acumin-pro-wide", sans-serif;
	font-weight: 400;
	font-style: normal;
  text-align: center;
  background: #3a353f;
  color: #BBBED7;
  padding: 20px;
  margin-top: 40px;
	position:fixed;
}

/* Responsive */
@media (max-width: 768px) {
  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-info {
    margin-bottom: 20px;
  }

  .project-description {
    max-width: 100%;
  }
}
