/* ==========================================================
   THE PATH
   Shared stylesheet for all Path pages
   Numara LLC
========================================================== */

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

html,
body{
    width:100%;
    min-height:100%;
}

body{
    background:#050505;
    color:#E8D7B0;
    font-family:Georgia, serif;
    line-height:1.8;
    overflow-x:hidden;
}

/* ---------- Links ---------- */

a{
    color:#D4C29A;
    text-decoration:none;
    transition:.25s;
}

a:hover{
    color:#F0E6C8;
}

/* ---------- Path Navigation ---------- */

.path-nav{
    width:100%;
    padding:28px 60px;
    display:flex;
    justify-content:center;
    gap:42px;
    position:sticky;
    top:0;
    backdrop-filter:blur(24px);
    background:rgba(5,5,5,.62);
    z-index:100;
}

.path-nav a{
    font-size:16px;
    letter-spacing:.5px;
}

/* ---------- Main Layout ---------- */

.container{
    width:100%;
    max-width:920px;
    margin:0 auto;
    padding:140px 40px 80px;
}

.chapter{
    min-height:82vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    margin-bottom:120px;
}

.chapter.center{
    text-align:center;
    align-items:center;
}

/* ---------- Typography ---------- */

.section-label{
    text-transform:uppercase;
    letter-spacing:9px;
    font-size:15px;
    color:#D4B06E;
    margin-bottom:28px;
}

h1{
    font-size:84px;
    font-weight:500;
    color:#F7F1E5;
    line-height:1.02;
    margin-bottom:46px;
}

h2{
    font-size:56px;
    font-weight:500;
    color:#F7F1E5;
    line-height:1.08;
    margin-bottom:46px;
}

p{
    font-size:28px;
    color:#E8D7B0;
    margin-bottom:30px;
    max-width:760px;
}

.line{
    display:block;
    margin-bottom:24px;
}

.emphasis{
    color:#F7F1E5;
    font-size:36px;
}

.soft{
    color:rgba(232,215,176,.78);
}

.gold{
    color:#D4B06E;
}

/* ---------- Quote ---------- */

.quote{
    font-size:52px;
    line-height:1.35;
    color:#F7F1E5;
    text-align:center;
    max-width:820px;
    margin:0 auto 160px;
    font-style:italic;
}

/* ---------- Divider ---------- */

.divider{
    width:80px;
    height:1px;
    background:#D4B06E;
    margin:40px auto 120px;
    opacity:.45;
}

/* ---------- CTA ---------- */

.path-button{
    display:inline-block;
    margin-top:26px;
    padding:16px 30px;
    border:1px solid rgba(212,176,110,.32);
    border-radius:18px;
    color:#D4C29A;
    background:rgba(212,176,110,.08);
    font-size:18px;
}

.path-button:hover{
    background:rgba(212,176,110,.14);
    text-decoration:none;
}

/* ---------- Footer ---------- */

footer{
    width:100%;
    text-align:center;
    padding:80px 20px;
    border-top:1px solid rgba(212,176,110,.12);
}

.footer-links{
    width:100%;
    text-align:center;
    margin-bottom:18px;
}

.footer-links a{
    margin:0 10px;
}

.footer-copy{
    width:100%;
    text-align:center;
    margin:0;
    color:rgba(232,215,176,.70);
    font-size:16px;
}

/* ---------- Leave a Reflection ---------- */
.reflection-form {
  margin-top: 3rem;
  max-width: 720px;
}

.reflection-form textarea {
  width: 100%;
  min-height: 180px;
  padding: 1.5rem;
  background: transparent;
  border: 1px solid rgba(232, 213, 172, 0.35);
  color: #f4efe4;
  font-family: inherit;
  font-size: 1.15rem;
  line-height: 1.8;
  resize: vertical;
}

.reflection-form textarea::placeholder {
  color: rgba(232, 213, 172, 0.45);
}

.reflection-form button {
  margin-top: 1.5rem;
  background: transparent;
  border: 1px solid rgba(232, 213, 172, 0.55);
  color: #e8d5ac;
  padding: 0.9rem 1.4rem;
  font-family: inherit;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.reflection-form button:hover {
  background: rgba(232, 213, 172, 0.08);
}



/* ---------- Mobile ---------- */

@media(max-width:768px){

    .path-nav{
        padding:20px;
        gap:18px;
        flex-wrap:wrap;
    }

    .path-nav a{
        font-size:14px;
    }

    .container{
        max-width:100%;
        padding:90px 28px 60px;
    }

    .chapter{
        min-height:auto;
        margin-bottom:120px;
    }

    h1{
        font-size:56px;
    }

    h2{
        font-size:42px;
    }

    p{
        font-size:22px;
    }

    .quote{
        font-size:36px;
    }

    .emphasis{
        font-size:28px;
    }
}