/*
Theme Name: cafeteria-elementor-child
Template: cafeteria-elementor
*/
body {
  color: #000;
}
body p {
  color: #000;
}
.entry-content p {
  font-size: 16px;
}
.nav {
  justify-content: flex-end;
}
/* Root Variables */
:root {
  --primary-color: #823d18;
  --primary-dark: #5a2a10;
  --primary-light: #a04d20;
  --accent-gold: #d4af37;
  --bg-light: #fff8f3;
  --bg-dark: #1a1a1a;
  --text-dark: #2c2c2c;
  --text-muted: #666666;
  --border-color: #e0d5cc;
  --shadow: rgba(130, 61, 24, 0.1);
}
/* Entry Header */
.entry-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  padding: 20px;
  margin: 0 0 60px 0;
  position: relative;
  overflow: hidden;
}
.entry-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.entry-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  z-index: 1;
  text-align: center;
}
/* Main Content Blocks */
.rest-blk {
  background: #ffffff;
  border: 1px solid var(--border-color);
  padding: 20px;
  margin: 30px 0;
  position: relative;
  transition: all 0.4s ease;
}
.rest-blk::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--accent-gold) 100%);
}
.rest-blk:hover {
  transform: translateX(8px);
  box-shadow: -8px 12px 32px var(--shadow);
}
/* Text Alignment Blocks */
.text-right,
.text-left {
  padding: 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  position: relative;
}
.text-right::after,
.text-left::after {
  content: "🍱";
  font-size: 80px;
  position: absolute;
  opacity: 0.1;
  z-index: 0;
}
.text-right::after {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.text-left::after {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.text-right > *,
.text-left > * {
  flex: 1;
  position: relative;
  z-index: 1;
}
.text-right {
  flex-direction: row-reverse;
}
/* Theme Block - Premium Highlight */
.theme-blk {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  padding: 20px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
}
.theme-blk::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.theme-blk h2,
.theme-blk h3 {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  position: relative;
  z-index: 1;
}
.theme-blk p {
  position: relative;
  z-index: 1;
}
/* Headings */
.entry-content h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 60px 0 30px 0;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--accent-gold);
  position: relative;
}
.entry-content h2::before {
  content: "▪";
  color: var(--accent-gold);
  margin-right: 12px;
  font-size: 28px;
}
.entry-content h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 40px 0 20px 0;
  position: relative;
  padding-left: 20px;
}
.entry-content h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: var(--primary-color);
}
/* Tables - Restaurant Ranking */
.wp-block-table {
  margin: 40px 0;
  overflow: hidden;
}
.wp-block-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #ffffff;
  border: 1px solid var(--border-color);
}
.wp-block-table thead {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}
.wp-block-table thead th {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px 16px;
  font-size: 14px;
  border-bottom: 2px solid var(--accent-gold);
}
.wp-block-table tbody tr {
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}
.wp-block-table tbody tr:hover {
  background: var(--bg-light);
  transform: scale(1.02);
  box-shadow: 0 4px 12px var(--shadow);
}
.wp-block-table tbody td {
  padding: 18px 16px;
  font-size: 15px;
  color: var(--text-dark);
  border-color: #d2ae38;
}
.wp-block-table tbody tr td:first-child {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}
.wp-block-table tbody tr td:nth-child(2) {
  font-weight: 600;
  color: var(--text-dark);
}
.wp-block-table tbody tr td:nth-child(3) {
  color: var(--accent-gold);
  font-weight: 600;
}
.wp-block-column {
  background: #ffffff;
  padding: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.wp-block-column:hover {
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px var(--shadow);
}
/* Images */
.wp-block-image img {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}
.wp-block-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 36px var(--shadow);
}
/* Cover Blocks */
.wp-block-cover {
  margin: 30px 0;
  position: relative;
  border: 1px solid var(--border-color);
}
.entry-content .wp-block-cover a {
  color: #ff975f;
}
.entry-content .wp-block-cover a:hover {
  color: #ff975f;
}
.wp-block-cover__inner-container h3 {
  color: #ffffff;
  font-size: 32px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.wp-block-cover__inner-container h3::before {
  background: var(--accent-gold);
}
.wp-block-cover__inner-container p {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
/* Blockquote - Disclaimer */
.wp-block-quote {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-left: 6px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  font-style: italic;
}
.wp-block-quote p {
  color: var(--text-muted);
  font-size: 15px;
  margin: 12px 0;
  line-height: 1.7;
}
.wp-block-quote p strong {
  color: var(--primary-color);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 16px;
}
/* Review Quotes */
.entry-content p:has(em) {
  background: var(--bg-light);
  color: #000;
  padding: 20px;
  border-left: 4px solid var(--accent-gold);
  margin: 24px 0;
  font-size: 16px;
  position: relative;
}
.entry-content p:has(em)::before {
  content: '"';
  font-size: 60px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  left: 10px;
  top: -10px;
  font-family: Georgia, serif;
}
/* Links */
.entry-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.entry-content a:hover {
  color: var(--primary-dark);
  border-bottom-color: var(--accent-gold);
}
/* Price Indicators */
.entry-content strong:contains("$") {
  color: var(--accent-gold);
  font-weight: 700;
}
/* Rating Display */
.entry-content p strong:first-child {
  display: inline-block;
  background: var(--primary-color);
  color: #ffffff;
  padding: 4px 12px;
  margin-right: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Responsive Design */
@media only screen and (max-width: 1000px) {
  .toggle-nav.mobile-menu {
    text-align: end;
  }
}
@media (max-width: 968px) {
  .entry-title {
    font-size: 36px;
  }
  #primary article.hentry {
    padding: 0;
    box-shadow: unset;
  }
  .text-right,
  .text-left {
    padding: 10px;
  }
  .rest-blk {
    padding: 30px;
  }
  .theme-blk {
    padding: 20px;
  }
  .entry-content h2 {
    font-size: 28px;
  }
  .entry-content h3 {
    font-size: 24px;
  }
}
@media (max-width: 781px) {
  .text-right {
    flex-direction: column-reverse;
  }
}
@media (max-width: 640px) {
  .entry-header {
    padding: 20px;
  }
  .entry-title {
    font-size: 28px;
  }
  .rest-blk,
  .text-right,
  .text-left,
  .theme-blk {
    padding: 13px;
  }
  .wp-block-table {
    overflow-x: auto;
  }
  .wp-block-table thead th,
  .wp-block-table tbody td {
    padding: 12px 8px;
  }
}
/* Smooth Animations */
* {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
/* Selection Style */
::selection {
  background: var(--primary-color);
  color: #ffffff;
}
::-moz-selection {
  background: var(--primary-color);
  color: #ffffff;
}
