html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: #A6A096;
}


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

body {
    font-family: "Albert Sans", sans-serif;
    font-optical-sizing: auto;
}

/* Header */
.site-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.8);
  padding: 14px 23px;
}

/* Header layout */
.header-container {
  display: flex;
  align-items: center;
}

/* Logo */
.logo img {
  height: 50px;
  width: auto;
  display: block;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 200px;
  margin-left: 300px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.main-nav a {
  text-decoration: none;
  color: #000;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 250;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* Condense spacing on medium screens */
@media (max-width: 950px) {
  .main-nav {
    gap: 24px;         /* was 48px */
    margin-left: 72px; /* pulls nav closer to logo */
  }
}

/* Condense a bit more */
@media (max-width: 820px) {
  .main-nav {
    gap: 16px;
    margin-left: 40px;
  }
  .main-nav a {
    font-size: 15px;
    letter-spacing: 0.03em;
  }
}

@media (max-width: 700px) {
  .main-nav {
    display: flex;
    margin-left: auto;
    gap: 14px;
    flex-wrap: wrap;
    white-space: normal;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none;
  }
}




.hero {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 40vw, 520px); /* scales with screen size */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Background image */
  background-image: url("solar.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  margin-bottom: 0px; 
}

/* Fade the image (overlay) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* darkens + makes text readable */
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  padding: 0 24px; /* breathing room on small screens */
  max-width: 1100px;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-weight: 650;
  line-height: 1.15;

  /* Responsive text sizing */
  font-size: clamp(16px, 3.2vw, 52px);
}

.hero h1 em {
  font-style: italic;
  font-weight: 350;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(0, 0, 0, 0.8); /* matches header */
  padding: 80px 60px;
}

/* Footer layout */
.footer-container {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Profile image */
.footer-image img {
  width: 200px;
  height: auto;
  display: block;
}

/* Footer columns */
.footer-column h3 {
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-column p {
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Links */
.site-footer a {
  color: #000;
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-image img {
    width: 160px;
  }
}

/* Generic page spacing */
.page {
  padding: 80px 60px;
}


/*ABOUT ME PAGE----------------------------------------------------------------------------------------------------------------------------------------*

/* Reusable 2-column “borderless table” section */
.two-col {
  display: grid;
  grid-template-columns: minmax(260px, var(--left-col, 33%)) 1fr; /* adjustable */
  gap: 150px;
  align-items: start;
  margin-bottom: 120px;
}

/* Left column */
.two-col__left h1,
.two-col__left h2 {
  margin: 0;
  font-weight: 450;
  line-height: 1.3;
}

.two-col__left h1 {
  font-size: 34px;      /* bigger heading */
  font-weight: 300;    /* lighter Albert Sans */
  line-height: 1.25;
}

.two-col__left h2 {
  font-size: 26px;
  font-weight: 300;
  line-height: 1.3;
}


/* Right column typography */
.two-col__right h2 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 600;
}

.two-col__right p {
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.two-col__right ul,
.two-col__right ol {
  margin: 0 0 24px 0;
  padding-left: 18px;
}

.two-col__right li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Responsive: stack on small screens */
@media (max-width: 900px) {
  .page {
    padding: 48px 24px;
  }

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

/* Make the column widths on the about me page different widths */
:root {
  --left-col: 30%;
}

/* Spacing for blocks inside the right column */
.about-block h2 {
  margin-top: 28px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.about-block h2:first-child {
  margin-top: 0;
}

.about-block p {
  margin: 0 0 14px 0;
  line-height: 1.65;
}

.about-block ul {
  margin: 0 0 18px 0;
  padding-left: 18px;
}

.about-block li {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* Table styling to match your aesthetic */
.table-wrap {
  overflow-x: auto;              /* makes it responsive on small screens */
  margin: 18px 0 18px 0;
}

.site-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.site-table thead th {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.75);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.site-table tbody td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(0,0,0,0.25);
}

.site-table tbody tr:last-child td {
  border-bottom: 0;
}

.about-block h4 {
  position: relative;
  padding-left: 24px;        /* space for the arrow */
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

.about-block h4::before {
  content: ">";              /* arrow character */
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 300;
}
