@font-face {
    font-family: 'Exo Sans';
    src: url('fonts/exo-font/ExoRegular-ymMe.otf') format('opentype');
}   


@font-face {
    font-family: 'citizenlytics-font';
    src: url('fonts/falling-sky-font/FallingSkyExtrabold-redB.otf') format('opentype');
}

@font-face {
    font-family: 'Swansea';
    src: url('fonts/swansea/Swansea-q3pd.ttf') format('truetype');
}

@font-face {
    font-family: 'Resamitz';
    src: url('fonts/resamitz-font/Resamitz-4YMY.otf') format('opentype');
}

*, *::before, *::after {
  box-sizing: border-box;
}

/* Base styles */
body {
    margin: 0;
    font-family: 'Canva Sans', Arial, sans-serif;
    background-color: #1D1E2C;
    color: #faf9f6;
    line-height: 1.6;
}


header {
    text-align: center;
    padding: 80px 20px 40px;
}

section {
    padding: 60px 20px;
    max-width: 900px;
    margin: auto;
}



/* header styles */
header h1 {
    font-size: 2.5rem;
    font-weight: bold;
}


.hero {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    min-height: 600px; /* ensure room for the centered squiggle and text */
    overflow: visible;
}

.hero h1 {
    position: absolute;
    top: 55%;  /* vertically centered */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    font-size: 3rem;
    font-weight: bold;
    color: #faf9f6;
    white-space: nowrap;   /* keeps motto in one line */
    overflow: visible;     /* allows spilling past squiggle edges */
    font-size: 100px;
    line-height: 1.1;
    max-width: 90%;
    font-family: 'Exo Sans', Arial, sans-serif;
}


/* branding styles (logo + text) */
.brand {
    display: flex;
    align-items: center;
    justify-content: center; /* centers them together */
    gap: 12px;               /* space between logo + text */
    position: relative;
    z-index: 2;              /* above squiggle */
    margin-bottom: 20px;
}

.logo {
    width: 60px;
    height: auto;
}

.brand-text {
    font-family: 'citizenlytics-font', Arial, sans-serif; /* if you’ve set it up */
    font-size: 2rem;
    font-weight: 700;
    color: #faf9f6;
    letter-spacing: 1px;
}


/* squiggle background */
.squiggle {
    position: absolute;
    top: 60%;   /* center vertically */
    left: 50%;  /* center horizontally */
    transform: translate(-50%, -50%);
    height: 600px;
    z-index: 0; /* stays in back */
    opacity: 0.8; /* optional: soften */
    pointer-events: none;
}



/* about section styles */  
.about {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-top: 2rem;
}

.about h2 {
    font-size: 3rem;
    font-family: 'Exo Sans', sans-serif;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    color: #faf9f6;
    line-height: 1.5;
    font-family: 'Resamitz', serif;
}
.about-image {
  /* right column: responsive fixed width */
  flex: 0 0 clamp(260px, 32vw, 420px);
  margin-left: 2rem;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.about-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
  min-width: 500px;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }
  .about-image {
    margin-left: 0;
    margin-top: 2rem;
  }
}



/* founders section styles */
.founders {
    text-align: center;
}

.founders h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    font-family: 'Exo Sans', Arial, sans-serif;
    font-size: 400%;
}

/* widen founders section only (override section max-width) */
.founders {
  max-width: 1400px;            /* allow more horizontal room */
  width: min(92vw, 1400px);     /* responsive but capped */
  margin-left: auto;
  margin-right: auto;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* equal tracks */
  justify-content: center;   /* center whole grid */
  justify-items: center;     /* center items within tracks */
  align-items: start;
  gap: clamp(1rem, 2.5vw, 3rem);
  width: 100%;
  margin: 0 auto;
  padding: 0 1vw;
}

.founder {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.founder img {
  width: clamp(280px, 28vw, 380px); /* bigger across large screens */
  max-width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px;
}

.founder h3 {
    margin: 12px 0 6px;
    font-weight: 700;
    font-size: clamp(1.1rem, 1.1vw + 0.4rem, 1.6rem);
}

.founder p {
    font-size: clamp(0.9rem, 0.9vw, 1.1rem);
    color: #faf9f6;
    opacity: 0.9;
}

/* footer styles */
footer {
    margin-left: 7rem;
    text-align: left;
    padding: 60px 20px;
}

footer h3 {
    margin-top: 5rem;
    font-family: 'Exo Sans', Arial, sans-serif;
    font-size: 3rem;
}

footer p {
    font-size: 1.5rem;
    color: #faf9f6;
    line-height: 1.5;
    font-family: 'Resamitz', serif;
}

.footer-brand {
  display: flex;
  align-items: center; /* vertically center logo + text */
  gap: 0.5rem;         /* spacing between logo and text */
  margin-bottom: 1rem; /* optional, space before "Coming Soon" */
}

.footerlogo {
  width: 3rem;
  height: auto;
}

.footer-brand-text {
  font-family: 'citizenlytics-font', Arial, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #faf9f6;
  letter-spacing: 1px;
}

@media (max-width: 1100px) {
  .founder-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .founder-grid { grid-template-columns: 1fr; }
}