/* ===== SmokeHouse BBQ — stylesheet ===== */

:root{
  --bg:            #0c0908;
  --bg-alt:        #120d0b;
  --card:          #17110e;
  --card-border:   #2a201b;
  --orange:        #e8590c;
  --orange-light:  #f0762f;
  --text:          #f4ede6;
  --muted:         #b7a99e;
  --muted-2:       #8a7c72;
  --muted-3:       #F29A3D;
  --font-display:
    Impact,
    Haettenschweiler,
    "Arial Narrow Bold",
    "Arial Narrow",
    Arial,
    sans-serif;

--font-body:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    "Helvetica Neue",
    Arial,
    sans-serif;
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-weight:300;
  line-height:1.5;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ color:inherit; text-decoration:none; }

.container{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
}
strong {
  font-weight: 800;
  background: linear-gradient(135deg, #ff9d00 0%, #ff3b00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
svg{ fill:currentColor; }

/* ===== HEADER ===== */
.site-header{
  background:var(--bg);
  border-bottom:1px solid var(--card-border);
  position:sticky;
  top:0;
  z-index:100;
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:88px;
  gap:24px;
}

.logo-text{
  font-family:var(--font-display);
  font-size:22px;
  letter-spacing:2px;
  color:var(--text);
  display:flex;
  flex-direction:column;
  line-height:1;
}

.logo-sub{
  color:var(--orange);
  display:flex;
  align-items:center;
  gap:4px;
  font-size:14px;
  letter-spacing:4px;
  margin-top:4px;
}

.flame-icon{ width:16px; height:16px; color:var(--orange); }
.flame-icon.small{ width:22px; height:22px; margin-right:10px; }

.main-nav{
    display:flex;
    gap:12px;
    flex:1;
    justify-content:center;
}

.main-nav a{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:46px;
    padding:0 18px;

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.06);
    border-radius:10px;

    font-size:13px;
    font-weight:600;
    letter-spacing:1px;

    color:#E9E9E9;
    white-space:nowrap;

    transition:
        background .25s,
        border-color .25s,
        color .25s,
        transform .2s;
}

.main-nav a:hover{
    background:rgba(241,90,0,.12);
    border-color:rgba(241,90,0,.45);
    color:#fff;
    transform:translateY(-2px);
}

.main-nav a.active{
    background:#F15A00;
    border-color:#F15A00;
    color:#fff;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:16px;
}

.icon-btn{
  width:36px; height:36px;
  border-radius:50%;
  background:#fff;
  color:#111;
  display:flex; align-items:center; justify-content:center;
  transition:transform .2s, background .2s;
}
.icon-btn svg{ width:16px; height:16px; }
.icon-btn:hover{ background:var(--orange); color:#fff; transform:translateY(-2px); }

.phone-link{
  display:flex; align-items:center; gap:8px;
  color:var(--orange);
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  white-space:nowrap;
}
.phone-link svg{ width:16px; height:16px; }

.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding:8px;
}
.burger span{ width:24px; height:2px; background:var(--text); display:block; }

/* ===== HERO ===== */
.hero{
  background:var(--bg);
  border-bottom:1px solid var(--card-border);
  overflow:hidden;
}

.hero-inner{
  display:grid;
  grid-template-columns:1fr 1.2fr;
  align-items:center;
  gap:40px;
  padding-top:60px;
  padding-bottom:60px;
}

.hero-title{
  font-family:var(--font-display);
  font-size:70px;
  line-height:.95;
  letter-spacing:1px;
  color:var(--text);
  text-shadow:0 2px 12px rgba(0,0,0,.4);
}

.hero-title-accent{
  color:var(--orange);
  display:flex;
  align-items:center;
  gap:14px;
}

.hero-title-accent::before{
  content:"";
  width:60px; height:3px;
  background:var(--orange);
  display:inline-block;
}

.star{ width:26px; height:26px; color:var(--orange); }

.hero-sub{
  margin-top:26px;
  font-size:18px;
  font-weight:300;
  color:var(--muted-3);
  max-width:420px;
}

.hero-actions{
  display:flex;
  gap:16px;
  margin-top:36px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:12px;
  padding:16px 28px;
  font-family:var(--font-body);
  font-size:13px;
  font-weight:600;
  letter-spacing:1.5px;
  border-radius:4px;
  border:1.5px solid transparent;
  transition:all .2s ease;
  cursor:pointer;
}

.btn-primary{
  background:var(--orange);
  color:#fff;
}
.btn-primary:hover{ background:var(--orange-light); transform:translateY(-2px); }
.btn-primary .arrow{ transition:transform .2s; }
.btn-primary:hover .arrow{ transform:translateX(4px); }

.btn-outline{
  border-color:var(--orange);
  color:var(--text);
  background:transparent;
}
.btn-outline:hover{ background:var(--orange); color:#fff; }
.btn-outline .pin{ width:14px; height:14px; }
.btn-outline .chevron{ font-size:18px; line-height:1; }

.hero-image{
  position:relative;
  border-radius:8px;
  overflow:hidden;
  aspect-ratio:970/325;
  box-shadow:0 20px 60px rgba(0,0,0,.5);
}
.hero-image img{
  width:100%; height:100%; object-fit:cover;
}
.price-info-bar {
    text-align: center;
    margin: 0px 0 35px 0;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 87, 34, 0.1); /* Легкий помаранчевий відтінок */
    border: 1px solid rgba(255, 87, 34, 0.35); /* Помаранчева рамка */
    color: #e0e0e0;
    padding: 8px 20px;
    border-radius: 25px; /* Закруглені краї */
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.badge-icon {
    font-size: 16px;
}
/* ===== MENU ===== */
.menu{
  padding:80px 0 90px;
  background:var(--bg);
}

.section-title{
  font-family:var(--font-display);
  font-size:34px;
  letter-spacing:2px;
  text-align:center;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:50px;
  color:var(--text);
}

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

.menu-card{
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:6px;
  display:grid;
  grid-template-columns:100px 1fr;
  align-items:center;
  padding:14px;
  gap:16px;
  position:relative;
  transition:transform .2s, border-color .2s;
}
.menu-card:hover{ transform:translateY(-3px); border-color:var(--orange); }

.menu-card img{
  width:100px;
  height:150px;
  object-fit:cover;
  border-radius:4px;
}

.menu-card-body h3{
  font-family:var(--font-display);
  font-size:16px;
  letter-spacing:.5px;
  margin-bottom:6px;
  font-weight:400;
}

.menu-card-body p{
  font-size:12.5px;
  color:var(--muted);
  font-weight:300;
  line-height:1.4;
  padding-right:60px;
}

.menu-card .price{
  position:absolute;
  right:16px;
  bottom:14px;
  color:var(--orange);
  font-weight:600;
  font-size:16px;
  letter-spacing:.5px;
}

.menu-cta{
  display:flex;
  justify-content:center;
  margin-top:44px;
}

/* ===== ABOUT ===== */
/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  align-items: stretch; /* Зафіксувати висоту колонок */
}

.about-image { 
  height: 100%; 
  min-height: 420px; 
  position: relative;
  overflow: hidden; /* Запобігає випаданню картини за межі блоку */
}

.about-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  display: block;
}

