/* ===== Reset / Base ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { height: 100%; }
body{
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #111; background: #fff; line-height: 1.5;
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; height: auto; display: block; }

/* ===== Theme (Deep Olive) ===== */
:root{
  --olive: #4C6425;
  --olive-dark:#3D501D;
  --gold:  #FFD700;
  --ink:   #111111;

  /* Fixed header height (desktop); logo scales inside */
  --header-h: 72px;
}

/* ===== Header / Nav ===== */
.site-header{
  position: sticky; top: 0; z-index: 1000;
  background: var(--olive); color: #fff; height: var(--header-h);
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.nav-wrap{
  height: var(--header-h);
  width: min(1200px, 96%); margin-inline: auto; padding: 0 16px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  overflow: hidden;
}
.brand{ display: inline-flex; align-items: center; height: 100%; }
.brand img{
  /* Logo fits without forcing the bar to grow */
  max-height: calc(var(--header-h) - 20px);
  width: auto; object-fit: contain;
}

.main-nav{ justify-self: end; }
.main-nav ul{ list-style: none; display: flex; gap: clamp(14px, 3vw, 28px); align-items: center; }
.main-nav a{
  color: #fff; font-weight: 600; letter-spacing: .2px; padding: 6px 2px;
  border-bottom: 2px solid transparent; transition: color .2s, border-color .2s;
}
.main-nav a:hover, .main-nav a:focus-visible{ color: var(--gold); border-color: var(--gold); outline: none; }

/* burger button (hidden on desktop) */
.hamburger{
  display: none; width: 40px; height: 32px; justify-self: end;
  cursor: pointer; background: none; border: 0; padding: 0;
}
.hamburger span{
  display: block; height: 3px; background: #fff; margin: 6px 0; border-radius: 2px;
  transition: transform .2s, opacity .2s;
}
.hamburger.is-open span:nth-child(1){ transform: translateY(9px) rotate(45deg); }
.hamburger.is-open span:nth-child(2){ opacity: 0; }
.hamburger.is-open span:nth-child(3){ transform: translateY(-9px) rotate(-45deg); }

/* ===== Hero ===== */
.hero-section{
  background: url('../images/banner.jpeg') no-repeat center top / cover;
  min-height: 92vh; display: flex; align-items: flex-end; justify-content: center;
  position: relative; isolation: isolate;
}
.hero-section::after{ content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.55); z-index: -1; }
.hero-content{ text-align: center; color: #fff; padding: 0 24px; padding-bottom: clamp(60px, 14vh, 180px); }
.hero-content h1{ font-size: clamp(28px, 4.5vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 12px; }
.hero-content p{ font-size: clamp(15px, 1.6vw, 20px); opacity: .95; margin-bottom: 18px; }
.whatsapp-button{
  display:inline-block; background:var(--gold); color:#000; font-weight:700;
  padding:12px 20px; border-radius:6px; transition:transform .12s, background .2s;
}
.whatsapp-button:hover{ background:#e6c200; transform: translateY(-1px); }

/* ===== Sections ===== */
.section{ padding: clamp(42px, 6vw, 72px) 0; text-align: center; }
.section h2{ font-size: clamp(24px, 3vw, 36px); margin-bottom: 10px; }
.section p{ color:#444; max-width:820px; margin:6px auto 18px; font-size:clamp(15px,1.3vw,18px); }
.btn-black{
  display:inline-block; background:#111; color:#fff; padding:10px 18px; border-radius:6px;
  font-weight:700; transition:background .2s, transform .12s;
}
.btn-black:hover{ background:#333; transform: translateY(-1px); }

/* ===== Footer ===== */
footer{ background: var(--olive); color:#fff; text-align:center; padding:18px 10px; font-size:14px; }

/* ===== Responsive ===== */
@media (max-width: 1024px){
  :root{ --header-h: 68px; }
}

/* Tablet & Mobile (<= 992px) — ensures burger shows on most phones */
@media (max-width: 992px){
  :root{ --header-h: 64px; }

  /* show burger, collapse desktop nav */
  .hamburger{
    display: inline-flex;
    align-items: center; justify-content: center;
    z-index: 1100;
  }

  .main-nav{
    position: absolute; right: 0; top: var(--header-h); width: 100%;
    background: var(--olive); border-top: 1px solid rgba(255,255,255,.15);
    display: none; z-index: 1050;
  }
  .main-nav ul{ flex-direction: column; gap: 0; }
  .main-nav li a{ display:block; padding:14px 18px; border-bottom:1px solid rgba(255,255,255,.08); }
  .main-nav.open{ display:block; }

  .hero-content{ padding-bottom: 12vh; }
  .whatsapp-button{ padding: 11px 18px; }
}

/* Small phones */
@media (max-width: 600px){
  :root{ --header-h: 60px; }
  .hero-content{ padding-bottom: 11vh; }
  .hero-content h1{ font-size: clamp(26px, 9vw, 40px); }
  .hero-content p{ font-size: clamp(14px, 3.8vw, 17px); }
  .whatsapp-button{ padding: 10px 16px; }
}

/* Cards polish */
.product-card .card-img-wrap { position: relative; overflow: hidden; border-top-left-radius: .5rem; border-top-right-radius: .5rem; }
.product-card img { transition: transform .3s ease; }
.product-card:hover img { transform: scale(1.05); }
.product-card .ribbon { position:absolute; top:.5rem; left:.5rem; background:#4C6425; color:#fff; font-size:.75rem; padding:.2rem .5rem; border-radius:.25rem; }
.main-nav ul { list-style:none; display:flex; gap:1rem; }
.burger { background:transparent; border:0; cursor:pointer; }

/* ==== Diana London: Hero overrides (keep at END of style.css) ==== */
body .hero-section{
  min-height: 88vh !important;            /* tall hero */
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
body .hero-section::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.55)) !important;
}
body .hero-content{ position:relative; z-index:1; color:#fff; max-width:980px; margin-inline:auto; }
body .hero-content h1{ line-height:1.1; text-shadow:0 3px 14px rgba(0,0,0,.35); }

/* Map box height guarantee */
#home-map{ height:560px !important; min-height:560px !important; }

/* ==== Hero overrides ==== */
body .hero-section{
  min-height: 88vh !important;
  background-position: top center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display:flex; align-items:center; justify-content:center; text-align:center;
  position:relative;
}
body .hero-section::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background: linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.55)) !important;
}
body .hero-content{ position:relative; z-index:1; color:#fff; max-width:980px; margin-inline:auto; }
body .hero-content h1{ line-height:1.1; text-shadow:0 3px 14px rgba(0,0,0,.35); }
body .hero-buttons .btn{
  padding:.8rem 1.1rem; border-radius:.6rem; font-weight:600;
  box-shadow:0 10px 20px rgba(0,0,0,.18);
}
body .hero-buttons .btn-outline-light{ border-width:2px; }

/* ==== Homepage map height guarantee ==== */
#home-map{ height:560px !important; min-height:560px !important; border-radius:12px; box-shadow:0 8px 24px rgba(0,0,0,.08); overflow:hidden; background:#f6f7f8; }

