/* ================================
   COLOR SYSTEM — BLACK & GOLD
================================ */
:root {
  --black: #0F0F0F;
  --gold: #C9A24D;
  --white: #F5F5F5;
  --gray: #9A9A9A;
  --brand-gold: #c9a24d;
}

/* ================================
   RESET & BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  padding-top: 86px;
}

/* ================================
   HEADER
================================ */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 86px;
  z-index: 1000;
  border-bottom: 1px solid rgba(201, 162, 77, 0.2);
}

.site-header,
.site-header * {
  box-sizing: border-box;
  line-height: normal;
}

.site-header .nav a,
.site-header .nav-link {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
}

.logo img {
  height: 46px;
}

/* ================================
   NAV CONTAINER
================================ */
.nav {
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 30px;
  height: auto;
}

/* ================================
   NAV ITEMS
================================ */
.nav a,
.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2px;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  line-height: normal;
}

.nav a::after,
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav a:hover,
.nav-link:hover {
  color: var(--gold);
}

.nav a:hover::after,
.nav-link:hover::after {
  width: 100%;
}

/* ================================
   DROPDOWN
================================ */
.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-dropdown .nav-link::after {
  display: none;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% - 20px);
  left: 0;
  background: #0F0F0F;
  border: 1px solid rgba(201,162,77,0.3);
  min-width: 180px;
  display: none;
  flex-direction: column;
  z-index: 1000;
}

.dropdown-menu a {
  padding: 12px 20px;
  color: #E5E5E5;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.dropdown-menu a:hover {
  background: rgba(201,162,77,0.15);
  color: var(--gold);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: flex;
}

.dropdown-menu a::after {
  display: none !important;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 20px;
  bottom: 8px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.dropdown-menu a:hover::before {
  width: calc(100% - 40px);
}

/* ================================
   PAGE HERO
================================ */
.page-hero {
  min-height: 100vh;
  padding: 200px 80px 100px;
  background: linear-gradient(
    120deg,
    #000000 0%,
    #1A1A1A 40%,
    #6F5323 100%
  );
  color: #FFFFFF;
}

/* ================================
   CONSTRUCTION HERO
================================ */
.construction-hero {
  position: relative;
  height: 90vh;
  background: url("../images/Construction.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.hero-content {
  position: relative;
  text-align: center;
  color: #F5F5F5;
  max-width: 800px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 52px;
  letter-spacing: 4px;
}

.hero-content p {
  color: #CFCFCF;
  margin-top: 30px;
  line-height: 1.7;
}

.hero-line {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin-bottom: 30px;
}

/* ================================
   SECTIONS
================================ */
.content-section {
  padding: 120px 80px;
}

.content-container {
  max-width: 1200px;
  margin: auto;
}

.light-gold {
  background: #F8F6F2;
}

.dark {
  background: #0C0C0C;
  color: #F5F5F5;
}

/* ================================
   DARK SECTION TEXT NORMALIZATION
================================ */
.dark p,
.dark li,
.dark ul,
.dark span,
.dark div {
  color: #D1D1D1;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4 {
  color: #FFFFFF;
}

/* ================================
   HEADINGS
================================ */
.content-section h2 {
  font-size: 28px;
  letter-spacing: 2px;
  color: #C9A24D;
  margin-bottom: 30px;
}

.section-intro {
  color: #B5B5B5;
  margin-bottom: 80px;
}

/* ================================
   FEATURE LIST
================================ */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  color: #555;
}

/* ================================
   PROJECTS (FIRST DEFINITION)
================================ */
.project-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 120px;
}

.project-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.project-images img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #000;
}

.project-content h3 {
  font-size: 26px;
  margin-bottom: 10px;
}