.about-content {
  padding: 70px 60px;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 32px;
  letter-spacing: 1.5px;
  color: var(--text);
  margin-bottom: 22px;
}

.about-content > p {
  color: var(--muted);
  font-weight: 300;
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 42px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-icon {
  width: 34px; 
  height: 34px;
  color: var(--orange);
  margin-bottom: 16px;
}

.feature h4 {
  font-family: var(--font-body);
  font-size: 12.5px;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.feature p {
  font-size: 12px;
  color: var(--muted-2);
  font-weight: 300;
  line-height: 1.5;
}

/* ===== ОБОВ'ЯЗКОВО ДЛЯ МОБІЛЬНИХ (усуває CLS на смартфонах) ===== */
@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr; /* Одна колонка замість двох */
  }

  .about-image {
    min-height: 260px;
    height: 260px; /* Чітко фіксуємо висоту картини на мобільному */
  }

  .about-content {
    padding: 40px 20px; /* Зменшуємо падінги, щоб текст не стискався */
  }

  .about-features {
    grid-template-columns: repeat(2, 1fr); /* 2 колонки замість 4 для іконок */
    gap: 16px;
  }
}

/* ===== FOOTER ===== */
.site-footer{
  background:var(--bg);
  border-top:1px solid var(--card-border);
  padding:60px 0 0;
}

.footer-inner{
  display:grid;
  grid-template-columns:1.3fr .8fr 1fr 1fr;
  gap:40px;
  padding-bottom:40px;
}

.footer-col ul{ list-style:none; }
.footer-col ul li{ margin-bottom:8px; }
.footer-col ul a{
  color:var(--muted);
  font-size:16px;
  font-weight:300;
  transition:color .2s;
}
.footer-col ul a:hover{ color:var(--orange); }

.footer-brand .logo-text.small{
  font-size:18px;
  flex-direction:row;
  align-items:center;
  gap:8px;
}
.footer-brand .logo-sub{ margin-top:0; }
.footer-brand p{
  margin-top:14px;
  color:var(--muted-2);
  font-size:13px;
  font-weight:300;
}

