/* styles.css */
:root{
  --bg:#f4e8dd;
  --text:#141414;
  --muted:#6b7280;
  --line:#e5e7eb;
  --brand:#6b8e23; /* olive-ish like your "shop more" */
  --card:#ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1100px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--text);
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 16px}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(220, 219, 219, 0.95); 
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.header .container.navbar{
  padding-right: 0px;   
}

.header .container.navbar{
  padding-left: 16px;
}

.brand{
  display:flex; align-items:center; gap:12px;
  font-weight:700; letter-spacing:.3px;
}
.brand img{
  width:64px;
  height:64px;
}
.navbar{
  height: 96px;
  display:flex;
  align-items:center;
  justify-content: space-between;
}
.navlinks{
  margin-left: auto;   /* pushes nav to the right */
  display:flex;
  align-items:center;
  gap:18px;
}
.navlinks a,
.dropdown-btn{
  position:relative;
  padding:10px 8px;
  font-weight:600;
  letter-spacing:.5px;
  background:none;
  border:none;
  cursor:pointer;
  font:inherit;
}
.navlinks a::after,
.dropdown-btn::after{
  content:"";
  position:absolute;
  left:8px; right:8px; bottom:6px;
  height:2px;
  background:var(--brand);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .18s ease;
}
.navlinks a:hover::after,
.dropdown-btn:hover::after{
  transform:scaleX(1);
}

.dropdown{position:relative}
.dropdown-panel{
  position:absolute;
  top:48px;
  left:0;
  min-width:220px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:10px;
  display:none;
}
.dropdown.open .dropdown-panel{display:block}
.dropdown-panel a{
  display:flex;
  padding:10px 10px;
  border-radius:10px;
  font-weight:600;
}
.dropdown-panel a:hover{background:#f3f4f6}

.hamburger{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
  cursor:pointer;
}
.mobile-menu{
  display:none;
  padding:10px 0 16px;
}
.mobile-menu a{
  display:block;
  padding:12px 10px;
  border-radius:12px;
  font-weight:650;
}
.mobile-menu a:hover{background:#f3f4f6}

/* HERO / FRAME MAIN */
.hero{ padding: 0; }

/* Full width “frame” like your PDF (edge-to-edge) */
.fullbleed{
  width: 100%;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
}

/* Hero frame should be full width */
.hero-frame img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;

  /* smooth transition */
  opacity: 1;
  transition: opacity 700ms ease-in-out;
}

.hero-frame img{
  width:100%;
  height:520px;       /* adjust as you like */
  object-fit:cover;
  display:block;
}
@media (max-width: 980px){
  .hero-frame img{ height:420px; }
}
@media (max-width: 720px){
  .hero-frame img{ height:320px; }
}
.hero-title{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  padding:20px;
  pointer-events:none;
}
.hero-title h1{
  margin:0;
  font-size: clamp(30px, 4vw, 56px);
  letter-spacing:1px;
  font-family: Georgia, "Times New Roman", serif;
  text-shadow: 0 6px 20px rgba(0,0,0,.18);
}

/* SECTION */
.section{padding:44px 0}
.section h2{
  text-align:center;
  margin:0 0 12px;
  font-weight:800;
  letter-spacing:1px;
}
.section .sub{
  text-align:center;
  margin:0 0 18px;
  color:var(--muted);
}

/* CATEGORY TABS */
.tabs{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
  margin:18px 0 26px;
}
.tab{
  border:1px solid #000;
  background:#000;     /* black button */
  color:#fff;          /* white text */

  padding:10px 18px;
  border-radius:999px;

  font-weight:750;
  cursor:pointer;

  transition:
    transform .12s ease,
    background .18s ease,
    color .18s ease;
}

.tab:hover{
  transform:translateY(-1px);
  opacity:.92;
}

/* CURRENT ACTIVE CATEGORY */
.tab.active{
  background:#f97316;     
  color:#fff; 
  -webkit-text-stroke: 0.25px black;         
  border:1px solid #fff;
}

/* PRODUCT GRID */
.grid{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
}
.card{
  background:#f3f4f6;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
  transition: transform .18s ease, box-shadow .18s ease;
  cursor:pointer;
}
.card:hover{
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,.28);
}
.card .img{
  width:100%;
  aspect-ratio: 4/5;
  object-fit:cover;
  display:block;
  border-bottom: 0.05px solid #c2c1c1;
}
.card .name{
  padding:12px 12px 14px;
  text-align:center;
  font-weight:600;
  letter-spacing:.4px;
  word-spacing:3px;
}

/* CATEGORY FRAMES */
.frame{
  margin-top:80px;
  margin-bottom:150px;
}

.frame-hero{
  width:100%;
  border-radius:0;
  overflow:hidden;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  box-shadow:none;
}
.frame-hero img{
  width:100%;
  height:520px; /* adjust */
  object-fit:cover;
  display:block;
}
.frame-hero .overlay{
  position:absolute;
  inset:0;
}
/* Gap between category banner image and products grid */
.frame-hero{
  margin-bottom: 22px;   /* adjust: try 16–32px */
}
@media (max-width: 720px){
  .frame-hero{ margin-bottom: 16px; }
}
.frame-title{
  text-align:center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 54px);
  margin:20px 0 18px;
}

