/* Type & base */
:root{
  --cream:#f3f1ec;
  --ink:#0f0f10;
  --muted:#6a6f73;
  --accent:#1b1b1c; /* dark header */
  --green:#58b35e;  /* announcement bar */
  --card:#ffffff;
}
*{box-sizing:border-box}
html,body{margin:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--ink);
  background:var(--cream);
}
h1,h2,h3,h4,.logo-top{font-family:"Playfair Display", Georgia, serif}

/* Announcement bar */
.announce{
  background:var(--green);
  color:#fff;
  text-align:center;
  font-size:14px;
  padding:8px 10px;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  background:var(--accent);
  color:#fff;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.container{max-width:1200px; margin:0 auto; padding:0 20px}
.nav{display:flex; align-items:center; justify-content:space-between; gap:16px; padding:14px 0}
.logo{display:flex; flex-direction:column; line-height:1}
.logo-top{font-weight:700; letter-spacing:.06em; font-size:22px}
.logo-sub{font-size:11px; letter-spacing:.18em}
.menu{display:flex; gap:22px; align-items:center}
.menu a{color:#fff; text-decoration:none; opacity:.9}
.menu a:hover{opacity:1}
.icons{display:flex; gap:10px}
.icon{background:transparent; color:#fff; border:1px solid rgba(255,255,255,.2); border-radius:6px; padding:6px 8px; cursor:pointer}

/* logo */
/* === LOGO STYLING === */
.logo-top {
  font-size: 42px;        /* make "B&N" bigger */
  font-weight: 900;       /* extra bold */
  color: #d2c9c2;         /* warm coffee brown color */
  letter-spacing: 1px;
}

.logo-sub {
  font-size: 22px;        /* slightly smaller text under it */
  font-weight: 700;       /* bold */
  color: #8f7470;         /* darker roast brown */
  margin-left: 6px;       /* little spacing between B&N and sub text */
  letter-spacing: 2px;
  text-transform: uppercase; /* makes it look more professional */
}

/* Remove blue color and underline from logo link */
.logo {
  text-decoration: none;   /* removes underline */
  color: inherit;          /* keeps the same color as styled text */
}

/* If .logo is an <a> tag directly */
a.logo, .nav .logo {
  text-decoration: none;   /* remove underline */
  color: inherit;          /* use the color from .logo-top and .logo-sub */
}

/* Optional: disable hover color change */
a.logo:hover {
  text-decoration: none;
  color: inherit;
}

/* Buttons */
.btn{display:inline-block; padding:12px 18px; border-radius:4px; text-decoration:none; font-weight:600}
.btn.light{background:#fff; color:#1a1a1a}
.btn.dark{background:#1a1a1a; color:#fff}
.btn.outline{border:1px solid #1a1a1a; color:#1a1a1a; background:transparent}

/* Hero */
.hero{position:relative; min-height:62vh; display:grid; place-items:center; text-align:center; color:#fff}
.hero-img{position:absolute; inset:0; width:100%; height:100%; object-fit:cover}
.hero-overlay{position:absolute; inset:0; background:linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45))}
.hero-content{position:relative; padding:40px 20px}
.hero h1{letter-spacing:.08em; font-size: clamp(36px, 5vw, 64px); margin:0 0 6px}
.hero p{margin:6px 0 16px; opacity:.95}

/* Sections */
.section{padding:56px 0}
.cream{background:var(--cream)}
.narrow{max-width:780px}
.center{text-align:center}
.title{font-size: clamp(28px, 3.2vw, 44px); margin:0 0 8px}
.muted{color:var(--muted)}

/* Products */
.eyebrow{letter-spacing:.18em; font-weight:700; font-size:12px; color:#1a1a1a; text-transform:uppercase; margin-bottom:12px}
.product-grid{display:grid; grid-template-columns:repeat(3, 1fr); gap:24px}
.product{background:var(--card); border:1px solid rgba(0,0,0,.06); border-radius:10px; padding:14px; text-align:center}
.product img{width:100%; height:260px; object-fit:cover; border-radius:8px; margin-bottom:10px}
.product h4{margin:8px 0 4px; letter-spacing:.06em}
.price{font-weight:600}

/* Insta strip */
.insta{background:#0f0f10; color:#fff; padding:16px 0 6px}
.insta-row{display:grid; grid-template-columns:repeat(3, 1fr); gap:12px}
.insta-row img{width:100%; height:200px; object-fit:cover; border-radius:8px; border:1px solid rgba(255,255,255,.06)}
.insta-link{color:#fff; text-decoration:none; opacity:.9}
.insta-link:hover{opacity:1}

/* Footer */
.footer{background:#0f0f10; color:#fff; padding:24px 0 0; border-top:1px solid rgba(255,255,255,.08)}
.footer-grid{display:grid; grid-template-columns: 1fr 2fr; gap:24px; align-items:flex-start}
.footer-logo .logo-top{font-size:20px}
.footer-cols{display:grid; grid-template-columns: repeat(2, 1fr); gap:24px}
.footer-cols ul{list-style:none; margin:0; padding:0}
.footer-cols a{color:#fff; text-decoration:none; opacity:.85}
.footer-cols a:hover{opacity:1}
.copy{border-top:1px solid rgba(255,255,255,.08); text-align:center; font-size:13px; padding:12px 10px; opacity:.8}

/* Responsive */
@media (max-width: 960px){
  .menu{display:none} /* keep it simple—could add a mobile menu later */
  .product-grid{grid-template-columns:1fr}
  .insta-row{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
}

.hero {
  background-color: #f8f3e9; /* cream background */
  text-align: center;
  padding: 80px 20px;
}

.hero-image {
  width: 100%;
  max-width: 800px;    /* keeps it a nice size */
  border-radius: 20px; /* soft corners */
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2); /* small shadow */
}

/* ===== FARM SECTION ===== */
.farm-section {
  background-color: #fffaf3; /* matches your cream theme */
  padding: 80px 20px;
}

.farm-section .container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
 .farm-section h2 {
  font-size: 36px;
  color: #8b5e34;
  margin-bottom: 25px;
  text-align: center;
 }

 .farm-section p {
  font-size: 18px;
  line-height: 1.8;
  color: #2b2118;
  text-align: justify;
  margin: 0 auto;
 }


/* Big full-width image */
.farm-hero {
  background-image: url("images/farm01.jpg");
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  height: 60vh;  
  min-height: 420px;        /* make it nice and tall */
  border-radius: 10px;    /* soft rounded corners */
  margin-bottom: 30px;
}

/* Farm text below */
.farm-section h2 {
  color: #8b5e34;         /* coffee brown */
  text-align: left;
  font-size: 34px;
  margin-bottom: 20px;
}

.farm-text {
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
  color: #2b2118;
  text-align: left;
}

/* About page */
.hero--about{
  background-image: url("images/about.jpg"); 
  background-size: cover;
  background-position: center 40%;
  padding: 100px 0 80px;
  text-align: center;
  text-shadow: #1a1a1a;
  border-color:#0f0f10 ;
}
.container.narrow { max-width: 900px; margin: 0 auto; }
.menu a.active { border-bottom: 2px solid var(--accent); }

/* Optional: make headings consistent */
.section h2 { text-align: center; margin-bottom: 12px; }

/* Subscription / Coffee Section */
.subscription {
  background-color: #f9f6ef;
  text-align: center;
  padding: 100px 20px;
}

.subscription .title {
  font-size: 34px;
  color: #8b5e34;
  margin-bottom: 16px;
}

.subscription .muted {
  font-size: 18px;
  color: #4b3c2d;
  margin-bottom: 28px;
}

.subscription .btn {
  background-color: #8b5e34;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.subscription .btn:hover {
  background-color: #6c482a;
}

/* Coffee grid layout */
.coffee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.coffee-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coffee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.coffee-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 16px;
}

.coffee-card h3 {
  color: #8b5e34;
  margin-bottom: 8px;
  font-size: 22px;
}

/* Fresh Harvest Section */
.harvest {
  background-color: #fffaf3;
  padding: 80px 20px;
}

.harvest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.harvest-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.harvest-text h2 {
  font-size: 34px;
  color: #8b5e34;
  margin-bottom: 16px;
}

.harvest-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #2b2118;
  margin-bottom: 20px;
}

.harvest-text .btn {
  background-color: #8b5e34;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.harvest-text .btn:hover {
  background-color: #6c482a;
}
/* ===== HEADER ICONS ===== */
.icons {
  display: flex;
  gap: 18px;
  align-items: center;
}

.icon {
  background-color: #2b2118; /* dark brown background */
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.icon:hover {
  background-color: #8b5e34; /* coffee gold on hover */
  transform: translateY(-3px);
}

.hero--about {
  position: relative;
}

.hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* semi-transparent dark overlay */
  z-index: 0;
}

.hero--about h1 {
  position: relative;
  z-index: 1;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

/* ===== WHO WE ARE IMAGE ===== */
.who-image {
  width: 55%;               /* make it smaller */
  max-width: 600px;         /* don’t let it get too big */
  border-radius: 12px;      /* keep your rounded corners */
  display: block;
  margin: 25px auto;        /* centers the image */
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2); /* soft shadow for depth */
}

/* ===== HEADER / LOGO / NAVIGATION ===== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 60px;
  background-color: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Logo styling */
.logo {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: #2b2118;
  letter-spacing: 0.5px;
}

.dot {
  color: #8b5e34;
  font-weight: 900;
  margin-right: 6px;
}

/* Navigation buttons */
.menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #2b2118;
  font-weight: 600;
  transition: color 0.3s ease;
}

.menu a:hover {
  color: #8b5e34;
}

/* Special Home button */
.home-btn {
  background-color: #8b5e34;
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.home-btn:hover {
  background-color: #6c482a;
}

.amp {
  color: #8b5e34;       /* coffee brown accent */
  font-weight: bold;
}

/* Logo styling */
.logo { text-decoration: none; color: inherit; display: inline-flex; flex-direction: column; line-height: 1; }
.logo-top { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 22px; letter-spacing: .4px; }
.logo-sub { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .9; }

/* Make the ampersand look “normal” */
.amp { color: #8b5e34; font-weight: 800; font-family: Georgia, 'Times New Roman', serif; }

.amp {
  color: #8b5e34;       /* gives the ampersand a coffee accent */
  font-weight: 700;     /* slightly bold */
  font-family: Georgia, 'Times New Roman', serif;
}

/* ===== FOOTER LOGO ===== */
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #cbb89d; /* light coffee gold */
}

.footer-top {
  font-size: 20px;
  font-weight: 800;
}

.footer-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.9;
}

.footer-logo .amp {
  color: #8b5e34; /* coffee brown accent */
  font-weight: 900;
}

/* ===== BUTTON STYLES ===== */
.btn {
  background-color: #8b5e34;   /* warm coffee brown */
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #6c482a;   /* darker hover tone */
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.35);
}

/* Optional “light” variation (for light backgrounds) */
.btn.light {
  background-color: #fff;
  color: #2b2118 !important;
  border: 2px solid #8b5e34;
}

.btn.light:hover {
  background-color: #8b5e34;
  color: #fff !important;
}

/* === FORCE HERO CTA STYLES === */
.cta-btn {
  background: #8b5e34 !important;  /* coffee brown */
  color: #fff !important;
  padding: 12px 26px !important;
  border-radius: 8px !important;
  border: none !important;
  text-decoration: none !important;
  font-weight: 700 !important;
  display: inline-block !important;
  box-shadow: 0 6px 14px rgba(0,0,0,.35) !important;
  transition: transform .2s ease, filter .2s ease !important;
}
.cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(.95);
}

/* ====== NAVIGATION STYLES ====== */
.menu a {
  color: #e0d6c8;             /* light beige for coffee theme */
  text-decoration: none;
  margin: 0 15px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.menu a:hover {
  color: #d19a66;             /* warm coffee-brown hover color */
  text-shadow: 0 0 8px rgba(209,154,102,0.6);
}

.menu a.active {
  color: #d19a66;             /* highlight for active page */
  font-weight: 700;
  border-bottom: 2px solid #d19a66;
  padding-bottom: 3px;
}

/* Optional: if background is dark, add this for contrast */
.header {
  background-color: #1b1a17;
}

/* Example: Adjust layout for mobile screens */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  img {
    width: 100%;
    height: auto;
  }

  nav.menu a {
    display: block;
    margin: 10px 0;
  }
}
.nav-btn {
  background-color: #8b5e34;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #6c482a;
  transform: translateY(-2px);
}
.menu a, .nav-btn {
  display: inline-block;
  margin: 0 10px;
  vertical-align: middle;
}
nav.menu {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
}

nav.menu a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  padding: 8px 16px;
}

.nav-btn {
  background-color: #8b5e34;
  color: white !important;
  border-radius: 6px;
  padding: 8px 18px;
  transition: 0.3s;
}

.nav-btn:hover {
  background-color: #6c482a;
  transform: translateY(-2px);
}

/* ABOUT PAGE CLEAN LOOK */
.about-info {
  background-color: #f9f7f3; /* same cream tone as homepage */
  padding: 80px 10%;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.about-img {
  width: 45%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
  color: #4a3c2f;
  font-size: 17px;
  line-height: 1.7;
  background: transparent;
}

.about-text h2 {
  color: #2b2118;
  font-size: 32px;
  margin-bottom: 20px;
}