/*
Theme Name: Chiba Hotpot
Theme URI: https://chibahotpot.com
Author: Chiba Team
Version: 1.0.0
Text Domain: chiba
*/

:root { --container: 1100px; }

.chiba-container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

.chiba-hero{
  padding: 56px 0;
}

.chiba-hero h1{
  font-size: 42px;
  line-height: 1.15;
  margin: 0 0 12px;
}

.chiba-hero p{
  font-size: 18px;
  margin: 0 0 18px;
  opacity: .9;
}

.chiba-btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #111;
  text-decoration: none;
  margin-right: 10px;
}

.chiba-menu-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px){
  .chiba-menu-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px){
  .chiba-menu-grid{ grid-template-columns: 1fr; }
}

.chiba-menu-card{
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.chiba-menu-thumb img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.chiba-menu-title{
  margin: 12px 12px 6px;
  font-size: 18px;
}

.chiba-menu-desc{
  margin: 0 12px 14px;
  opacity: .85;
}

.site-footer{
  margin-top: 60px;
  padding: 28px 0;
  border-top: 1px solid rgba(0,0,0,.12);
}
/* HEADER BASE */
.chiba-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(0,0,0,.9);
  backdrop-filter: blur(6px);
  transition: all .3s ease;
}

.chiba-header.is-scrolled{
  background: #000;
  box-shadow: 0 6px 20px rgba(0,0,0,.6);
}

/* INNER */
.chiba-header-inner{
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.chiba-logo img{
  height: 90px;
  transition: opacity .2s ease;
}
.chiba-logo button:hover img{
  opacity: .8;
}

/* DESKTOP NAV */
.chiba-nav-desktop{
  display: none;
  gap: 32px;
}
.chiba-nav-desktop button{
  background: none;
  border: none;
  color: #fff;
  font-size: 15px;
  cursor: pointer;
}
.chiba-nav-desktop button:hover{
  color: #e10600;
}

/* MOBILE TOGGLE */
.chiba-menu-toggle{
  background: none;
  border: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}

/* MOBILE MENU */
.chiba-mobile-menu{
  display: none;
  background: #fff;
  padding: 12px;
}
.chiba-mobile-menu.open{
  display: block;
}
.chiba-mobile-menu button{
  width: 100%;
  padding: 12px;
  border: none;
  background: none;
  text-align: left;
  font-size: 16px;
}
.chiba-mobile-menu button:hover{
  background: #fee2e2;
  color: #dc2626;
  border-radius: 8px;
}

/* RESPONSIVE */
@media (min-width: 768px){
  .chiba-nav-desktop{ display: flex; }
  .chiba-menu-toggle{ display: none; }
  .chiba-mobile-menu{ display: none !important; }
}