.shop-more{
  display:flex;
  justify-content:center;
  margin-top:18px;
}
.btn{
  background:var(--brand);
  color:#fff;
  border:none;
  padding:14px 26px;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.8px;
  cursor:pointer;
  box-shadow: 0 12px 28px rgba(107,142,35,.28);
  transition: transform .14s ease, filter .14s ease;
}
.btn:hover{transform: translateY(-2px); filter:brightness(1.03)}

/* ABOUT */
.about-wrap{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:18px;
  align-items:start;
}
.about-hero img{
  width: 100%;
  height: 500px;        /* reduce this (try 260–360) */
  object-fit: cover;    /* keeps it looking good */
  display: block;
}
@media (max-width: 720px){
  .about-hero img{ height: 220px; }
}
/* Remove space between sticky header and first full-width image */
.no-top-gap{
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* If the image wrapper has any top margin, kill it */
.about-hero{ margin-bottom: 80px; }
@media (max-width: 720px){
  .about-hero{ margin-bottom: 18px; }
}
.about-img{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.about-img img{width:100%; height: 200px; object-fit:cover; display:block}
.about-box{
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
  background:#247824;
}
.about-box h3{margin:0 0 10px;color:#fff;font-size:25px;}
.about-box p{margin-top:25px ;margin-bottom:30px; color:#fff; line-height:1.65;font-size:18px;}

/* CONTACT HERO (Frame 3) */
.contact-hero{
  position:relative;
  width:100%;
  border-radius:24px;
  overflow:hidden;
  border:1px solid  var(--line);
  box-shadow:var(--shadow);
}
.contact-hero img{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  filter: brightness(.45) contrast(1.05); /* darker */
}
.contact-hero .center{
  position:absolute;
  inset:0;
  display:grid;
  width:100%;
  place-items:center;
  text-align:center;
  padding:20px;
}
.contact-hero .center h2{
  margin:0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.2vw, 64px);
  letter-spacing:1px;
  color:#fff;
  text-shadow:0 10px 30px rgba(0,0,0,.25);

  /* smooth enlarge effect */
  transform: scale(1);
  transition: transform .18s ease;
}
#container{
width:100%;
}
.underline{
  width:140px;
  height:4px;
  background:#fff;
  margin:12px auto 0;
  border-radius:999px;
  transform:scaleX(1);
  transition: transform .18s ease;
}
.contact-hero .center:hover .underline{transform:scaleX(1.18)}
.contact-hero .center:hover h2{
  transform: scale(1.06);
}

/* CONTACT BOX + MAPS */
.contact-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.office-card{
  border:1px solid var(--line);
  border-radius:24px;
  padding:18px;
  box-shadow:var(--shadow);
  background:#247824; /* subtle orange like pdf contact box */
}
.office-card{
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.office-card:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
  filter: brightness(1);
}
.office-card h3{margin:0 0 10px; color:#fff;

}
.office-meta{
  display:grid;
  gap:8px;
  color:#fff;
}
.maps{
  margin-top:18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
}
.map{
  border-radius:24px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.map iframe{
  width:100%;
  height:320px;
  border:0;
}
.contact-hero,
.office-card,
.map{
  border-radius: 0 !important;
}
/* Add left/right gap for contact boxes and maps */
.contact-grid,
.maps{
  padding-left: 16px;
  padding-right: 16px;
}

/* Optional: slightly more space on big screens */
@media (min-width: 1024px){
  .contact-grid,
  .maps{
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* FOOTER */
.footer{
  margin-top:40px;
  background:#247824;
  color:#fff;
}
/* full-width footer row */
.footer-inner{
  width:100%;
  display:grid;
  grid-template-columns: 1fr auto 1fr; /* left | center | right */
  align-items:center;
  padding:16px 16px; /* controls distance from borders */
  gap:12px;
}
.footer-left{
  justify-self:start; /* near left border */
}
.footer-center{
  justify-self:center; /* perfectly centered */
  text-align:center;
}

.footer-right{
  justify-self:end; /* right side */
  color:#fff;
}

.footer small{opacity:.95}


/* RESPONSIVE */
@media (max-width: 980px){
  .grid{grid-template-columns: repeat(3, minmax(0, 1fr))}
  .about-wrap{grid-template-columns:1fr}
  .about-img img{height:320px}
  .contact-grid, .maps{grid-template-columns:1fr}
  .hero-frame img{height:360px}
}
@media (max-width: 720px){
  .navlinks{display:none}
  .hamburger{display:block}
  .mobile-menu.show{display:block}
  .grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .hero-frame img{height:300px}
}
@media (max-width: 420px){
  .grid{grid-template-columns: 1fr}
}

/* Make header span full width (only header, rest of site unchanged) */
.header .container{
  max-width: 100% !important;
}

/* optional: control side padding for header */
.header .container.navbar{
  padding-left: 16px !important;
  padding-right: 100px !important; /* set to 6px or 0px if you want closer */
}