/* =========================
   GLOBAL
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #fff;
  background:
    radial-gradient(circle at 20% 30%, rgba(255,183,77,.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(76,175,80,.14), transparent 45%),
    linear-gradient(120deg, #1a140a, #2b1e0f, #1a140a);
  background-size: 200% 200%;
  animation: pageFlow 30s ease-in-out infinite;
}

@keyframes pageFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

h1, h3 {
  text-align: center;
  margin-bottom: 20px;
}

/* =========================
   HERO
========================= */
header.hero {
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.hero-logo img {
  width: 100%;
  max-width: 900px;
  height: 200px;          /* ← ADD THIS */
  object-fit: contain;
  padding: 12px;
  border-radius: 18px;
  background: rgba(0,0,0,.35);
  box-shadow: 0 10px 24px rgba(0,0,0,.45);
}


/* =========================
   NAV
========================= */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 999;

  text-align: center;
  padding: 18px;

  /* MATCHES PAGE BACKGROUND */
  background:
    radial-gradient(circle at 20% 30%, rgba(255,183,77,.12), transparent 40%),
    radial-gradient(circle at 80% 60%, rgba(76,175,80,.14), transparent 45%),
    linear-gradient(120deg, #1a140a, #2b1e0f, #1a140a);

  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  border-top: 3px solid rgba(255,140,0,.5);
  border-bottom: 3px solid rgba(255,140,0,.6);

  box-shadow: 0 6px 18px rgba(0,0,0,.45);

  transition: opacity .3s;
}


.nav-bar.hidden {
  opacity: 0;
}

.nav-btn {
  display: inline-block;
  margin: 8px 14px;
  padding: 12px 30px;
  background: #d36803;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  text-decoration: none;
  transition: .25s ease;
}

.nav-btn:hover {
  background: #b55400;
  transform: translateY(-3px);
}

/* =========================
   CONTENT LAYOUT
========================= */
.about-wrapper,
.contact-container {
  display: flex;
  gap: 60px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 20px;
}
.intro-lead {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #ff9500;
}

.AboutUs {
  flex: 2;
  line-height: 1.85;
  font-size: 1.15rem;   /* ⬅️ THIS is the key */
  max-width: 750px;
}


.AboutUs p {
  margin-bottom: 20px;
}

.right-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.right-side img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
  margin-top: 20px;
}
/* =========================
   KINGSTON MARKET SECTION
========================= */
.market-wrapper {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

.market-logo img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,.35);
}

.market-text {
  flex: 1;
  line-height: 1.7;
}

.market-text p {
  margin-bottom: 16px;
}

.market-text a {
  color: #ffb347;
  font-weight: bold;
  text-decoration: none;
}

.market-text a:hover {
  text-decoration: underline;
}

/* =========================
   MENU
========================= */
.menu-table {
  width: 100%;
  border-spacing: 25px;
  text-align: center;
  margin-bottom: 60px;
}

.Menu th {
  font-size: 2.8em;
  padding: 30px 0;
  text-decoration: underline #b55400;
}

.menu-table td {
  background: #fff7f0;
  border: 4px solid darkorange;
  border-radius: 14px;
  padding: 12px;
}

/* =========================
   FLIP CARDS
========================= */
.flip-card {
  height: 420px;
  perspective: 1000px;
}

.flip-card-inner {
  height: 100%;
  transition: transform .8s;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 14px;
}

.flip-card-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-card-back {
  background: #b55400;
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: rotateY(180deg);
}

/* =========================
   CONTACT FORM
========================= */
.contact-container form {
  flex: 2;
  background: rgba(211,104,3,.92);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

fieldset {
  border: none;
  padding: 0;
}

label {
  margin-top: 16px;
  display: block;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 6px;
  border: none;
}

textarea {
  min-height: 120px;
}

.buttons {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.order-now-btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: #e63946; /* change to your brand color */
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.order-now-btn:hover {
  background-color: #c62828;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

.order-now-btn:active {
  transform: scale(0.97);
}
.order-btn-wrap {
  text-align: center;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  margin: 60px 0 30px;
  color: #aaa;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-social img {
  width: 32px;
  transition: transform .3s;
}

.footer-social img:hover {
  transform: scale(1.15);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 900px) {
  .about-wrapper,
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .flip-card {
    height: 360px;
  }
}

@media (max-width: 600px) {
  .hero-logo img {
    max-height: 150px;
  }
}

@media (max-width: 900px) {
  .market-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .market-logo img {
    max-width: 260px;
    margin-bottom: 20px;
  }
}
@media (max-width: 600px) {
  .order-now-btn {
    width: 100%;
    max-width: 320px;
    display: block;
    margin: 0 auto;
  }
}
