
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
}

/* Header */
.top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  box-shadow: none;
  box-sizing: border-box;
}

.logo a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 16px;
}
.logo span {
  display: block;
  font-size: 12px;
  font-weight: normal;
  color: #767676;
}

.links a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 12px;
  transition: color 0.2s ease;
}
.links a:hover,
.logo a:hover {
  color: #666;
}

/* Hamburger menu */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: white;
  position: fixed;
  top: 60px;
  right: 0;
  width: 60%;
  max-width: 200px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 999;
}

.mobile-menu a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 15px;
  transition: color 0.2s ease;
}

.mobile-menu a:hover {
  color: #666;
}

.mobile-menu.open {
  display: flex;
}

/* Main content */
main {
  padding: 100px 40px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 30px;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.project-info {
  text-align: left;
  margin-bottom: 40px;
}

.project-info h2 {
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.project-info i {
  font-size: 1rem;
  opacity: 0.8;
}

.project-info p {
  margin: 5px 0;
  font-size: 0.9rem;
}

/* --------------------------- */
/*     GRID + IMAGE MODAL      */
/* --------------------------- */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 20px;
  margin-top: 40px;
}

.image-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.image-grid img:hover {
  transform: scale(1.02);
}

#imgModal {
  display: none;
  position: fixed;
  z-index: 3000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

#imgModal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

#imgModal.close-area {
  cursor: pointer;
}



/* Footer */
footer {
  text-align: center;
  padding: 30px 0;
  border-top: 0px solid #ddd;
}

footer .social a {
  margin: 0 10px;
  display: inline-block;
}

footer .social img {
  width: 25px;
  height: 25px;
}

/* Responsive */
@media (max-width: 768px) {
  .desktop-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
}


