/* =========================================
   RESET
========================================= */

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

body{
    margin:0;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.7;
    color:#2f3a32;
    background:#f8f7f2;
}


/* =========================================
   LINKS
========================================= */

a{
    text-decoration:none;
    color:inherit;
}


/* =========================================
   HEADER
========================================= */

.site-header{
    background:#36563d;
    padding:18px 0;
}

.site-nav{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:0 20px;
}

.site-nav a{
    color:white;
    font-weight:600;
    transition:.25s;
}

.site-nav a:hover{
    color:#ffd86b;
}


/* =========================================
   HERO
========================================= */

.adventure-hero{
    padding:90px 20px 70px;
    text-align:center;
    background:linear-gradient(#eef7ef,#f8f7f2);
}

.hero-content{
    max-width:760px;
    margin:auto;
}

.hero-content h1{
    font-size:clamp(2.8rem,6vw,5rem);
    margin:.25em 0;
    color:#36563d;
}

.hero-intro{
    font-size:1.35rem;
    color:#56745c;
}


/* =========================================
   EYEBROW
========================================= */

.eyebrow{
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:.8rem;
    color:#6e8b70;
    font-weight:700;
}


/* =========================================
   GENERAL SECTIONS
========================================= */

.trail-section,
.adventure-grid-section,
.closing-section{
    padding:70px 20px;
}

.trail-card,
.closing-content{
    max-width:820px;
    margin:auto;
    text-align:center;
}

.centered{
    text-align:center;
}


/* =========================================
   ADVENTURE GRID
========================================= */

.adventure-grid{
    max-width:1200px;
    margin:auto;

    display:grid;
    gap:30px;

    grid-template-columns:
        repeat(auto-fit,minmax(280px,1fr));
}


/* =========================================
   ADVENTURE CARD
========================================= */

.adventure-card{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:
        0 8px 28px rgba(0,0,0,.08);

    transition:
        transform .25s,
        box-shadow .25s;

    display:flex;
    flex-direction:column;
}

.adventure-card:hover{

    transform:translateY(-6px);

    box-shadow:
        0 18px 40px rgba(0,0,0,.12);

}

.adventure-icon{

    font-size:3rem;

    margin:0;

}

.adventure-card h2{

    margin-top:12px;

    color:#36563d;

}

.tagline{

    font-style:italic;

    color:#5b7562;

    margin-bottom:20px;

}


/* =========================================
   BUTTONS
========================================= */

.trail-button{

    display:inline-block;

    margin-top:auto;

    background:#4f7d57;

    color:white;

    padding:14px 26px;

    border-radius:999px;

    font-weight:600;

    transition:.25s;

}

.trail-button:hover{

    background:#36563d;

}

.secondary{

    background:white;

    color:#36563d;

    border:2px solid #36563d;

}

.secondary:hover{

    background:#36563d;

    color:white;

}


/* =========================================
   BUTTON ROW
========================================= */

.button-row{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}


/* =========================================
   SMALL NOTE
========================================= */

.small-note{

    color:#708072;

    font-size:.95rem;

}


/* =========================================
   FOOTER
========================================= */

.site-footer{

    background:#36563d;

    color:white;

    text-align:center;

    padding:50px 20px;

}

.site-footer p{

    margin:8px 0;

}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 700px) {

    .site-nav {
        gap: 15px;
    }

    .adventure-card {
        padding: 28px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }
}

/* =========================================================
   DREAM BIG / ADVENTURE PAGE HEADER
========================================================= */

.site-header,
.site-header * {
    box-sizing: border-box;
}

.site-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem clamp(1.25rem, 4vw, 4rem);
    background: #35583d;
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.site-logo {
    flex: 0 0 auto;
    color: #ffffff;
    font-size: clamp(1.25rem, 2vw, 1.7rem);
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
    white-space: nowrap;
}

.site-logo:hover,
.site-logo:focus-visible {
    color: #fff7c7;
}

.site-navigation {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.site-navigation a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.85rem;
    border-radius: 999px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    transform: translateY(-1px);
}

.site-navigation a[aria-current="page"] {
    background: #fff7df;
    color: #35583d;
}


/* =========================================================
   BREADCRUMBS
========================================================= */

.breadcrumbs {
    width: min(100% - 2rem, 1200px);
    margin: 0 auto;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.45rem;
    color: #665f5a;
    font-size: 0.95rem;
}

