/* ===============================
LEOFF Helper Homepage Styling
PNW Travel Poster Theme
=============================== */

:root{

--pnw-evergreen:#1F4D3A;
--pnw-navy:#1E2F44;
--pnw-river:#3F7C85;
--pnw-moss:#6A8F6B;

--sand-bg:#F4F1EA;
--panel-light:#F0ECE5;

--compass-copper:#B46A3C;

--text-dark:#2A2A2A;

}

body{
margin:0;
font-family:"Segoe UI",system-ui,sans-serif;
background:var(--sand-bg);
color:var(--text-dark);
}

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

.site-header{

background:var(--pnw-evergreen);
color:white;

display:flex;
justify-content:space-between;
align-items:center;

padding:18px 40px;
overflow:visible;

position:relative;
z-index:10;
}

.site-header img{
height:72px;
display:block;
}

.logo-wrap{
display:flex;
align-items:center;
gap:12px;
}

.logo-wrap a{
display:flex;
align-items:center;
}

.logo-wrap::after{
content:"BETA";
display:inline-flex;
align-items:center;
justify-content:center;
padding:6px 10px;
border-radius:999px;
background:rgba(255,255,255,.14);
border:1px solid rgba(255,255,255,.28);
color:#F9E6A8;
font-size:11px;
font-weight:800;
letter-spacing:.12em;
line-height:1;
text-transform:uppercase;
}

.nav a{

color:white;
text-decoration:none;
margin-left:25px;
font-weight:500;

}

.nav a.nav-login{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 16px;
border-radius:999px;
background:rgba(255,255,255,.12);
border:1px solid rgba(255,255,255,.22);
font-weight:700;
transition:background .16s ease,color .16s ease,transform .12s ease;
}

.nav a.nav-login:hover{
background:white;
color:var(--pnw-evergreen);
transform:translateY(-1px);
}

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

.hero{

position:relative;
z-index:1;
padding:120px 40px 100px 40px;

background:
linear-gradient(
rgba(255,255,255,.15),
rgba(255,255,255,.45)
),
url("/assets/illustrations/pnw-hero.png");

background-size:cover;
background-position:center;

}

.hero-inner{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:40px;

align-items:center;

}

.hero h1{

font-size:46px;
color:var(--pnw-evergreen);
margin-bottom:20px;

}

.hero p{

font-size:18px;
margin-bottom:25px;

}

/* trust bullets */

.hero ul{

list-style:none;
padding:0;
margin:0 0 30px 0;

}

.hero li{

margin-bottom:10px;
font-weight:500;

}

/* buttons */

.btn-primary{

background:var(--pnw-evergreen);
color:white;

padding:14px 28px;
border-radius:8px;

text-decoration:none;
font-weight:600;

display:inline-block;

}

.btn-secondary{

border:2px solid var(--pnw-river);
color:var(--pnw-evergreen);

padding:12px 26px;
border-radius:8px;

text-decoration:none;
font-weight:600;

display:inline-block;

white-space:nowrap;

}

.btn-comparison{
background:#3F7C85;
border:2px solid #3F7C85;
color:white;
padding:14px 28px;
}

.btn-comparison:hover{
background:#34686f;
border-color:#34686f;
color:white;
}
/* ===============================
WHAT IS SECTION
=============================== */

.section{

max-width:1100px;
margin:auto;

padding:45px 40px;

}

.section h2{
font-size:38px;
font-weight:600;

color:var(--pnw-evergreen);

margin-bottom:20px;

}
/* ===============================
TRUST STRIP
=============================== */