.footer-col h5{
  font-family:var(--font-body);
  font-size:18px;
  letter-spacing:1px;
  color:var(--orange);
  margin-bottom:16px;
}
.footer-col p{
  color:var(--muted);
  font-size:15px;
  font-weight:300;
  margin-bottom:8px;
}

.footer-icons{ display:flex; gap:12px; margin: 10px; }
.footer-icons a{
  width:34px; height:34px;
  border-radius:50%;
  background:var(--card);
  border:1px solid var(--card-border);
  display:flex; align-items:center; justify-content:center;
  transition:background .2s;
}
.footer-icons a svg{ width:15px; height:15px; }
.footer-icons a:hover{ background:var(--orange); }

.footer-bottom{
  border-top:1px solid var(--card-border);
  text-align:center;
  padding:20px 0;
  font-size:14px;
  color:var(--muted-2);
  letter-spacing:.5px;
}

/* ===== INNER PAGE HERO (banner) ===== */
.page-hero{
  background:var(--bg-alt);
  border-bottom:1px solid var(--card-border);
  padding:20px 0 10px;
  text-align:center;
  position:relative;
}
.page-hero h1{
  font-family:var(--font-display);
  font-size:34px;
  letter-spacing:1.5px;
  color:var(--text);
}
.page-hero .crumbs{
  margin-top:14px;
  font-size:16;
  color:var(--muted-2);
  letter-spacing:.5px;
}
.page-hero .crumbs a{ color:var(--orange); }
.page-hero .crumbs a:hover{ text-decoration:underline; }

/* ===== MENU CARD BADGE (today) ===== */
.menu-card{ position:relative; }
.badge-today{
  position:absolute;
  top:-10px;
  left:14px;
  background:var(--orange);
  color:#fff;
  font-size:10px;
  font-weight:600;
  letter-spacing:.5px;
  padding:4px 10px;
  border-radius:20px;
  box-shadow:0 4px 10px rgba(0,0,0,.4);
  z-index:2;
}

/* ===== FULL MENU PAGE ===== */
.full-menu{ padding:40px 0 100px; }
.menu-category{ margin-bottom:56px; }
.menu-category:last-child{ margin-bottom:0; }

.category-heading{
  display:flex;
  align-items:center;
  gap:16px;
  margin-bottom:28px;
}
.category-heading h2{
  font-family:var(--font-display);
  font-size:24px;
  letter-spacing:1px;
  color:var(--text);
  white-space:nowrap;
}
.category-heading .rule{
  flex:1;
  height:1px;
  background:var(--card-border);
}

.legend{
  display:flex;
  align-items:center;
  gap:10px;
  justify-content:center;
  margin:-20px 0 44px;
  color:var(--muted-2);
  font-size:12.5px;
}
.legend .dot{
  width:9px; height:9px;
  border-radius:50%;
  background:var(--orange);
  display:inline-block;
}

/* ===== ABOUT PAGE ===== */
.about-hero-split{
  display:grid;
  grid-template-columns:1fr 1.3fr;
}
.about-hero-split .about-image{ min-height:460px; }

.story{
  padding:80px 0;
  background:var(--bg);
}
.story .container{
  max-width:820px;
  text-align:center;
}
.story h2{
  font-family:var(--font-display);
  font-size:30px;
  letter-spacing:1px;
  margin-bottom:22px;
}
.story p{
  color:var(--muted);
  font-size:16px;
  line-height:1.8;
  margin-bottom:18px;
  font-weight:300;
}

