:root{
  --dark:#3b2b24;
  --cream:#f1ece6;
  --beige:#e6ded4;
  --text:#2b241f;
}

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

body{
  font-family:Inter, sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
}

html{scroll-behavior:smooth;}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

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

header{
  position:sticky;
  top:0;
  z-index:5000;
  background:rgba(241,236,230,0.95);
  backdrop-filter:blur(6px);
  max-width:1200px;
  margin:auto;
  padding:20px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
}

/* BRAND CENTERED ALWAYS */
header h1{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  font-family:'Playfair Display', serif;
  font-size:28px;
  z-index:5200;
}

/* ================= HAMBURGER ================= */

.hamburger{
  display:flex;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  z-index:5200;
}

.hamburger span{
  width:26px;
  height:2px;
  background:#2b241f;
  transition:.4s ease;
}

/* Animate to X */
.hamburger.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}
.hamburger.active span:nth-child(2){
  opacity:0;
}
.hamburger.active span:nth-child(3){
  transform:rotate(-45deg) translate(6px,-6px);
}

/* ================= FULL PAGE MENU ================= */

.nav-links{
  position:fixed;
  inset:0;
  height:100vh;
  width:100%;
  background:var(--cream);

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:28px;

  transform:translateX(-100%);
  opacity:0;
  pointer-events:none;

  transition:transform .45s ease, opacity .35s ease;
  z-index:5100;
}

.nav-links a{
  font-size:15px;
  letter-spacing:2px;
  text-transform:uppercase;
}

/* SHOW MENU */
.nav-links.active{
  transform:translateX(0);
  opacity:1;
  pointer-events:auto;
}

/* ================= OVERLAY ================= */

.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.35);
  opacity:0;
  pointer-events:none;
  transition:opacity .35s ease;
  z-index:4000;
}

.menu-overlay.active{
  opacity:1;
  pointer-events:auto;
}

body.menu-open{
  overflow:hidden;
}

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

.hero{
  padding:60px 20px 40px;
  background:#f3ede7;
}

/* HERO CARD WITH PHOTO */
.hero-text{
  max-width:1150px;
  margin:0 auto;
  padding:520px 70px 80px;   /* pushes text down to bottom */
  position:relative;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.05) 0%,
      rgba(0,0,0,0.25) 40%,
      rgba(59,43,36,0.85) 70%,
      rgba(59,43,36,1) 100%
    ),
    url("/images/hero-bg.jpeg");  /* your photo */

  background-size:cover;
  background-position:center top;
  background-repeat:no-repeat;
}

@media(max-width:900px){
  .hero-text{
    padding:320px 30px 60px;
  }
}


/* TEXT STYLING */
.hero-text span{
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#d9c8b8;
}

.hero-text h2{
  font-family:'Playfair Display', serif;
  font-size:50px;
  font-weight:500;
  color:#f5ede6;
  margin:20px 0;
  line-height:1.2;
}

.hero-text p{
  font-size:15px;
  color:#e6d8cc;
  max-width:560px;
  margin-bottom:30px;
}

.read-blog-btn{
  display:inline-block;
  padding:14px 28px;
  background:#f5ede6;
  color:#3e2d22;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  border-radius:4px;
}


.read-blog-btn{
  display:inline-block;
  padding:14px 28px;
  background:#f5ede6;
  color:#3e2d22;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.read-blog-btn:hover{
  background:#ffffff;
}


.read-blog-btn{
  display:inline-block;
  padding:14px 28px;
  background:#f5ede6;
  color:#3e2d22;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.read-blog-btn:hover{
  background:#ffffff;
}


.read-blog-btn{
  display:inline-block;
  padding:14px 28px;
  background:#3e2d22;
  color:#fff;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.read-blog-btn:hover{
  background:#2a1d15;
}



.read-blog-btn{
  display:inline-block;
  margin-top:30px;
  padding:12px 28px;
  background:#efe6db;
  color:#2b241f;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:1px;
  transition:.3s ease;
}

.read-blog-btn:hover{
  background:#e2d6c7;
}

/* ================= STRIP ================= */

.strip{
  max-width:1200px;
  margin:60px auto;
  padding:12px 20px;
  border-top:1px solid #d8d0c6;
  border-bottom:1px solid #d8d0c6;
  display:flex;
  justify-content:space-between;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:1px;
  overflow-x:auto;
}

/* ================= BLOG CARDS ================= */

.section{
  max-width:1200px;
  margin:80px auto;
  padding:0 20px;
  text-align:center;
}

.section h3{
  font-family:'Playfair Display', serif;
  font-size:32px;
  margin-bottom:10px;
}

.cards{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

.card{
  background:white;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.05);
}

.card div{
  padding:20px;
}

.card h4{
  font-family:'Playfair Display', serif;
  font-size:18px;
  margin-bottom:6px;
}

.card p{
  font-size:13px;
  opacity:.8;
}

/* ================= ABOUT ================= */

.about{ 
  max-width:1200px; 
  margin:80px auto; 
  padding:0 20px; 
} 

.about-text{ 
  background:var(--dark); 
  color:#efe6db; 
  padding:60px; 
  text-align:center; 
  max-width:900px; 
  margin:auto; 
} 

.about-text span{ 
  font-size:12px; 
  letter-spacing:2px; 
  opacity:.7; 
  text-transform:uppercase; 
} 

.about-text h3{ 
  font-family:'Playfair Display', serif; 
  font-size:32px;
  margin:14px 0; 
} 

.about-text p{ 
max-width:620px; 
margin:auto; 
font-size:14px; 
line-height:1.7; 
}

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

footer{
  margin-top:120px;
  padding:40px 20px;
  border-top:1px solid #e0d8cf;
  text-align:center;
  font-size:13px;
}

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

@media(max-width:900px){
  .hero,.about{grid-template-columns:1fr}
  .hero-text h2{font-size:36px}
}

.blog-post{
  max-width:900px;
  margin:80px auto;
  padding:0 20px;
}

.blog-container h1{
  font-family:'Playfair Display', serif;
  font-size:42px;
  margin-bottom:10px;
}

.blog-date{
  font-size:13px;
  opacity:.6;
  margin-bottom:25px;
}

.blog-post img{
  width:50%;
  margin:25px 0;
  border-radius:6px;
}

.blog-content{
  font-size:16px;
  line-height:1.8;
}

.blog-content h3{
  font-family:'Playfair Display', serif;
  margin-top:30px;
  margin-bottom:10px;
}

/* ===== BLOG TYPOGRAPHY FIXES (non-design changes) ===== */

.blog-container{
  max-width:800px;
  margin:auto;
}

.blog-container h2{
  font-family:'Playfair Display', serif;
  margin-top:30px;
  margin-bottom:10px;
}

.blog-container ul{
  margin:15px 0 20px 20px;
  line-height:1.8;
}

.product-links a{
  color:var(--dark);
  text-decoration:underline;
}

.product-links li{
  margin-bottom:8px;
}


/* Affiliate note styling */
.affiliate-note {
  font-size: 0.85rem;      /* slightly smaller than body text */
  color: #9a9a9a;          /* lighter grey */
  font-weight: 300;        /* thinner text */
  margin-top: 8px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.blog-post .blog-img{
  width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 10px;
}

.blog-img-small{
  width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.post-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #a89f8d;   /* soft warm taupe */
  margin-top: 8px;
  margin-bottom: 30px;
  opacity: 0.85;
}

.adsbygoogle {
  margin: 50px 0;
  padding: 10px 0;
  border-top: 1px solid #eee6d8;
  border-bottom: 1px solid #eee6d8;
}