* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f2ec;
  color: #2f241d;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(28, 23, 20, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
}

.logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 600;
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #c58b54;
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #f1d0b2;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 78vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(20, 15, 12, 0.55), rgba(20, 15, 12, 0.2)),
    linear-gradient(to top, rgba(20, 15, 12, 0.35), rgba(20, 15, 12, 0.1));
}

.hero-content {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px 20px;
}

.hero-card {
  width: min(760px, 100%);
  background: rgba(25, 20, 17, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: white;
  text-align: center;
  padding: 48px 34px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.eyebrow,
.section-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #c58b54;
  margin: 0 0 12px;
}

.section-tag.light {
  color: #f4d7bb;
}

.hero-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.1;
}

.hero-text {
  margin: 0 auto 28px;
  max-width: 620px;
  font-size: 1.08rem;
}

.hero-buttons,
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #c58b54, #a56f3f);
  color: white;
  box-shadow: 0 10px 24px rgba(165, 111, 63, 0.28);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d2965d, #b17641);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.light-outline {
  border-color: rgba(255, 255, 255, 0.35);
}

.intro-section,
.features-section,
.cta-section {
  padding: 84px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.intro-copy h2,
.section-heading h2,
.cta-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.15;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.card {
  background: white;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(47, 36, 29, 0.08);
}

.intro-highlight {
  padding: 30px;
  border: 1px solid #ede3d8;
}

.intro-highlight h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.highlight-list {
  margin: 0;
  padding-left: 18px;
}

.highlight-list li + li {
  margin-top: 10px;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  border: 1px solid #ece1d6;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(47, 36, 29, 0.12);
}

.feature-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: #f2e4d6;
  font-size: 1.5rem;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
}