.breadcrumbs a {
    color: #35583d;
    font-weight: 700;
    text-decoration: none;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible {
    text-decoration: underline;
}


/* =========================================================
   TABLET AND MOBILE HEADER
========================================================= */

@media (max-width: 900px) {
    .site-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.85rem;
    }

    .site-navigation {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .site-header {
        padding: 1rem;
    }

    .site-navigation {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .site-navigation a {
        width: 100%;
        padding: 0.7rem 0.55rem;
        border-radius: 14px;
        text-align: center;
        white-space: normal;
    }

    .breadcrumbs {
        width: min(100% - 1.5rem, 1200px);
        padding: 0.8rem 0;
        font-size: 0.88rem;
    }
}

@media (max-width: 420px) {
    .site-navigation {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   ADVENTURE QUOTE
========================================================= */

.adventure-quote {
    position: relative;
    width: min(100%, 760px);
    margin: 2rem auto;
    padding: 1.5rem 1.75rem 1.5rem 2rem;
    border: 0;
    border-left: 6px solid #d89b3c;
    border-radius: 0 20px 20px 0;
    background: linear-gradient(
        135deg,
        #fff8dc 0%,
        #fffdf4 100%
    );
    box-shadow: 0 12px 28px rgba(70, 57, 39, 0.1);
    color: #493d31;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.65;
    text-align: left;
}

.adventure-quote::before {
    content: "“";
    position: absolute;
    top: -0.35rem;
    left: 0.65rem;
    color: rgba(171, 113, 31, 0.2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 5rem;
    font-style: normal;
    font-weight: 900;
    line-height: 1;
    pointer-events: none;
}

.adventure-quote p {
    position: relative;
    z-index: 1;
    margin: 0;
}

@media (max-width: 680px) {
    .adventure-quote {
        margin: 1.5rem 0;
        padding: 1.25rem 1.2rem 1.25rem 1.45rem;
        border-left-width: 5px;
        border-radius: 0 16px 16px 0;
    }

    .adventure-quote::before {
        left: 0.35rem;
        font-size: 4rem;
    }
}

/* =========================================================
   ADVENTURE FEATURE IMAGE
   Used for Daily Sparkles and future adventure artwork
========================================================= */

.adventure-feature-image {
    width: min(100%, 900px);
    margin: 1.75rem auto 0;
    padding: clamp(0.75rem, 2vw, 1.25rem);
    border: 1px solid rgba(64, 91, 70, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 32px rgba(49, 69, 53, 0.1);
    text-align: center;
}

.adventure-feature-image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    margin: 0 auto;
    border-radius: 18px;
    object-fit: contain;
}

.adventure-feature-image figcaption {
    max-width: 760px;
    margin: 1rem auto 0;
    padding: 0 0.5rem;
    color: #5d625d;
    font-size: 0.98rem;
    line-height: 1.65;
}


/* Keeps anchor-link headings from hiding beneath the menu */

#begin-noticing {
    scroll-margin-top: 2rem;
}


/* =========================================================
   MOBILE FEATURE IMAGE
========================================================= */

@media (max-width: 680px) {
    .adventure-feature-image {
        margin-top: 1.25rem;
        padding: 0.55rem;
        border-radius: 18px;
    }

    .adventure-feature-image img {
        border-radius: 14px;
    }

    .adventure-feature-image figcaption {
        margin-top: 0.8rem;
        padding: 0 0.35rem 0.35rem;
        font-size: 0.92rem;
        line-height: 1.55;
    }
}
/* =========================================================
   NAVIGATION LINK SEPARATION
========================================================= */

.site-navigation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.site-navigation a {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 0.65rem 1rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
}

.site-navigation a + a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 25%;
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.45);
}

.site-navigation a:hover,
.site-navigation a:focus-visible {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
}

.site-navigation a[aria-current="page"] {
    background: #fff7df;
    color: #35583d;
    border-radius: 999px;
}


/* Remove separators when navigation stacks on smaller screens */

@media (max-width: 900px) {
    .site-navigation {
        gap: 0.45rem;
    }

    .site-navigation a {
        border: 1px solid rgba(255, 255, 255, 0.28);
        border-radius: 999px;
    }

    .site-navigation a + a::before {
        display: none;
    }
}

/* =========================================================
   DAILY SPARKLES PAGE SUPPORT
   Add this at the bottom of adventures.css
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}


/* =========================================================
   ADVENTURE SECTIONS
========================================================= */

.adventure-section {
    width: 100%;
    padding: 4.5rem 1.25rem;
}

.adventure-section > * {
    width: min(100%, 1100px);
    margin-left: auto;
    margin-right: auto;
}

.adventure-section-soft {
    background: rgba(255, 247, 230, 0.65);
}

.adventure-section-highlight {
    background: rgba(255, 239, 197, 0.75);
}

.adventure-section-heading {
    margin-bottom: 2rem;
    text-align: center;
}

.adventure-section-heading h2 {
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.15;
}

.adventure-section-heading > p:not(.section-kicker) {
    max-width: 720px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.section-kicker {
    margin: 0 0 0.65rem;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   MAIN COPY
========================================================= */

.adventure-copy {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.adventure-copy p {
    margin: 0 0 1.25rem;
    line-height: 1.75;
}

.adventure-copy p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   QUOTES
========================================================= */

.adventure-quote {
    position: relative;
    max-width: 700px;
    margin: 2.25rem auto;
    padding: 1.5rem 1.75rem;
    border-left: 5px solid currentColor;
    border-radius: 0 1rem 1rem 0;
    background: rgba(255, 255, 255, 0.72);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 700;
    line-height: 1.55;
}

.adventure-quote p {
    margin: 0;
}


/* =========================================================
   CALLOUT BOXES
========================================================= */

.adventure-callout {
    max-width: 760px;
    margin: 2.25rem auto;
    padding: 1.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 1.25rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.adventure-callout h3 {
    margin: 0 0 0.85rem;
}

.adventure-callout p:last-child {
    margin-bottom: 0;
}

.adventure-check-list {
    display: grid;
    gap: 0.75rem;
    margin: 1.25rem 0 0;
    padding: 0;
    list-style: none;
}

.adventure-check-list li {
    position: relative;
    min-width: 0;
    padding: 0.8rem 1rem;
    border-radius: 0.8rem;
    background: rgba(255, 247, 230, 0.9);
    line-height: 1.5;
}


/* =========================================================
   FEATURE IMAGE
========================================================= */

.adventure-feature-image {
    max-width: 900px;
    margin: 0 auto;
}

.adventure-feature-image img {
    width: 100%;
    border-radius: 1.25rem;
}

.adventure-feature-image figcaption {
    max-width: 760px;
    margin: 1rem auto 0;
    text-align: center;
    line-height: 1.65;
}


/* =========================================================
   WHAT COUNTS CARD GRID
========================================================= */

.adventure-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.adventure-mini-card {
    min-width: 0;
    min-height: 245px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.adventure-mini-icon {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1;
}

.adventure-mini-card h3 {
    margin: 0 0 0.75rem;
}

.adventure-mini-card p {
    margin: 0;
    line-height: 1.65;
}

.adventure-note {
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 1.15rem 1.35rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    text-align: center;
    font-weight: 600;
    line-height: 1.65;
}


/* =========================================================
   TRY IT TODAY STEPS
========================================================= */

.adventure-step-list {
    max-width: 850px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    counter-reset: sparkle-step;
}

.adventure-step {
    display: grid;
    grid-template-columns: 3.25rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    margin-bottom: 1rem;
    padding: 1.35rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.92);
    counter-increment: sparkle-step;
}

.adventure-step:last-child {
    margin-bottom: 0;
}

.adventure-step-number {
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 223, 128, 0.9);
    font-weight: 800;
}

.adventure-step-number::before {
    content: counter(sparkle-step);
}

.adventure-step h3 {
    margin: 0 0 0.45rem;
}

.adventure-step p {
    margin: 0;
    line-height: 1.65;
}


/* =========================================================
   COMMUNITY / SHARING
========================================================= */

.adventure-community-section {
    text-align: center;
}

.adventure-community-section .adventure-copy {
    text-align: left;
}

.adventure-community-icon,
.adventure-closing-icon {
    margin-bottom: 1rem;
    text-align: center;
    font-size: 3rem;
    line-height: 1;
}

.button-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


/* =========================================================
   FIELD REPORT
========================================================= */

.field-report-prompt-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.field-report-prompt {
    min-width: 0;
    min-height: 230px;
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.field-report-icon {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    line-height: 1;
}

.field-report-prompt h3 {
    margin: 0 0 0.75rem;
}

.field-report-prompt p {
    margin: 0;
    line-height: 1.65;
}

.field-report-reminder {
    max-width: 760px;
    margin: 2rem auto 0;
    padding: 1.5rem;
    border-radius: 1rem;
    background: rgba(255, 247, 230, 0.9);
    text-align: center;
}

.field-report-reminder h3 {
    margin: 0 0 0.65rem;
}

.field-report-reminder p {
    margin: 0;
    line-height: 1.65;
}


/* =========================================================
   CLOSING
========================================================= */

.adventure-closing-section {
    text-align: center;
}

.adventure-closing-section .adventure-copy {
    text-align: left;
}

.adventure-closing-section > h2 {
    max-width: 850px;
    margin: 0 auto 2rem;
    line-height: 1.15;
}

.adventure-closing-message {
    margin-top: 2rem !important;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 247, 230, 0.9);
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
    .adventure-card-grid,
    .field-report-prompt-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .adventure-section {
        padding: 3.75rem 1.25rem;
    }
}


/* =========================================================
   PHONE
========================================================= */

@media (max-width: 640px) {
    .adventure-section {
        padding: 3rem 1rem;
    }

    .adventure-card-grid,
    .field-report-prompt-grid {
        grid-template-columns: 1fr;
    }

    .adventure-mini-card,
    .field-report-prompt {
        min-height: 0;
    }

    .adventure-callout,
    .adventure-quote {
        padding: 1.25rem;
    }

    .adventure-step {
        grid-template-columns: 2.75rem minmax(0, 1fr);
        padding: 1rem;
    }

    .adventure-step-number {
        width: 2.5rem;
        height: 2.5rem;
    }

    .button-row {
        align-items: stretch;
        flex-direction: column;
    }

    .button-row .trail-button {
        width: 100%;
        text-align: center;
    }
}
