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

.palm-header {
  width: 100%;
  background: #243419;
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Red Hat Display", sans-serif;
}

.palm-left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.palm-header {
  position: relative;
  z-index: 20;
}

.palm-logo {
  position: relative;
  width: 150px;   
  height: 50px;  
  overflow: visible;
}

.palm-logo img {
  position: absolute;
  top: -5px;     
  left: 0;
  height: 165px;  
  width: auto;
  z-index: 30; 
}

.palm-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.palm-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.palm-nav a:hover {
  color: #e0e0e0;
}

.palm-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.palm-right a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}

.palm-bag {
  width: 22px;
  height: 22px;
  border: 2px solid white;
  border-radius: 3px;
  position: relative;
}

.palm-bag::after {
  content: "";
  width: 12px;
  height: 2px;
  background: white;
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

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

.hero-video-wrapper {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}

.hero-video-wrapper video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.35)
  );
  pointer-events: none;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-family: "Red Hat Display", sans-serif;
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-align: center;
  width: 90%;
}
.section-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 40px;
  background: #f3f3f3;
  font-family: "Red Hat Display", sans-serif;
  gap: 60px;
}

.section-left {
  max-width: 450px;
}

.section-left h1 {
  font-size: 34px;
  color: #1a1a1a;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-left h2 {
  font-size: 34px;
  color: #324724;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-left p {
  font-size: 16px;
  color: #444;
  line-height: 1.5;
}

.section-right iframe {
  width: 480px;
  height: 270px;
  border-radius: 6px;
  border: none;
}

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

  .section-right iframe {
    width: 100%;
    height: 240px;
  }
}

.full-section {
  width: 100%;
  padding: 60px 20px;
  background: linear-gradient(#243419, #ffffff);
  text-align: center;
  font-family: "Red Hat Display", sans-serif;
  color: #ffffff;
}

.full-section h1 {
  font-size: 36px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.full-section p.section-desc {
  max-width: 900px;
  margin: auto;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 60px;
}

.card-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  width: 280px;
  background: #000;
  color: white;
  border-radius: 3px;
  overflow: hidden;
  text-align: left;
  position: relative;
}

.card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.card-text {
  padding: 20px;
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.card-text h2 {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.card-text p {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .card {
    width: 90%;
  }
}

.newsletter-section {
  width: 100%;
  padding: 60px 40px;
  background: #f5f5f5;
  font-family: "Red Hat Display", sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.news-left {
  flex: 1;
  min-width: 260px;
  max-width: 400px;
  color: #444;
  font-size: 18px;
  line-height: 1.5;
}

.news-form {
  flex: 2;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.news-form input {
  flex: 1;
  min-width: 180px;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 16px;
  font-family: "Red Hat Display", sans-serif;
  outline: none;
}

.news-form button {
  background: #243419;
  color: white;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  min-width: 160px;
}

.news-form button:hover {
  background: #452920;
}

.news-disclaimer {
  font-size: 14px;
  color: #555;
}

@media (max-width: 900px) {
  .newsletter-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .news-row {
    flex-direction: column;
  }
  .news-form button {
    width: 100%;
  }
}

.palm-bottom-bar-wrapper {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #000; 
  z-index: 9999;
  padding: 15px;
  box-sizing: border-box;
}

.palm-bottom-bar {
  display: flex;
  width: 100%;
}

.palm-bottom-btn {
  flex: 1;
  background: #6a573d;
  color: #ffffff;
  text-align: center;
  padding: 14px 0;
  text-decoration: none;
  font-family: "Red Hat Display", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
}

.palm-bottom-btn + .palm-bottom-btn {
  margin-left: 15px; 
  border-left: none;
}

.palm-bottom-btn:hover {
  background: #452920;
}

@media (max-width: 600px) {
  .palm-bottom-btn {
    font-size: 12px;
    padding: 12px 0;
  }

  .palm-bottom-btn + .palm-bottom-btn {
    margin-left: 10px;
  }
}

.footer-wrapper {
  width: 100%;
  background: #324724;
  color: #ffffff;
  padding: 50px 30px;
  font-family: "Red Hat Display", sans-serif;
  box-sizing: border-box;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 40px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 0.7;
}

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

.footer-social img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
  transition: 0.3s ease;
}

.footer-social img:hover {
  opacity: 0.7;
}

.footer-copy {
  text-align: center;
  color: #dcdcdc;
  font-size: 12px;
  opacity: 0.8;
}

@media (max-width: 700px) {

  .palm-header {
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .palm-left {
    width: 100%;
    justify-content: center;
    gap: 20px;
  }

  .palm-right {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: 170px;
  }

  .palm-right a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  }
}

/* ---------------------------------------
   Shared page helpers (menus/lunch/dinner/wine)
---------------------------------------- */
.page-content {
  font-family: "Red Hat Display", sans-serif;
  padding: 80px 40px;
  background: #f5f5f5;
  min-height: 60vh;
}

.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 38px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #243419;
}

.page-title p {
  margin-top: 10px;
  color: #444;
  font-size: 16px;
  line-height: 1.6;
}

.menu-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.menu-tile {
  width: 320px;
  background: #ffffff;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #e3e3e3;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.menu-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.10);
}

.menu-tile .menu-tile-inner {
  padding: 22px;
}

.menu-tile h2 {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #324724;
  margin-bottom: 8px;
}

.menu-tile p {
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

.menu-tile .menu-tile-cta {
  margin-top: 16px;
  display: inline-block;
  background: #243419;
  color: #ffffff;
  padding: 10px 14px;
  border-radius: 4px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.menu-tile:hover .menu-tile-cta {
  background: #452920;
}

/* Image-ready layout for Lunch / Dinner / Wine pages */
.menu-image-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-image-grid figure {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 6px;
  overflow: hidden;
}

.menu-image-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.menu-image-grid figcaption {
  padding: 12px 14px;
  font-size: 13px;
  color: #444;
  line-height: 1.4;
}

.menu-note {
  margin: 22px auto 0;
  max-width: 900px;
  background: #ffffff;
  border: 1px dashed #cfcfcf;
  border-radius: 6px;
  padding: 16px 18px;
  color: #444;
  font-size: 14px;
  line-height: 1.6;
}

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

@media (max-width: 650px) {
  .page-content {
    padding: 60px 18px;
  }
  .menu-image-grid {
    grid-template-columns: 1fr;
  }
  .menu-tile {
    width: 92%;
  }
}

/* =========================================
   GLOBAL FIX — Prevent Right Shift / Overflow
========================================= */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
}


@media (max-width: 768px) {

  .palm-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    width: 100% !important;
    padding: 16px 14px !important;
    gap: 14px !important;
  }

  .palm-left {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 14px !important;
  }

  .palm-logo {
    width: auto !important;
    height: auto !important;
  }

  .palm-logo img {
    position: static !important;  
    top: auto !important;
    left: auto !important;
    width: 105px !important;
    height: auto !important;
    display: block !important;
  }

  .palm-nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .palm-nav a {
    display: block !important;
    width: 100% !important;
    max-width: 260px !important;
    padding: 10px 12px !important;
    font-size: 15px !important;
    text-decoration: none !important;
  }

  .palm-right {
    order: 99 !important;
    width: 100% !important;
    margin-top: 6px !important;
    margin-left: 0 !important;          
    justify-content: center !important;
  }

  .palm-right a {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    text-align: center !important;
  }

  .hero-text {
    font-size: 34px !important;
    padding: 0 16px !important;
  }
}