.process{
  background:var(--bg-alt);
  padding:80px 0;
  border-top:1px solid var(--card-border);
  border-bottom:1px solid var(--card-border);
}
.process .section-title{ margin-bottom:56px; }
.process-steps{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.process-step{
  text-align:center;
  padding:0 10px;
  position:relative;
}
.process-step .num{
  font-family:var(--font-display);
  font-size:40px;
  color:var(--orange);
  opacity:.35;
  margin-bottom:10px;
}
.process-step h4{
  font-size:14px;
  letter-spacing:1px;
  margin-bottom:10px;
  color:var(--text);
}
.process-step p{
  font-size:13px;
  color:var(--muted-2);
  line-height:1.6;
  font-weight:300;
}

.values-section{ padding:80px 0; }
.values-section .about-features{ max-width:1100px; margin:0 auto; }

.cta-band{
  background:var(--orange);
  padding:50px 0;
  text-align:center;
}
.cta-band h3{
  font-family:var(--font-display);
  font-size:26px;
  color:#fff;
  margin-bottom:20px;
  letter-spacing:1px;
}
.cta-band .btn-outline{
  border-color:#fff;
  color:#fff;
}
.cta-band .btn-outline:hover{
  background:#fff;
  color:var(--orange);
}

/* ===== CONTACTS PAGE ===== */
.contacts-section{ padding:80px 0 90px; }
.contacts-grid{
  display:grid;
  grid-template-columns:.9fr 1.3fr;
  gap:50px;
  align-items:start;
}

.contact-card{
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:8px;
  padding:36px 32px;
}
.contact-card h2{
  font-family:var(--font-display);
  font-size:24px;
  letter-spacing:1px;
  margin-bottom:26px;
}

.contact-row{
  display:flex;
  gap:16px;
  margin-bottom:24px;
  align-items:flex-start;
}
.contact-row .ci{
  width:38px; height:38px;
  min-width:38px;
  border-radius:50%;
  background:rgba(232,89,12,.12);
  color:var(--orange);
  display:flex; align-items:center; justify-content:center;
}
.contact-row .ci svg{ width:17px; height:17px; }
.contact-row h5{
  font-size:13px;
  letter-spacing:.5px;
  color:var(--text);
  margin-bottom:4px;
}
.contact-row p, .contact-row a{
  font-size:13.5px;
  color:var(--muted);
  font-weight:300;
  line-height:1.6;
}
.contact-row a:hover{ color:var(--orange); }

.contact-socials{
  display:flex;
  gap:12px;
  margin-top:30px;
  padding-top:26px;
  border-top:1px solid var(--card-border);
}

.map-wrap{
  border:1px solid var(--card-border);
  border-radius:8px;
  overflow:hidden;
  min-height:420px;
  background:var(--card);
}
.map-wrap iframe{
  width:100%; height:100%;
  min-height:420px;
  border:0; display:block;
  filter:grayscale(.25) contrast(1.05);
}

.map-note{
  margin-top:16px;
  font-size:12.5px;
  color:var(--muted-2);
  line-height:1.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .main-nav{ display:none; }
  .burger{ display:flex; }
  .hero-inner{ grid-template-columns:1fr; }
  .hero-title{ font-size:54px; }
  .about{ grid-template-columns:1fr; }
  .about-hero-split{ grid-template-columns:1fr; }
  .about-image{ min-height:300px; }
  .about-features{ grid-template-columns:repeat(2,1fr); }
  .process-steps{ grid-template-columns:repeat(2,1fr); gap:36px 20px; }
  .contacts-grid{ grid-template-columns:1fr; }
  .map-wrap{ min-height:340px; }
  .map-wrap iframe{ min-height:340px; }
}

@media (max-width: 780px){
  .container{ padding:0 20px; }
  .menu-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; gap:30px; }
  .header-actions .phone-link span{ display:none; }
  .hero-title{  display:block;font-size:30px;line-height:1.05;margin-top: 16px;margin-bottom:16px; }
  .section-title{ font-size:26px; }
  .about-content{ padding:50px 24px; }
  .page-hero h1{ font-size:32px; }
  .process-steps{ grid-template-columns:1fr; }
  .category-heading h2{ font-size:19px; }
  .contact-card{ padding:28px 22px; }
  .hero-actions{ display:none; }
 .main-nav.open{
    display:flex;
    flex-direction:column;

    position:absolute;
    top:calc(100% + 10px);
    left:16px;
    right:16px;

    background:#3E4347;

    border-radius:16px;

    overflow:hidden;

    box-shadow:0 16px 40px rgba(0,0,0,.35);

    z-index:999;
}
.main-nav.open a{

    display:flex;
    align-items:center;

    height:58px;

    padding:0 22px;

    color:#fff;

    font-size:15px;
    font-weight:600;
    letter-spacing:.5px;

    text-decoration:none;

    background:none;

    border:none;

    transition:.25s;
}
.main-nav.open a:not(:last-child){
    border-bottom:1px solid rgba(255,255,255,.08);
}
.main-nav.open a:hover{
    background:rgba(255,255,255,.05);
}
.main-nav.open a.active{
    color:#F15A00;
    background:rgba(241,90,0,.08);
}
}

@media (max-width: 480px){
  .header-actions{ gap:8px; }
  .phone-link{ display:none; }
  .hero-actions{ flex-direction:column; }
  .btn{ justify-content:center; }
}
@media (max-width: 1100px) {
  /* Примусове відображення при наявності класу open */
  .main-nav.open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 88px;
    left: 0;
    width: 100%;
    background: var(--bg) !important;
    padding: 20px;
    border-bottom: 1px solid var(--card-border);
    z-index: 999;
    align-items: center; /* Центруємо посилання */
  }

  /* Додаємо відступи між посиланнями в мобільному меню */
  .main-nav.open a {
    padding: 10px 0;
    font-size: 18px !important;
  }
}
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.burger span { transition: all 0.3s ease; }