/* Red Hat Barn Travels — style-v1.css */
/* Theme: bg #fffdfc, accent terracotta #b5643c, Fraunces headings, system-ui body */

*{box-sizing:border-box;margin:0;padding:0}
html{-webkit-text-size-adjust:100%}
body{
  font-family:system-ui,-apple-system,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  color:#2b2622;
  background:#fffdfc;
  line-height:1.65;
  font-size:17px;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}

h1,h2,h3,h4{font-family:"Fraunces",Georgia,"Times New Roman",serif;font-weight:600;line-height:1.2;color:#231f1b}

.container{max-width:1000px;margin:0 auto;padding:0 24px}

/* ---------- Header ---------- */
.site-header{background:#fffdfc;padding:26px 0 18px;position:relative;border-bottom:1px solid #efe7e1}
.header-inner{display:flex;flex-direction:column;align-items:center;gap:14px}
.site-brand{display:flex;flex-direction:column;align-items:center;text-align:center}
.site-logo img{max-width:100%;height:auto}
.site-title{display:none}
.site-tagline{display:none}

.nav-menu{display:flex;flex-wrap:wrap;justify-content:center;gap:26px}
.nav-menu a{
  font-size:14px;letter-spacing:.5px;color:#5c534c;
  text-transform:uppercase;font-weight:600;transition:color .2s;
}
.nav-menu a:hover,.nav-menu a.active{color:#b5643c}

.menu-toggle{display:none;background:none;border:none;cursor:pointer;padding:8px}
.menu-toggle span{display:block;width:24px;height:2px;background:#2b2622;margin:5px 0;transition:all .3s}
.menu-toggle.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}

/* ---------- Hero (Style 3 — full-bleed image + dark overlay) ---------- */
.hero{
  position:relative;
  min-height:460px;
  display:flex;align-items:center;justify-content:center;text-align:center;
  background-image:linear-gradient(rgba(0,0,0,0.42),rgba(0,0,0,0.42)),url('/images/hero.png');
  background-size:cover;background-position:center;
  color:#fff;
  padding:80px 0;
}
.hero h1{color:#fff;font-size:clamp(34px,6vw,56px);margin-bottom:14px;text-shadow:0 2px 18px rgba(0,0,0,.35)}
.hero p{font-style:italic;font-size:clamp(16px,2.4vw,21px);max-width:620px;margin:0 auto;color:#f4ece7;text-shadow:0 1px 10px rgba(0,0,0,.3)}

/* ---------- Layout sections ---------- */
main{padding:56px 0}
.section-head{margin:0 0 26px}
.section-head h2{font-size:26px;color:#231f1b}
.section-head .kicker{display:block;font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#b5643c;font-weight:700;margin-bottom:8px}

/* ---------- Featured hero card ---------- */
.featured{
  display:grid;grid-template-columns:minmax(0,1.2fr) minmax(0,1fr);gap:0;
  background:#fff;border-radius:10px;overflow:hidden;
  box-shadow:0 8px 26px rgba(60,40,28,.09);
  margin-bottom:52px;
}
.featured .card-image{min-width:0;overflow:hidden;height:100%}
.featured .card-image img{width:100%;height:100%;object-fit:cover;min-height:280px}
.featured-body{min-width:0;background:#fff;position:relative;z-index:1;padding:38px 40px;display:flex;flex-direction:column;justify-content:center}
.featured-body .cat{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#b5643c;font-weight:700;margin-bottom:12px}
.featured-body h3{font-size:30px;margin-bottom:14px;line-height:1.15}
.featured-body p{color:#5c534c;margin-bottom:18px}
.featured-body .read{color:#b5643c;font-weight:600;font-size:15px}
.featured-body .meta{font-size:13px;color:#8a807a;margin-top:6px}

/* ---------- Card grid ---------- */
.card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:30px}
.card{
  background:#fff;border-radius:10px;overflow:hidden;
  box-shadow:0 5px 18px rgba(60,40,28,.08);
  display:flex;flex-direction:column;transition:transform .2s,box-shadow .2s;
}
.card:hover{transform:translateY(-4px);box-shadow:0 12px 28px rgba(60,40,28,.14)}
.card-image{overflow:hidden}
.card-image img{width:100%;height:210px;object-fit:cover}
.card-body{padding:22px 22px 26px;display:flex;flex-direction:column;flex:1}
.card-body .cat{font-size:11px;letter-spacing:2px;text-transform:uppercase;color:#b5643c;font-weight:700;margin-bottom:10px}
.card-body h3{font-size:20px;line-height:1.25;margin-bottom:10px}
.card-body p{font-size:15px;color:#5c534c;margin-bottom:14px;flex:1}
.card-body .meta{font-size:12.5px;color:#8a807a}

/* ---------- Article ---------- */
.article{padding:48px 24px 64px;max-width:700px;margin:0 auto}
.article .breadcrumb{font-size:13px;color:#8a807a;margin-bottom:18px}
.article .breadcrumb a:hover{color:#b5643c}
.article .cat{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#b5643c;font-weight:700;margin-bottom:14px}
.article h1{font-size:clamp(28px,5vw,40px);line-height:1.14;margin-bottom:16px}
.article .meta{font-size:14px;color:#8a807a;margin-bottom:28px}
.article-image{border-radius:10px;overflow:hidden;margin:0 0 30px}
.article-image img{width:100%;height:auto}
.article-content{font-size:17.5px;color:#33302b}
.article-content h2{font-size:24px;margin:34px 0 14px}
.article-content p{margin-bottom:18px}
.article-content a{color:#b5643c;text-decoration:underline;text-decoration-color:rgba(181,100,60,0.3);text-underline-offset:3px}
.article-content a:hover{text-decoration-color:#b5643c}

/* ---------- Related ---------- */
.related{max-width:1000px;margin:10px auto 0;padding:0 24px 60px}
.related h2{font-size:22px;margin-bottom:24px}
.related-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:26px}

/* ---------- Standard pages ---------- */
.page{padding:48px 24px 64px;max-width:760px;margin:0 auto}
.page h1{font-size:clamp(28px,5vw,40px);margin-bottom:8px}
.page .lede{color:#8a807a;margin-bottom:28px;font-size:17px}
.page h2{font-size:23px;margin:32px 0 12px}
.page p{margin-bottom:18px;color:#33302b}
.page a{color:#b5643c;text-decoration:underline;text-underline-offset:3px}
.page ul{margin:0 0 18px 22px}
.page li{margin-bottom:8px}

/* category page */
.cat-head{text-align:center;padding:52px 24px 8px}
.cat-head .kicker{display:block;font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#b5643c;font-weight:700;margin-bottom:10px}
.cat-head h1{font-size:clamp(30px,5vw,44px)}
.cat-head p{color:#8a807a;max-width:560px;margin:12px auto 0}

/* ---------- Footer (shape #4 — 2-col split) ---------- */
.site-footer{background:#fffdfc;border-top:1px solid #efe7e1;padding:46px 0 34px;margin-top:20px}
.footer-inner{display:grid;grid-template-columns:minmax(0,1.4fr) minmax(0,1fr);gap:40px;align-items:start}
.footer-about .footer-logo img{max-width:70%;height:auto;margin-bottom:14px}
.footer-about p{font-size:14.5px;color:#5c534c;max-width:440px}
.footer-links{display:flex;flex-direction:column;gap:10px}
.footer-links .col-title{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#231f1b;font-weight:700;margin-bottom:4px}
.footer-links a{font-size:14.5px;color:#5c534c}
.footer-links a:hover{color:#b5643c}
.footer-copy{border-top:1px solid #efe7e1;margin-top:34px;padding-top:20px;font-size:13px;color:#8a807a;text-align:center}

/* ---------- Mobile ---------- */
@media(max-width:768px){
  .menu-toggle{display:block;position:absolute;right:24px;top:26px}
  .nav-menu{display:none;flex-direction:column;width:100%;gap:0;padding:12px 0}
  .nav-menu.open{display:flex}
  .nav-menu a{padding:10px 0;border-bottom:1px solid #efe7e1;width:100%;text-align:center}
  .site-header{position:relative}
  .featured{grid-template-columns:minmax(0,1fr)}
  .featured .card-image img{min-height:220px}
  .featured-body{padding:28px 26px}
  .card-grid{grid-template-columns:minmax(0,1fr)}
  .related-grid{grid-template-columns:minmax(0,1fr)}
  .footer-inner{grid-template-columns:minmax(0,1fr);gap:28px}
}
