html, body {
  margin: 0;
  padding: 0;
}
/* ===== palette ===== */
:root{
  --bg: #fafaf9;
  --text: #1c1917;
  --muted: #78716c;
  --line: #e7e5e4;
  --dark: #111;
  --white: #fff;
}

body{
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* ===== NAV ===== */
.site-nav{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  mix-blend-mode: difference; /* keeps your cool effect */
}

.site-nav a{
  color: inherit;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 200ms ease;
}

.site-nav a:hover{
  opacity: 1;
}

/* ===== HERO (banner area) ===== */
.hero{
  height: 100vh;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.hero-content{
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-sub{
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  font-weight: 300;
  color: var(--muted);
}

/* optional soft background blob */
.hero-blob{
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  opacity: 0.10;
  pointer-events: none;
}

.hero-blob .ring{
  width: 80vw;
  height: 80vh;
  border: 1px solid #d6d3d1;
  border-radius: 999px;
  filter: blur(48px);
}

/* ===== ABOUT ===== */
.about{
  max-width: 1440px;
  margin: 0 auto;
  padding: 160px 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.about-text p{
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 300;
  color: #292524;
  margin: 0;
}

.about-image img{
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 700ms ease, transform 250ms ease, opacity 250ms ease;
}

/* image rollover requirement */
.about-image a:hover img,
.about-image img:hover{
  filter: grayscale(0);
  transform: scale(1.02);
  opacity: 0.95;
}

/* ===== Responsive ===== */
@media (min-width: 900px){
  .about{
    grid-template-columns: 1.6fr 1fr;
    gap: 48px;
  }
}
.hero {
  height: 100vh;
  background-image: url("../images/hero-banner.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 32px;
  overflow: hidden;
}

/* dark overlay so text is readable */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 0;
}

/* keep text above overlay */
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
}

/* ===== HERO TYPOGRAPHY ===== */
#logo-container {
  font-size: 15rem;      /* try 16rem / 18rem / 20rem */
  line-height: 0.7;
  margin-bottom: 3rem;
  color: white;
}
@media (max-width: 900px) {
  #logo-container {
    font-size: 9rem;
  }
}
/* ===== HERO SUBTITLE ===== */
.hero-sub {
  font-size: 2.5rem;      /* controls size */
  letter-spacing: 0.45em;  /* spacing between letters */
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1.5rem;
  color: black;  /* light gray */
  opacity: 1;
}
@media (max-width: 900px) {
  .hero-sub {
    font-size: 1.1rem;
    letter-spacing: 0.3em;
  }
}
/* Make hero content sit above all absolute layers */
.hero {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Make sure the logo actually renders + stays on top */
#logo-container {
  position: relative;
  z-index: 6;
  display: flex;
  justify-content: center;
  align-items: baseline;
  font-size: 18rem;
  line-height: 0.7;
  margin: 0 0 2rem 0;
  color: white;
}

/* Ensure letters inherit color */
#logo-container .letter {
  color: inherit;
}
/* Subtle glow for hero subtitle */
.hero-sub {
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.45),
    0 0 14px rgba(255, 255, 255, 0.15);
}
.hero-sub {
  color: #4b5563; /* your starting gray */
  letter-spacing: 0.4em;

  /* STRONG white glow / border */
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff,
     0 0 8px rgba(255,255,255,0.9),
     0 0 16px rgba(255,255,255,0.6);
}
.about {
  padding: 6rem 2rem;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 300;
}

.about-image {
  display: flex;
  justify-content: flex-end;
}

.about-image img {
  width: 100%;
  max-width: 480px;  /* smaller portrait */
  height: auto;
  display: block;
}

.about-image img {
  display: block;
  width: 440px;
  max-width: none;
  height: auto;
}
.about {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 4rem;

  display: grid;
  grid-template-columns: 1.2fr 0.8fr; /* text bigger, image smaller */
  gap: 6rem;
  align-items: center;
}
.about-text p {
  font-size: 2.2rem;   /* smaller than before */
  line-height: 1.3;
  max-width: 520px;    /* keeps it readable */
}
.about-image {
  justify-self: end; 
  margin-left: 25rem;  /* pushes image to the right */
}
.about-image img {
  filter: grayscale(100%);
}
#logo-container {
  font-family: 'Bitcount Single', sans-serif;
   font-weight: 600; /* try 400–800 */
   font-size: 15rem; /* try larger sizes like 20rem or 24rem */
}
footer h2 {
  font-family: 'Bitcount Single', sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
body {
  font-family: 'DM Mono', monospace;
}

#logo-container,
footer h2 {
  font-family: 'Bitcount Single', sans-serif;
}
footer {
  margin-left: 25px;
}
footer {
  background-color: #bfbfbf;
  padding: 2rem 0;
}
.site-footer {
  width: 100%;
  background-color: #cfcfcf;
  padding: 60px 0;
}





