/* ============================
   ABOUT PAGE
============================ */

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  display: flex;
  flex-direction: column;
}

/* Floating quick-links glass background */
.nav-right {
  position: fixed;
  top: 16px;
  right: 40px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 18px;
  background: rgba(251, 247, 239, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
}

body.dark .nav-right {
  background: rgba(15, 15, 16, 0.6);
}

/* Back arrow */
.back-arrow {
  position: absolute;
  top: 76px;
  left: 40px;
  font-family: "Urbanist", sans-serif;
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
  z-index: 10;
}

.back-arrow:hover {
  color: var(--text);
}

/* ============================
   MAIN ABOUT SECTION
============================ */
.about-section {
  flex: 1;
  margin: 0 20px;
  padding: 70px 20px 20px;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.about-grid {
  width: 100%;
  max-width: 1500px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 100px;
}

/* ============================
   LEFT TEXT COLUMN
============================ */
.about-text p {
  font-family: "Urbanist", sans-serif;
  font-size: 20px;
  line-height: 1.65;
  max-width: 800px;
  color: var(--text);
  margin-bottom: 20px;
}

.about-text strong {
  font-family: "Urbanist", sans-serif;
  font-weight: 600;
}

/* Brand links */
.brand-link {
  font-family: "Urbanist", sans-serif;
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.brand-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--yellow);
  transition: width 0.3s ease;
}

.brand-link:hover::after {
  width: 100%;
}

/* ============================
   RIGHT META COLUMN
============================ */
.about-meta h4 {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 10px;
}

.meta-block {
  margin-bottom: 24px;
}

.meta-year {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin-bottom: 2px;
}

.meta-role {
  font-family: "Urbanist", sans-serif;
  font-size: 19px;
  font-weight: 600;
}

/* ============================
   ICON GRID
============================ */
.icon-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 40px;
  padding: 0;
  margin: 0;
}

.icon-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: var(--text);
}

.icon-list img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

/* ============================
   FOOTER
============================ */
.footer {
  margin: 0 20px;
  padding: 0 20px 50px;
  flex-shrink: 0;
}

.footer-main h2 {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  margin-bottom: 8px;
}

.footer-bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

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

  html, body {
    overflow: auto;
  }

  .about-section {
    margin: 0;
    padding: 70px 16px 20px;
    overflow: visible;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text p {
    font-size: 18px;
  }

  .icon-list {
    grid-template-columns: 1fr;
  }

  .back-arrow {
    left: 16px;
    top: 70px;
  }

  .footer {
    margin: 0;
    padding: 0 16px 24px;
  }

  .nav-right {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: max-content;
    gap: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(251, 247, 239, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
  }

  body.dark .nav-right {
    background: rgba(15, 15, 16, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar,
  .footer {
    padding-left: 16px;
    padding-right: 16px;
  }

}