/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Mona Sans', Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  background-color: #fff;
  line-height: 1.5;
}

.container {
  min-height: 100vh;
  position: relative;
}

/* Header styles */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
}

.logo {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: center;
}

.logo-image {
  height: 40px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 16px;
}

.nav-item {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  /*background-color: #f3f3f3;*/
}

.nav-item.active {
  background-color: #f3f3f3; /* Green color for active tab */
}






/* Notification styles */
.notification {
  position: fixed; /* Changed from absolute to fixed */
  background-color: #000;
  color: #fff;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 1000;
  transition: opacity 0.2s ease;
  pointer-events: none; /* Prevent notification from interfering with clicks */
}

.notification.hidden {
  opacity: 0;
  visibility: hidden;
}

.notification.show {
  opacity: 1;
  visibility: visible;
}






/* Content styles */
.content {
  padding: 0 24px;
  padding-top: 64px;
}

/* Categories section */
.categories-section {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}

.categories-left {
  width: 33.333%;
}

.categories-right {
  width: 66.666%;
}

.section-title {
  font-size: 32px;
  /*text-transform: uppercase;*/
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 60px;
}

.project-types {
  margin-top: 4px;
}

.project-type {
  font-size: 12px;
  margin-bottom: 4px;
}

/* Projects grid */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.project-item {
  text-decoration: none;
  color: inherit;
  display: block;
}

.project-image-container {
  position: relative;
aspect-ratio: 16 / 10;
  overflow: hidden;
  cursor: pointer; /* Add this line */
}

.project-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}


/* .project-item:hover .project-image {
  transform: scale(1);
}*/

.project-overlay {
  position: absolute;
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: bold;
}

.project-overlay.mums {
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fde047; /* Yellow color */
}

/* Projects list */
.projects-list {
  margin-top: 32px;
}

.projects-list.hidden {
  display: none;
}

.list-item {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #e5e5e5;
}

.list-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.list-title {
  font-weight: 500;
}

.list-category {
  font-size: 14px;
  color: #6b7280;
}

.list-description {
  font-size: 14px;
  color: #6b7280;
}




.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  color: white;
  /*background: rgba(0, 0, 0, 0.1);*/
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0) 5%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-caption h3 {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

.hero-caption p {
  font-size: 10px;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}



/* Hero image */
.hero-image {
  width: 100%;
  height: 800px;
  margin-top: 32px;
  margin-bottom: 32px;
  overflow: hidden;
      background: black;
}

.hero-img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }
}s

/* Hide elements */
.hidden {
  display: none;
}



/* Footer styles */
.footer {
  margin-top: 40px;
  padding: 40px 0px;
  border-top: 1px solid #e5e5e5;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /*max-width: 1200px;*/
  margin: 0 auto;
}

.footer-left {
  display: flex;
  align-items: flex-start;
}

.copyright {
  font-size: 14px;
  color: #6b7280;
}

.footer-right {
  display: flex;
  gap: 80px;
}

.footer-section {
  display: flex;
  flex-direction: column;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-bottom: 16px;
  color: #6b7280;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #6b7280;
}

.footer-text {
  font-size: 14px;
  color: #000;
}





/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-image {
    height: 400px;
  }

  .hero-caption h2 {
    font-size: 20px;
  }

  .hero-caption p {
    font-size: 12px;
  }

  .project-caption {
    bottom: 15px;
    left: 15px;
    max-width: 70%;
  }

  .project-caption h3 {
    font-size: 16px;
  }

  .project-caption p {
    font-size: 10px;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-right {
    gap: 40px;
  }

  .footer {
    padding: 32px 24px;
  }

  .logo-image {
    height: 32px;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .project-caption {
    bottom: 12px;
    left: 12px;
    max-width: 75%;
  }

nav {
  display: flex;
  gap: 5px;
}

.content {
  padding: 0 24px;
  padding-top: 10px;
}

.section-title {
  font-size: 20px;
  /*text-transform: uppercase;*/
  letter-spacing: 0.05em;
  font-weight: 400;
  margin-bottom: 20px;
}

.categories-right {
  width: 100%;
}
  .project-caption h3 {
    font-size: 14px;
  }

  .project-caption p {
    font-size: 9px;
  }

  .footer-content {
    gap: 24px;
  }

  .footer-right {
    gap: 24px;
  }

  .logo-image {
    height: 28px;
    max-width: 120px;
  }
}