.trust-strip{

background:var(--pnw-evergreen);
color:white;

padding:14px 20px;

position:relative;
z-index:2;

box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.trust-inner{

max-width:1100px;
margin:auto;

display:flex;
justify-content:center;
gap:30px;

font-size:14px;

}
/* ===============================
FEATURE CARDS
=============================== */

.feature-grid{

display:grid;
grid-template-columns:repeat(2, minmax(260px, 360px));

justify-content:center;

gap:40px 60px;

position:relative;

margin-top:40px;

}

.feature-card{

background:rgba(255,255,255,.22);

backdrop-filter:blur(6px);

padding:26px;

border-radius:14px;

border:1px solid rgba(255,255,255,.35);

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

transition:transform .15s ease, box-shadow .15s ease;

}

.feature-card:hover{

transform:translateY(-4px);

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

}

.feature-card h3{

margin-top:0;
margin-bottom:16px;
color:var(--pnw-navy);

}

.feature-card{
display:flex;
flex-direction:column;
}
/* ===============================
FOOTER
=============================== */




/* ===============================
MOBILE
=============================== */

@media(max-width:900px){

.hero-inner{

grid-template-columns:1fr;

}

.hero-graphic{
justify-self:center;
}

.hero h1{

font-size:34px;

}

}
/* ===============================
HOMEPAGE CARD GRID
=============================== */

.grid{

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

gap:28px;

margin-top:35px;

}

.card{

background:white;

padding:28px;

border-radius:12px;

box-shadow:0 8px 20px rgba(0,0,0,.06);

}

.card h3{

margin-top:0;

color:var(--pnw-navy);

}

/* ===============================
EXAMPLE PANEL
=============================== */

.example{

background:var(--panel-light);

padding:45px;

border-radius:12px;

text-align:center;

margin-top:20px;

}

.example h3{

color:var(--pnw-evergreen);

font-size:28px;

margin:15px 0;

}

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

.article-list{

margin-top:20px;

}

.article-list a{

display:block;

margin-bottom:10px;

color:var(--pnw-river);

text-decoration:none;

font-weight:500;

}

.article-list a:hover{

text-decoration:underline;

}
/* ===============================
FOOTER GRID
=============================== */

.footer-grid{

max-width:1100px;

margin:auto;

display:grid;

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

gap:40px;

text-align:left;

margin-bottom:30px;

}

.site-footer a{

color:white;

text-decoration:none;

}

.site-footer a:hover{

text-decoration:underline;

}


.hero-spacer{
}
.section + .section{
border-top:1px solid rgba(0,0,0,.05);
}
.hero-text{

max-width:520px;

background:rgba(255,255,255,.22);

padding:28px 32px;

border-radius:14px;

backdrop-filter:blur(4px);

border:1px solid rgba(255,255,255,.35);

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

}
.hero-buttons{

display:flex;
gap:14px;
margin-top:18px;

flex-wrap:wrap;

}
/* ===============================
ABOUT GRID
=============================== */

.about-grid{
display:grid;
grid-template-columns:1fr;
gap:30px;
justify-items:center;

}

.about-illustration img{

width:500px;

filter:drop-shadow(0 8px 16px rgba(0,0,0,.18));

}

.about-illustration{
position:absolute;
left:50%;
top:60%;
transform:translate(-50%, -50%);
z-index:3;
pointer-events:none;
}



@media(max-width:900px){

.about-grid{

grid-template-columns:1fr;
text-align:center;

position:relative;

display:grid;

grid-template-columns:1fr;

gap:40px;

justify-items:center;

}


}

.about-section{

background:
linear-gradient(
rgba(244,241,234,0.25) 0%,
rgba(244,241,234,0.40) 35%,
rgba(244,241,234,0.50) 55%,
rgba(244,241,234,.62) 100%
),
url("/assets/illustrations/pnw-section-bg.png");

background-size:cover;
background-position:center bottom;
background-repeat:no-repeat;

padding-top:70px;
padding-bottom:80px;

}
.about-section::before{

content:"";
position:absolute;
left:0;
right:0;
height:120px;
top:-60px;

background:linear-gradient(
to bottom,
var(--sand-bg),
transparent
);

pointer-events:none;

}
.about-section{
position:relative;
}
.site-footer{

background:#1F4D3A;
color:rgba(255,255,255,.85);

padding:50px 40px 30px;

}

.footer-grid{

max-width:1100px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr 1fr 1.4fr;

gap:40px;

margin-bottom:35px;

}

.footer-links{

list-style:none;
padding:0;
margin:0;

}

.footer-links li{

margin-bottom:8px;

}

.footer-links li::before{

content:"•";
margin-right:8px;
opacity:.6;

}

.footer-links a{

color:rgba(255,255,255,.85);
text-decoration:none;

}

.footer-links a:hover{

text-decoration:underline;

}

.footer-subscribe h4{

margin-top:0;
font-weight:600;

}

.subscribe-row{

display:flex;
gap:8px;
margin-top:10px;

}

.subscribe-row input{

padding:10px 12px;
border:none;
border-radius:6px;

width:160px;

}

.subscribe-row button{

background:#2E5F49;
color:white;

border:none;
padding:10px 14px;

border-radius:6px;

cursor:pointer;

}

.footer-bottom{

max-width:1100px;
margin:auto;

display:flex;
justify-content:space-between;
align-items:center;

font-size:13px;

}

.footer-icons a{

display:inline-flex;
align-items:center;
justify-content:center;

width:32px;
height:32px;

background:rgba(255,255,255,.15);
border-radius:6px;

margin-left:8px;

text-decoration:none;
}
.site-footer{
background:
linear-gradient(rgba(31,77,58,.65), rgba(31,77,58,.65)),
url("/assets/illustrations/paper-texture.png");

background-size:cover;
background-repeat:repeat;
}
.logo-wrap{
position:absolute;
left:40px;          /* matches header padding */
top:100%;
transform:translateY(-52%);
z-index:20;
}

.logo-wrap img{

height:120px;
filter:drop-shadow(0 6px 10px rgba(0,0,0,.25));

}

.nav{
margin-left:auto;
}
.hero::before{
content:"";
position:absolute;
top:0;
left:0;
right:0;
height:80px;

background:linear-gradient(
to bottom,
rgba(31,77,58,0.9),
rgba(31,77,58,0)
);

pointer-events:none;
}
.feature-grid::before{
content:"";
position:absolute;
left:50%;
top:55%;
width:280px;
height:280px;
transform:translate(-50%, -50%);
background:radial-gradient(
circle,
rgba(255,255,255,0.35) 0%,
rgba(255,255,255,0) 70%
);
pointer-events:none;
}
/* ===============================
FAQ ACCORDION
=============================== */

.faq-item{
margin-bottom:16px;
}

.faq-question{

width:100%;
text-align:left;

background:white;

border:none;
outline:none;

font-size:18px;
font-weight:600;

padding:18px 20px;

border-radius:10px;

cursor:pointer;

box-shadow:0 6px 18px rgba(0,0,0,.06);

display:flex;
justify-content:space-between;
align-items:center;

}

.faq-question:hover{
background:var(--panel-light);
}

.faq-icon{
font-size:20px;
color:var(--pnw-river);
transition:transform .25s ease;
}

.faq-item.active .faq-icon{
transform:rotate(45deg);
}

.faq-answer{

max-height:0;
overflow:hidden;

transition:max-height .35s ease;

background:white;

border-radius:0 0 10px 10px;

box-shadow:0 8px 18px rgba(0,0,0,.05);

padding:0 20px;

}

.faq-answer-inner{
padding:18px 0 22px 0;
}
/* ===============================
FAQ SEARCH
=============================== */

.faq-search-wrap{

max-width:520px;
margin:20px 0 30px 0;

}

.faq-search-input{

width:100%;

padding:14px 16px;

border-radius:8px;

border:1px solid rgba(0,0,0,.15);

font-size:16px;

background:white;

box-shadow:0 4px 12px rgba(0,0,0,.05);

}

.faq-search-input:focus{

outline:none;

border-color:var(--pnw-river);

box-shadow:0 0 0 2px rgba(63,124,133,.15);

}

/* ===============================
FAQ SECTION NAV
=============================== */

.faq-anchors{

display:flex;
flex-wrap:wrap;

gap:12px;

margin:20px 0 25px 0;

}

.faq-anchors a{

background:white;

padding:8px 14px;

border-radius:20px;

font-size:14px;

text-decoration:none;

color:var(--pnw-evergreen);

border:1px solid rgba(0,0,0,.08);

box-shadow:0 3px 10px rgba(0,0,0,.04);

transition:.15s;

}

.faq-anchors a:hover{

background:var(--panel-light);

}
