:root {
  --green: #0f5132;
  --green-2: #276749;
  --red: #ff1f1f;/*#d71920;*/
  --orange: #fc8019;
  --ink: #1e2b24;
  --soft: #5f6b64;
  --paper: #fffaf0;
  --card: #fffef9;
  --line: rgba(30, 43, 36, 0.14);
  --shadow: 0 18px 48px rgba(30, 43, 36, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("./assets/logo-modified.png") no-repeat center center;
  background-size: min(900px, 90vw) auto;
  opacity: 0.07;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1rem;
  line-height: 1.14;
}

.brand-text small {
  margin-top: 3px;
  color: var(--soft);
  font-size: 0.8rem;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--red);
}

.nav-order {
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
}

.nav-order:hover,
.nav-order:focus-visible {
  color: #fff !important;
  filter: brightness(0.95);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  min-height: calc(100svh - 79px);
  padding: clamp(42px, 7vw, 88px) clamp(18px, 6vw, 72px);
  overflow: hidden;
}

.hero-copy {
  min-width: 0;
  width: 100%;
  max-width: 680px;
}

.hero-logo {
  width: clamp(110px, 13vw, 180px);
  height: auto;
  margin: 0 0 20px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(30, 43, 36, 0.18));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3.3rem, 5.7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

h1 span {
  display: block;
}

.red-text {
  color: var(--red);
}

.hero-description {
  max-width: 610px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
}

.tagline-image {
  width: min(470px, 90%);
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
}

.hero-gallery 
{
 min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(210px, 1fr));
	gap: 14px;
}
.collage{
	   display:flex;
    justify-content:center;
    align-items:center;
    margin:12px auto 0;
}
.hero-gallery img{
    display:block;
    margin:0 auto;
    max-width:100%;
    height:auto;
}s

.hero-tile {
  width: 100%;s
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-tile-large {
  grid-row: span 2;
}

 
/* Quick information */
.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(1120px, calc(100% - 36px));
  margin: -34px auto 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--line);
  box-shadow: var(--shadow);
}

.quick-info div {
  min-height: 100px;
  padding: 22px;
  background: var(--card);
}

.quick-info span,
.order-card > span:not(.mobile-number) {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

/* Menu sections */
.menu-section,
.order {
 width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  /*padding: clamp(68px, 8vw, 108px) 0;*/
    padding:36px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: clamp(18px, 5vw, 60px);
  margin-bottom: 26px;
}

.section-heading h2 {
 /* margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;*/
	  text-align:center;
    margin:0;
}

.section-heading p {
  /*margin-bottom: 0;
  color: var(--soft);
  font-size: 1.08rem;
  line-height: 1.7;*/
	 text-align:center;
    margin:8px 0 0;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dish {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  box-shadow: 0 10px 28px rgba(30, 43, 36, 0.08);
}

.dish img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #eee;
}

.dish div {
  padding: 16px 17px 18px;
}

.dish h3 {
  margin-bottom: 0;
  font-size: 1.02rem;
  line-height: 1.28;
}

/* Order section */
.order {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.order-card {
  display: block;
  width: 100%;
  padding: 26px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--orange);
  border-radius: 10px;
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.order-card:hover,
.order-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(30, 43, 36, 0.2);
}

.order-card strong {
  display: block;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.call-card {
  width: min(520px, 100%);
  padding: 28px;
  text-align: center;
  border-left: 1px solid var(--line);
  border-top: 6px solid var(--orange);
}

.call-title {
  display: block;
  margin-bottom: 14px;
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: none !important;
  color: var(--ink) !important;
}

.mobile-number {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 12px 28px;
  border-radius: 8px;
  color: #fff;
  background: var(--orange);
  font-size: clamp(2rem, 4vw, 2.7rem) !important;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 1px;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px 48px;
  width: 100%;
}
/* Footer */
.site-footer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: 18px 40px;
  background: #1d2c23;
  color: #fff;
}

.footer-name {
  font-weight: 700;
  white-space: nowrap;
}

.footer-location {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  color: #fff;
  text-align: center;
}

.footer-location span {
  min-width: 0;
}
.footer-red{
    color:var(--red);
    font-weight:800;
}
.location-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.footer-tagline {
  white-space: nowrap;
}

/* Tablet */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr);
    gap: 30px;
  }

  h1 {
    font-size: clamp(3.1rem, 6vw, 5.2rem);
  }

  .menu-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 850px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand {
    min-width: 0;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: auto;
    gap: 32px;
    padding: 34px 18px 54px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-logo {
    width: 120px;
    margin: 0 auto 22px;
  }

  h1 {
    font-size: clamp(2.9rem, 10vw, 4.5rem);
    text-align: left;
  }

  .tagline-image {
    width: min(390px, 100%);
    margin: 16px auto 0;
    object-position: center;
  }

  .hero-gallery {
   /* width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    gap: 12px;*/
	display:flex;
    justify-content:center;
    align-items:center;
    margin:12px auto 0;
	margin-top:10px;
    margin-bottom:0;
  }
	.hero-gallery img{
    display:block;
    margin:0 auto;
    max-width:100%;
    height:auto;
}

  .hero-tile,
  .hero-tile-large {
    grid-row: auto;
    min-height: 0;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .quick-info {
    margin-top: 0;
  }

  .section-heading {
   /* grid-template-columns: 1fr;*/
    text-align:center;
    margin-bottom:16px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* Mobile */
@media (max-width: 640px) {
  .site-header {
    position: static;
    padding: 14px 18px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
  }

  .main-nav a {
    padding: 8px 0;
  }

  .nav-order {
    text-align: center;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-logo {
    width: 105px;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.6rem);
    line-height: 0.98;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-gallery {
    grid-template-columns: 1fr;
  }

  .hero-tile,
  .hero-tile-large {
    aspect-ratio: 4 / 3;
  }

  .quick-info {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .listing-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .order {
    gap: 30px;
  }

  .mobile-number {
    padding: 11px 18px;
    font-size: 2rem !important;
  }
	   footer{
        flex-direction:column;
        text-align:center;
        gap:12px;
        padding:20px;
    }

 
}

footer{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:16px;
    padding:24px 20px;
}

.footer-name{
    width:100%;
    text-align:center;
}

.footer-address{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    white-space:normal;
    text-align:center;
}

.footer-address span{
    display:inline;
    max-width:320px;
    line-height:1.5;
}

.footer-tagline{
    width:100%;
    text-align:center;
}

.location-icon{
    width:26px;
    height:26px;
}

}
 