:root{
  --bg-main:#efe4d4;        /* latte wall */
  --bg-soft:#e4d3bd;        /* section background */
  --choco:#5a3a2e;         /* dark chocolate */
  --choco-light:#7a4a2e;   /* logo brown */
  --text-main:#2b1a14;
  --text-muted:#6f5b4f;
  --card:#ffffff;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* ===== LAYOUT (STICKY FOOTER SETUP) ===== */
body{
  font-family:'Poppins',system-ui,sans-serif;
  background:var(--bg-main);
  color:var(--text-main);
  line-height:1.6;

  min-height:100vh;
  display:flex;
  flex-direction:column;
}

main{
  flex:1; /* pushes footer to bottom */
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

/* ================= HEADER ================= */

header{
  padding:28px 0;
  background:var(--bg-main);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 10px;
}

/* LOGO ANCHOR (CRITICAL FIX) */
.brand-wrap{
  padding:0;
  background:none;
}

.brand-wrap img{
  height:96px;
  width:auto;
  display:block;
  filter: drop-shadow(0 4px 10px rgba(90,58,46,.25));
}


/* NAV */
nav a{
  color:var(--text-muted);
  margin-left:26px;
  text-decoration:none;
  font-weight:500;
  font-size:15px;
}

nav a:hover,
nav a.active{
  color:var(--choco);
}

/* ================= HERO ================= */

.hero{
  padding:120px 0;
  text-align:center;
}

.hero h1{
  font-size:46px;
  margin-bottom:14px;
  color:var(--choco);
}

.hero p{
  font-size:17px;
  color:var(--text-muted);
}

/* ================= SECTIONS ================= */

section{
  padding:80px 0;
}

.section-soft{
  background:var(--bg-soft);
}

.section-title{
  font-size:32px;
  margin-bottom:34px;
  text-align:center;
  color:var(--choco);
}

/* ================= ABOUT ================= */

.about p{
  max-width:720px;
  margin:auto;
  text-align:center;
  font-size:16px;
  color:var(--text-muted);
}

/* ================= MENU ================= */

.menu-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:24px;
}

.menu-card{
  background:var(--card);
  padding:28px;
  border-radius:18px;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.menu-card h3{
  color:var(--choco);
  margin-bottom:6px;
}

.menu-card span{
  color:var(--text-muted);
  font-size:14px;
}

.menu-card ul{
  list-style:none;
  padding-left:0;
  margin-top:12px;
}

.menu-card li{
  padding:6px 0;
  color:var(--text-muted);
  font-size:15px;
  border-bottom:1px dashed rgba(0,0,0,.08);
}

.menu-card li:last-child{
  border-bottom:none;
}

/* ================= CONTACT ================= */

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px;
  align-items:center;
}

.contact-text p{
  margin-bottom:18px;
  color:var(--text-muted);
  font-size:15px;
}

iframe{
  width:100%;
  height:300px;
  border:none;
  border-radius:18px;
}

/* ================= FOOTER ================= */

footer{
  padding:24px 0;
  text-align:center;
  font-size:14px;
  color:var(--text-muted);
  background:var(--bg-soft);
  border-top:1px solid rgba(0,0,0,.08);
}
footer a{
  color:var(--choco);
  text-decoration:none;
  font-weight:500;
}

footer a:hover{
  text-decoration:underline;
}


/* ================= MOBILE ================= */

@media(max-width:768px){
  .brand-wrap{
    padding:10px 16px;
  }

  .brand-wrap img{
    height:72px;            /* mobile logo */
  }

  .hero h1{
    font-size:34px;
  }

  .contact-grid{
    grid-template-columns:1fr;
  }

  nav a{
    margin-left:16px;
  }
}