.project-role {
  color: #C9A24D;
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

/* ================================
   PROJECT STATUS
================================ */
.project-status {
  display: inline-flex;          /* change from inline-block */
  align-items: center;
  justify-content: center;       /* centers horizontally */
  text-align: center;            /* centers multi-line text */
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
}


.project-status.completed {
  border: 1px solid #c9a24d;
  color: #c9a24d;
}

.project-status.ongoing {
  border: 1px solid #999;
  color: #999;
}

/* ================================
   PROJECT HEADER
================================ */
/* ================================
   PROJECT META STRUCTURE
================================ */

.project-header {
  display: block;
}

.project-header h3 {
  margin: 0;
  font-size: 26px;
  color: #FFFFFF;
}

/* Row under title */
.project-meta {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 10px;
}

/* Stats */
.project-stats {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
    justify-content: center;       /* centers horizontally */
  text-align: center;            /* centers multi-line text */
}

.project-stats span {
  position: relative;
  padding-right: 18px;
    justify-content: center;       /* centers horizontally */
  text-align: center;            /* centers multi-line text */
}

.project-stats span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 12px;
  width: 1px;
  background: rgba(255,255,255,0.25);
}

.project-stats strong {
  color: #FFFFFF;
}


/* ================================
   READ MORE
================================ */
.project-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}

.project-content.expanded .project-more {
  max-height: 1200px;
}

.read-more-btn {
  margin-top: 25px;
  background: none;
  border: none;
  color: #C9A24D;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  padding: 0;
}

.read-more-btn:hover {
  text-decoration: underline;
}

.project-bullets {
  margin-top: 10px;
  padding-left: 20px;
}

.project-bullets li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* ================================
   PROJECT CARD STYLE (SECOND OVERRIDE)
================================ */
.project-block {
  padding: 60px;
  margin-bottom: 80px;
  border: 1px solid rgba(201, 162, 77, 0.35);
  border-radius: 12px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.02),
    rgba(0,0,0,0.4)
  );
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.project-block:hover {
  border-color: rgba(201, 162, 77, 0.7);
  transform: translateY(-3px);
}

/* ================================
   FOOTER
================================ */
.site-footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 40px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
  .project-block {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
  }

  .project-images {
    grid-template-columns: 1fr;
  }

  .project-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .project-header-stats {
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .content-section {
    padding: 100px 30px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .site-header {
    padding: 20px 30px;
  }

  .nav {
    right: 30px;
  }
}

.project-block {
  scroll-margin-top: 140px;
}




/* ================= MOBILE HERO ================= */
@media (max-width: 768px) {

  .page-hero {
    min-height: 70vh;
    padding: 140px 24px 60px;
  }

  .construction-hero {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 32px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.6;
  }

}

/* ================= MOBILE SECTIONS ================= */
@media (max-width: 768px) {

  .content-section {
    padding: 80px 24px;
  }

  .content-container {
    width: 100%;
  }

}

/* ================= MOBILE PROJECTS ================= */
@media (max-width: 992px) {

  .project-block {
    grid-template-columns: 1fr;
    padding: 30px 20px;
    gap: 30px;
  }

  .project-images {
    grid-template-columns: 1fr;
  }

  .project-images img {
    width: 100%;
    height: auto;
  }

  .project-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .project-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}html, body {
  overflow-x: hidden;
}
h1 {
  font-size: clamp(28px, 5vw, 52px);
}

h2 {
  font-size: clamp(22px, 4vw, 28px);
}

/* ================= MOBILE NAVBAR (DESKTOP STYLE RESIZED) ================= */
@media (max-width: 992px) {

  .site-header {
    padding: 0 24px;
    height: 70px;
  }

  body {
    padding-top: 70px; /* match new header height */
  }

  .logo img {
    height: 34px;
  }

  .nav {
    right: 24px;
    gap: 18px;
  }

  .nav a,
  .nav-link {
    font-size: 13px;
    letter-spacing: 0.3px;
  }

  .dropdown-menu {
    min-width: 160px;
  }

  .dropdown-menu a {
    font-size: 13px;
    padding: 10px 16px;
  }

}
/**/
/* MOBILE DROPDOWN OPEN STATE */
.nav-dropdown.open .dropdown-menu {
  display: flex;
}
.nav-link {
  user-select: none;
}













