@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

:root {
  --color-bg-primary: #0e0115;
  --color-bg-dark: #2b0c3b; /* New variable for a darker shade */
  --transparent: hsla(0, 0%, 100%, 0);
  --color-border: hsla(0, 0%, 100%, 0.08);
  --color-text-primary: #f7f8f8; /* Light text color */
  --color-brand-text: #fff;
  --color-text: rgb(212, 212, 212); /* Light grey text color */
  --color-brand-bg: #6f2b92;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::-webkit-scrollbar {
  display: none;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Inter", sans-serif;
  background: var(--color-bg-primary);
  color: #fff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.wrapper {
  position: relative;
  z-index: 0;
}

.page-content {
  padding-bottom: 50px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 800px;
}

h1 {
  font-size: 80px;
  letter-spacing: -0.02em;
  font-weight: 500;
  background: #fcfcfc;
  background: linear-gradient(to bottom, #fcfcfc 0%, #97979e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: #fff;
}

i {
  position: relative;
  top: 1.5px;
}

.divider {
  width: 100%;
  height: 1px;
  margin: 75px 0;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(0, 0, 0, 0) 100%
  );
}

@media (max-width: 900px) {
  .container {
    padding: 2em;
  }
}

.about-hero h1 {
  color: var(--color-text-primary);
}

.about-hero table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  background-color: rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  overflow: hidden;
}

.about-hero td {
  padding: 15px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 300;
}

.about-hero tr:last-child td {
  border-bottom: none;
}

.about-hero td:first-child {
  color: var(--color-text-primary);
  font-weight: 500;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 60px;
  }

  .about-hero td {
    padding: 10px;
  }
}
