@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Text');


:root{
  --bg: #0b0b0b;      /* Header/Footer black */
  --panel: #FCFBFA;   /* Main white content area */
  --text: #000000;    /* Primary black text */
  --white: #FFFFFF;   /* Use this for the logo and input field backgrounds */
  --muted: #666;
  --link: #FFFFFF;
  --max: 760px;
  --logo-size: 360px;
  --profile-size: 160px;
}


/* Use "Google Sans Text" for specific elements if needed */
.google-sans-custom {
  font-family: "Google Sans Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400; /* Use 400 to 700 */
  font-style: normal;
  font-variation-settings: "GRAD" 0;
}



*{
  box-sizing: border-box;
  letter-spacing: 0.03em; /* Google recommends 0.01em but I don't like it. */
}

html, body{
  height: 100%;
}

body{
  margin: 0;
  font-family: "Google Sans Text", sans-serif;
  background: var(--bg);
  color: var(--text);
    /* Add these two lines below */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* HERO */
.hero{
  background: var(--bg);
  padding: 2.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo{
  width: var(--logo-size);
  height: auto;
  display: block;
}

/* SHARED CONTAINER */
.container{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.25rem 1.5rem;
}

/* WORKS */
.works-section{
  background: var(--panel);
  color: var(--text);
}

.works-section h2{
  margin: 0 0 2.25rem 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
}

.work{
  margin: 0 0 2.75rem 0;
}

.work:last-of-type{
  margin-bottom: 1.75rem;
}

.work h3{
  margin: 0 0 0.6rem 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.logline{
  margin: 0 0 0.6rem 0;
  line-height: 1.7;
}

.meta{
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.meta:empty{
  display: none;
}

.availability{
  margin: 0;
  padding-top: 1.25rem;
  font-size: 1rem;
  color: var(--text);
}

/* ABOUT */
.about-section{
  background: var(--bg);
  color: var(--white);
}

.about-section h2{
  margin: 0 0 2.25rem 0;
  text-align: center;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
}

.profile-float{
  float: right;
  width: var(--profile-size);
  margin: 0.25rem 0 1rem 1.5rem;
  border-radius: 10px;
  opacity: 0.95;
}

.about-text{
  text-align: left;
}

.about-text p{
  margin: 0 0 1rem 0;
  line-height: 1.75;
}

@media (max-width: 600px){
  .profile-float{
    float: none;
    display: block;
    margin: 0 auto 1.5rem auto;
  }
}

/* LINKS */
a{
  color: var(--link);
}
a:hover{
  opacity: 0.9;
}

/* ICON BUTTONS (About section) */
.icon-row{
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 4.0rem;
}

.icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60x;
  height: 60px;
  background: var(--bg);
  border-radius: 0; /* square */
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.icon-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255,255,255,0.18);
}

.icon-btn img{
  width: 60px;
  height: 60px;
  display: block;
}

.icon-btn:focus-visible{
  outline: 2px solid rgba(255,255,255,0.85);
  outline-offset: 3px;
}


/* FOOTER */
.footer{
  text-align: center;
  padding: 1.75rem 1.5rem;
  font-size: 0.85rem;
  color: #aaa;
  background: var(--bg);
}

/* RESPONSIVE */
@media (max-width: 520px){
  .container{
    padding: 2.5rem 1.25rem;
  }
  .logo{
    width: min(420px, 74vw);
  }
}


/* -----------------------------------
   Writing Process page formatting
   (Scoped so it won't change index)
------------------------------------ */

/* Tighten text density only on Writing Process page */
.process-page .logline{
  line-height: 1.5;
}

/* Lists using .logline (valid HTML: <ul class="logline">) */
.process-page ul.logline{
  margin: 0 0 0.6rem 1.25rem; /* matches .logline bottom spacing */
  padding: 0;
  line-height: 1.45; /* slightly tighter than paragraphs */
  list-style: disc;
}

.process-page ul.logline li{
  margin: 0.05rem 0; /* reduce vertical gap between bullets */
}


/* -----------------------------------
   HorizonLine form formatting
------------------------------------ */

.horizonline-page .framework-line{
  margin: 0 0 1.25rem 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.horizonline-page form{
  margin-top: 1rem;
}

/* Make labels behave */
.horizonline-page label{
  display: block;
  margin: 0 0 0.9rem 0;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text);
}

/* Inputs */
.horizonline-page input,
.horizonline-page select,
.horizonline-page textarea{
  display: block;
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  background: var(--white);
  font: inherit;
}

.horizonline-page textarea{
  resize: vertical;
}

/* 2-column row for Title + Which Question on desktop */
.horizonline-page .row-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 680px){
  .horizonline-page .row-2{
    grid-template-columns: 1fr;
  }
}

.horizonline-page .disclaimer{
  margin: 0.25rem 0 1rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--muted);
  text-transform: none;
  font-weight: 400;
  padding: 1rem 0; 
}

.horizonline-page button{
  display: inline-block;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 12px;
  background: #111;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.horizonline-page button:disabled{
  opacity: 0.45;
  cursor: not-allowed;
}
/* Make form input text normal weight */
.horizonline-page input,
.horizonline-page select,
.horizonline-page textarea {
  font-weight: 400;
}

/* Specifically ensure dropdown options are not bold */
.horizonline-page select {
  font-weight: 400;
}

/* Optional: make placeholder and entered text feel lighter */
.horizonline-page textarea,
.horizonline-page input {
  font-weight: 400;
}