.cta-section {
  background: linear-gradient(135deg, #2c211b, #4a3427);
  color: white;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer {
  background: #1b1512;
  color: #f2ece7;
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer-text {
  max-width: 420px;
  color: #d8cfc8;
}

.site-footer h4 {
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li + li {
  margin-top: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #d8cfc8;
}

.footer-links a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.social-icons a:hover {
  background: #c58b54;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 34px;
  padding: 18px 20px 22px;
  text-align: center;
  color: #cfc5bc;
  font-size: 0.95rem;
}

.page-hero {
  padding: 80px 0 30px;
  text-align: center;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.page-hero p {
  max-width: 720px;
  margin: 0 auto;
}

.section {
  padding: 40px 0 84px;
}

.form-card,
.menu-card,
.order-card,
.contact-card,
.map-card {
  background: white;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(47, 36, 29, 0.08);
  border: 1px solid #ece1d6;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 700;
  font-size: 0.96rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8c8b8;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  font-family: inherit;
  background: #fffdfa;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

button {
  font: inherit;
}

iframe {
  width: 100%;
  border: 0;
  border-radius: 18px;
}

.menu-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.menu-card-modern {
  background: white;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #ece1d6;
  box-shadow: 0 18px 40px rgba(47, 36, 29, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.menu-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(47, 36, 29, 0.12);
}

.menu-image-placeholder {
  height: 240px;
  background: linear-gradient(135deg, #eadfd3, #d8c6b4);
  display: grid;
  place-items: center;
  color: #6f5645;
  font-weight: 700;
  text-align: center;
  padding: 20px;
}

.menu-content {
  padding: 24px;
}

.menu-content h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
}

.menu-desc {
  margin: 0 0 18px;
  color: #6d5a4d;
}

.menu-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.menu-note-card {
  margin-top: 28px;
  background: #fffaf5;
  border: 1px solid #ecdccc;
  color: #6d5847;
  border-radius: 18px;
  padding: 18px 20px;
  text-align: center;
}

.order-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.order-card-padding,
.contact-card-padding,
.map-card-padding {
  padding: 30px;
}

.form-intro {
  margin-top: 0;
  margin-bottom: 22px;
  color: #6d5a4d;
}

.order-side-panel,
.contact-side-panel {
  display: grid;
  gap: 24px;
}

.mini-menu-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-menu-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-radius: 12px;
  background: #faf6f1;
  border: 1px solid #eee2d7;
}

.contact-info-line {
  margin: 0 0 10px;
}

.social-top-space {
  margin-top: 18px;
}

.cart-bar {
  margin-bottom: 28px;
  padding: 18px 22px;
  background: #fffaf5;
  border: 1px solid #ecdccc;
  border-radius: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.price-button,
.price-row {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  border: 1px solid #eee2d7;
  border-radius: 12px;
  padding: 12px 14px;
  background: #faf6f1;
  color: #2f241d;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.price-button:hover,
.price-row:hover {
  transform: translateY(-2px);
  background: #f4e8dc;
  border-color: #d5b08a;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 18px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  border: 1px solid #ece1d6;
  border-radius: 16px;
  background: #faf6f1;
}

.cart-item h4 {
  margin: 0 0 6px;
}

.cart-item p {
  margin: 4px 0;
  color: #6d5a4d;
}

.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.cart-quantity-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qty-btn,
.remove-btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #c58b54;
  color: white;
  font-weight: 700;
}

.remove-btn {
  background: transparent;
  color: #a24d3f;
  font-weight: 700;
}

.cart-item-total {
  font-weight: 700;
  color: #2f241d !important;
}

.cart-summary {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid #e7d9cb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.total-row {
  font-size: 1.12rem;
  font-weight: 700;
}

.cart-actions {
  margin-top: 24px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dark-btn {
  background: #2c211b;
  color: white;
  border: 1px solid #2c211b;
}

.dark-btn:hover {
  background: #3a2d25;
}

.menu-back-btn {
  color: #2f241d;
  border-color: #d7c0a8;
  background: #fff;
}

.menu-back-btn:hover {
  background: #f5ede4;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

.payment-card {
  display: block;
  cursor: pointer;
  width: 100%;
}

.payment-card input {
  display: none;
}

.payment-card-content {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border: 2px solid #e7ddd3;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #faf6f1 100%);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.22s ease;
  min-height: 88px;
}

.payment-card-content strong {
  display: block;
  font-size: 1rem;
  color: #2f241d;
  margin-bottom: 2px;
}

.payment-card-content p {
  margin: 0;
  font-size: 0.86rem;
  color: #7a6a5c;
  line-height: 1.35;
}

.payment-card:hover .payment-card-content {
  transform: translateY(-3px);
  border-color: #c58b54;
  box-shadow: 0 14px 28px rgba(92, 61, 36, 0.12);
}

.payment-card input:checked + .payment-card-content {
  border-color: #a56f3f;
  background: linear-gradient(180deg, #fffaf5 0%, #f5e7d8 100%);
  box-shadow: 0 0 0 4px rgba(197, 139, 84, 0.14), 0 16px 30px rgba(92, 61, 36, 0.12);
}

.payment-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f0dfcf 0%, #e2c3a2 100%);
  color: #5b3c21;
  font-size: 1.3rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.thankyou-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.status-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #efe1d0;
  color: #7a522d;
  font-weight: 700;
  margin-bottom: 16px;
}

.thankyou-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.thankyou-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 920px) {
  .intro-grid,
  .features-grid,
  .footer-grid,
  .cta-card,
  .menu-grid-modern,
  .order-layout,
  .contact-layout,
  .payment-options,
  .thankyou-layout {
    grid-template-columns: 1fr;
  }

  .cta-card {
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav {
    flex-direction: column;
    justify-content: center;
    padding: 14px 0;
  }

  .nav-links {
    gap: 18px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-image {
    height: 72vh;
  }

  .hero-card {
    padding: 34px 22px;
  }

  .intro-section,
  .features-section,
  .cta-section {
    padding: 64px 0;
  }

  .menu-grid-modern {
    grid-template-columns: 1fr;
  }

  .cart-bar,
  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-item-right {
    align-items: flex-start;
  }
}
/* PAYMENT CARDS UPGRADE */

.payment-options{
display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin-top:10px;
margin-bottom:25px;
}

.payment-card{
cursor:pointer;
}

.payment-card input{
display:none;
}

.payment-card-content{
display:flex;
align-items:center;
gap:16px;
padding:18px;
border-radius:16px;
border:2px solid #eee;
background:white;
box-shadow:0 8px 18px rgba(0,0,0,0.05);
transition:all .25s ease;
}

.payment-icon{
width:52px;
height:52px;
border-radius:14px;
display:flex;
align-items:center;
justify-content:center;
font-size:22px;
background:#f5efe9;
}

.payment-card-content strong{
font-size:16px;
display:block;
}

.payment-card-content p{
font-size:13px;
color:#666;
margin-top:3px;
}

/* hover effect */

.payment-card:hover .payment-card-content{
transform:translateY(-4px);
border-color:#c59a6c;
box-shadow:0 14px 30px rgba(0,0,0,0.08);
}

/* selected card */

.payment-card input:checked + .payment-card-content{
border-color:#8b5e34;
background:#fff7f0;
box-shadow:0 0 0 3px rgba(139,94,52,0.15);
}

/* mobile */

@media(max-width:800px){
.payment-options{
grid-template-columns:1fr;
}
}

/* GLOBAL UI UPGRADE */

body{
background:#f7f4ef;
}

/* better buttons */

.btn{
padding:12px 22px;
border-radius:10px;
font-weight:600;
transition:all .2s ease;
box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.btn:hover{
transform:translateY(-2px);
box-shadow:0 8px 20px rgba(0,0,0,0.12);
}

/* nicer cards */

.order-card,
.menu-card-modern{
background:white;
border-radius:18px;
box-shadow:0 14px 30px rgba(0,0,0,0.06);
transition:all .2s ease;
}

.order-card:hover,
.menu-card-modern:hover{
transform:translateY(-4px);
box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* better section spacing */

.section{
padding:70px 0;
}

/* better headings */

h1{
font-weight:700;
letter-spacing:-0.5px;
}

h2{
margin-bottom:15px;
}

/* cart styling */

.cart-item{
padding:14px 0;
border-bottom:1px solid #eee;
}

/* input improvements */

input,
select{
border-radius:8px;
border:1px solid #ddd;
padding:10px;
transition:all .2s ease;
}

input:focus,
select:focus{
border-color:#8b5e34;
outline:none;
box-shadow:0 0 0 3px rgba(139,94,52,0.1);
}
