body {
    margin: 0px;
    font-family: "Lexend Zetta", sans-serif;
}

header {
    width: 100%;
    font-family: "Lexend Zetta", sans-serif;
    position: absolute;
    z-index: 10; 
    background-color: white;
    margin: 0;
    
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 36px 24px 36px;
    border-bottom: 1px solid #000;
}

.main-nav a{
    color: #000;
    font-family: "Lexend Zetta";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    font-optical-sizing: auto;
    text-decoration-line: none;
    line-height: 1;

    transition: color 0.3s ease, font-weight 0.3s ease;
    padding-bottom: 2px; 
}

.main-nav a:hover {
    color: #0099ff;
    font-weight: 300;
}

.main-nav a[style*="opacity: 0.2;"] {
    pointer-events: none; /* Disable interaction */
    text-decoration: none;
}

.site-title {
    margin: 0;
}

.site-title a{
    color: #000;
    font-family: "Lexend Zetta";
    font-size: 22px;
    font-style: normal;
    font-weight: 300;
    line-height: 1;
    font-optical-sizing: auto;
}

.site-title a:hover {
    color: #0099ff;
    font-weight: 300;
    border-bottom: none;
    text-decoration-line: none;
}

.nav-links {
    display: flex;
    gap: 30px;
    position: relative;
    top: 5px;
}


/* ==========================================================
   BODY CONTENT
   ========================================================== */
.project-page-container {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-title-col h1{
    font-family: "Lexend Zetta", sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: 20px;
    font-optical-sizing: auto;
    text-decoration-line: none;
    line-height: 1.4;
    text-align: left;
}

.project-hero img {
    width: 100%;
    height: auto;
    margin-bottom: 25px;
    padding-top: 72px;
}

.project-page-container {
    position: relative;
}

.project-details-split {
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin-bottom: 50px;
    padding: 0 20px;
}

.project-info-col{
    font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.meta-label {
    font-family: "Lexend Zetta", sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.6;
    margin-top:0;
    margin-bottom: 18px;
}

.project-gallery-static {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0 20px 60px;
}

.project-gallery-static img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.gallery-item {
  margin: 0;

}

.gallery-item-subtitle {
  font-family: "Lexend Zetta", sans-serif;
    font-size: 10px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0px;
    line-height: 1.6;
    margin-top:0;
    margin-bottom: 18px;
    width: fit-content;
    
}

.gallery-item figcaption {
  font-family: "Fustat", sans-serif;
    font-size: 16px;
    line-height: 1.4;
  margin: 8px 0 16px;

}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: auto;
  padding: 0;
}

.two-col img {
  width: 100%;
  height: auto;
  display: block;
}

.iframe-container {
  position: relative;
  width: min(100%, 480px); /* cap width so it stops growing */
  aspect-ratio: 9 / 16;
  margin: 0 auto 25px;
}

.iframe-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================
   FOOTER
   ========================================================== */

.info-footer {
    padding: 20px 50px 20px 50px;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-family: "Fustat", sans-serif;
    font-size: 14px;
    color: #666;
}

.footer-nav {
    display: flex;
    gap: 15px;
}

.footer-btn {
    text-decoration: none;
    color: #000;
    font-family: "Lexend Zetta", sans-serif;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    border: 1px solid #000;
    transition: background-color 0.3s;
}

.footer-btn:hover {
    background-color: #f0f0f0;
}



@media (max-width: 768px) {

    .main-nav {
        padding: 12px 18px 16px 18px; /* Reduce padding on mobile */
    }

    .site-title a{
        font-size: 16px;
    }
    
    .nav-links {
        gap: 10px;
    }

    .nav-links a{
        font-size: 16px;
    }
    
    .project-hero img {
        padding-top: 65px;
        padding-bottom: 0px;

    }

    .project-details-split {
        flex-direction: column;
        gap: 10px; /* biar lebih rapet di mobile */
    }

    .project-title-col h1 {
        font-size: 32px; /* optional, biar ga kegedean */
        margin-bottom:0px;
        margin-top: 0px;
    }

    .project-info-col {
        font-size: 15px;
        line-height: 1.5;
        margin-top: 0px;
        padding-top: 0px; 
    }
    .info-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

}
