.navbar-brand,
.navbar-nav .nav-link,
.dropdown-toggle {
    color: rgb(255, 255, 255) !important;
}

.yelp-header {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    font-family: sans-serif;
}

.yelp-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    /* overlay darkening */
    z-index: 5;
    /* text above images */
}

/* PHOTO STRIP */
.yelp-photos {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.photos-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.photos-track img {
    width: 100%;
    /* exactly like Yelp cropping */
    object-fit: cover;
}

/* VIGNETTE FADES */
.fade-left,
.fade-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.fade-left {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), transparent);
}

.fade-right {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.6), transparent);
}

/* ARROWS */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: #fff;
    border: none;
    color: #000;
    font-size: 20px;
    padding: 10px 18px;
    cursor: pointer;
    border-radius: 50%;
}

.nav-btn.left {
    left: 10px;
}

.nav-btn.right {
    right: 10px;
}

/* SEE ALL BUTTON */
.see-all {
    position: absolute;
    bottom: 20px;
    right: 300px;
    z-index: 20;
    background: rgba(0, 0, 0, 0.65);
    padding: 10px 18px;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

/* INFO SECTION */
.yelp-info {
    position: absolute;
    top: 230px;
    left: 300px;
    width: 1350px;
    color: white;
    z-index: 20;
}

.yelp-info h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 14px;
}

.stars-row {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.stars {
    font-size: 28px;
}

.rating-text {
    margin-left: 10px;
    font-size: 18px;
}

.meta-row {
    font-size: 18px;
    margin-bottom: 6px;
}

.claimed {
    color: #4cd964;
    margin-right: 6px;
    font-weight: bold;
}

.hours-row {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.closed {
    color: #ff6666;
}

.see-hours {
    background: none;
    border: none;
    color: #fff;
    text-decoration: underline;
    cursor: pointer;
}

.updated {
    opacity: 0.7;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .yelp-header {
        height: 300px;
    }

    .yelp-info h1 {
        font-size: 28px;
    }

    .stars {
        font-size: 20px;
    }
}

.yelp-main-content {
    display: flex;
    width: 1350px;
    margin: 40px auto;
    position: relative;
}

/* LEFT SIDE – 65% */
.left-column {
    width: 65%;
    padding-right: 25px;
}

/* RIGHT SIDE – fixed sidebar (35%) */
.right-column {
    width: 35%;
    position: sticky;
    top: 80px;
    /* navbar height adjust */
    height: fit-content;
}

.yelp-action-bar {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

/* Base button style */
.btn {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* RED primary button */

/* OUTLINE buttons */
.outline-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.outline-btn:hover {
    background: #f7f7f7;
}

.yelp-action-bar {
    display: flex;
    gap: 12px;
    margin: 20px 0;
}

.btn {
    padding: 10px 18px;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Red Yelp Button */
.review-btn {
    background: #FDCF09;
    color: white;
    border: none;
}

.review-btn svg {
    stroke: white;
}

.review-btn:hover {
    background: #ffc107;
    color: white;
}

/* White Outline Buttons */
.outline-btn {
    background: #fff;
    border: 1px solid #ddd;
    color: #333;
}

.outline-btn svg {
    stroke: #333;
}

.outline-btn:hover {
    background: #f7f7f7;
}


/* Section Titles */
.menu-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 5px;
}

.popular-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
}

.popular-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.view-menu {
    font-size: 15px;
    color: #0073bb;
    font-weight: 600;
    text-decoration: none;
}

/* DISH GRID */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

/* CARD */
.dish-card h4 {
    margin: 8px 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.dish-card p {
    font-size: 14px;
    color: #666;
}

/* IMAGE */
.dish-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.dish-img img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}

/* Hover Arrows */
.img-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 5px 10px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.img-arrow.left {
    left: 8px;
}

.img-arrow.right {
    right: 8px;
}

.dish-img:hover .img-arrow {
    opacity: 1;
}

/* Website Menu Button */
.website-menu-btn {
    margin-top: 22px;
    padding: 10px 18px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
}

.website-menu-btn:hover {
    background: #f7f7f7;
}

/* Responsive */
@media (max-width: 900px) {
    .dish-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


.dish-img {
    position: relative;
    overflow: hidden;
    height: 160px;
    border-radius: 8px;
}

/* Track containing multiple images */
.dish-img-track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    transition: transform 0.4s ease;
}

.dish-img-track img {
    width: 100%;
    /* FULL width of container */
    flex-shrink: 0;
    /* STOP image from shrinking */
    height: 100%;
    object-fit: cover;
}


.vibe-section {
    margin-top: 40px;
}

.vibe-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* IMAGE GRID */
.vibe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.vibe-card h4 {
    margin: 10px 0 4px;
    font-size: 16px;
    font-weight: 600;
}

.vibe-card p {
    font-size: 14px;
    color: #666;
}

/* IMAGE WRAPPER */
.vibe-img {
    position: relative;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
}

/* TRACK FOR MULTIPLE IMAGES */
.vibe-img-track {
    display: flex;
    flex-wrap: nowrap;
    height: 100%;
    transition: transform 0.4s ease;
}

.vibe-img-track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

/* ARROWS */
.vibe-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 10px;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    transition: 0.3s;
}

.vibe-arrow.left {
    left: 10px;
}

.vibe-arrow.right {
    right: 10px;
}

.vibe-img:hover .vibe-arrow {
    opacity: 1;
}

.vibe-attributes {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px 50px;
    align-items: flex-start;
}

.attr-item {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 235px;
    color: #333;
    font-size: 15px;
}

/* SVG icon general style */
.attr-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    color: #333;
    /* icon color (uses currentColor) */
    display: block;
}

/* Make icons slightly teal like Yelp green for 'claimed' or keep neutral */
.attr-item .attr-icon {
    color: #333;
}

/* smaller subdued text for counts (if you add them) */
.attr-item small {
    display: block;
    color: #777;
    font-size: 13px;
}

/* Responsive: stack nicely on mobile */
@media (max-width: 900px) {
    .vibe-attributes {
        gap: 14px 18px;
    }

    .attr-item {
        min-width: 140px;
        font-size: 14px;
    }

    .attr-icon {
        width: 20px;
        height: 20px;
    }
}


/* MORE BUTTON */
.more-attributes-btn {
    margin-top: 18px;
    padding: 10px 16px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    cursor: pointer;
}

.more-attributes-btn:hover {
    background: #f7f7f7;
}

/* Container */
.location-hours{
  display: flex;
  gap: 30px;
  align-items: flex-start;
  position: relative;
  padding: 24px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  margin-top:20px;
}

/* Suggest edit */
.suggest-edit{
  position: absolute;
  right: 0;
  top: 6px;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 8px;
}
.suggest-edit:hover{ text-decoration: underline; }

/* Left column (map + address) */
.lh-left{ width: 45%; min-width: 260px; }
.map img{
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  display: block;
}

/* Address block */
.address{
  margin-top: 12px;
  font-size: 14px;
  color: #333;
  line-height: 1.35;
}
.address .street{
  color: #1a73e8;
  font-weight: 700;
  text-decoration: none;
}
.address .neighbour{ color: #777; margin-top: 6px; }

/* Get directions button */
.action-row{ margin-top: 12px; }
.get-directions{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 600;
}
.get-directions:hover{ background: #f7f7f7; }

/* Right column (hours) */
.lh-right{ width: 55%; min-width: 220px; }
.hours-title{
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 700;
  color: #222;
}

/* Hours list */
.hours-list{
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}
.hours-list li{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 18px;
  padding: 6px 0;
  font-size: 15px;
  color: #222;
}

/* day / time / status */
.hours-list .day{
  width: 60px;
  font-weight: 600;
  color: #222;
}
.hours-list .time{ color: #333; }
.hours-list .status{
  margin-left: 12px;
  font-weight: 700;
  color: #FDCF09; /* red for closed */
}

/* Highlight current day */
.hours-list li.today{
  background: transparent;
}
.hours-list li.today .day{ color: #111; }
.hours-list li.today .status.open{
  color: #188038; /* green for open */
}

/* small helper for closed label */
.hours-list li.closed .status{ color: #FDCF09; }

/* Responsive */
@media (max-width: 880px){
  .location-hours{ flex-direction: column; gap: 18px; }
  .lh-left, .lh-right{ width: 100%; }
  .suggest-edit{ position: static; display: inline-block; margin-top: 8px; }
}

.ymac-section {
    margin-top: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    font-family: system-ui, sans-serif;
}

/* Header */
.ymac-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
}

.ymac-header h3 {
    font-size: 20px;
    font-weight: 700;
}

.sponsored {
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

.info-icon {
    width: 14px;
    height: 14px;
}

/* Item Row */
.ymac-item {
    display: flex;
    gap: 15px;
    margin-bottom: 24px;
    position: relative;
}

.ymac-img {
    width: 100px;
    height: 100px;
    border-radius: 6px;
    object-fit: cover;
}

/* Content */
.ymac-content {
    flex: 1;
}

.biz-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 6px;
}

.rating-num {
    color: #666;
}

/* Distance */
.distance-row {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #444;
}

.pin-icon {
    width: 16px;
    height: 16px;
}

/* Review text */
.review-snippet {
    margin: 8px 0 6px;
    font-size: 14px;
    color: #444;
    line-height: 1.4;
}

.read-more {
    color: #0073bb;
    font-weight: 600;
    text-decoration: none;
}

.read-more:hover {
    text-decoration: underline;
}

/* Categories */
.biz-cats {
    font-size: 14px;
    color: #666;
}

/* Three-dot menu */
.more-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.more-btn:hover {
    color: #555;
}
.star-rating {
    display: flex;
    align-items: center;
    gap: 2px;
}

.star-icon {
    width: 20px;
    height: 20px;
}

.contact-card {
    width: 100%;
    font-family: system-ui, sans-serif;
}

/* ORDER BUTTON */
.order-btn {
    width: 100%;
    background: #FDCF09;
    color: #fff;
    border: none;
    font-size: 16px;
    padding: 12px;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin-bottom: 15px;
}

.order-btn:hover {
    background: #ffc107;
}

.ext-icon {
    width: 18px;
    height: 18px;
}

/* BOX */
.info-box {
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
}

/* ROWS */
.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-size: 15px;
}

.info-link {
    color: #0073bb;
    font-weight: 600;
    text-decoration: none;
}

.info-link:hover {
    text-decoration: underline;
}

.row-icon {
    width: 18px;
    height: 18px;
    color: #333;
}

.phone {
    color: #333;
}

/* Divider */
.divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0 12px;
}

/* Address */
.address {
    font-size: 14px;
    color: #555;
    margin-bottom: 18px;
    line-height: 1.4;
}

/* Suggest Edit Button */
.edit-btn {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 15px;
}

.edit-btn:hover {
    background: #f7f7f7;
}

.edit-icon {
    width: 18px;
    height: 18px;
}

.ymac-compact {
  border-top: 1px solid #eee;
  padding-top: 18px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
  color: #222;
  max-width: 700px;
}

.ymac-compact-title {
  font-size: 18px;
  margin: 0 0 6px 0;
  font-weight: 700;
}

.sponsored-line {
  color: #777;
  font-size: 13px;
  display:flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
}
.info-sm{ width:14px; height:14px; color:#777; }

/* Item row */
.ymac-item {
  display:flex;
  gap:14px;
  padding:12px 0;
  border-bottom:1px solid #f0f0f0;
  align-items:flex-start;
}

/* thumbnail */
.ymac-thumb {
  width:72px;
  height:72px;
  border-radius:8px;
  object-fit:cover;
  flex:0 0 72px;
}

/* body */
.ymac-body { flex:1; }

.row-top {
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.biz-name {
  font-weight:700;
  font-size:16px;
  color:#111;
}

/* rating container (stars + numeric) */
.rating-wrap {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:#666;
}

/* distance line */
.distance {
  margin-top:6px;
  font-weight:700;
  color:#444;
  font-size:14px;
}

/* snippet */
.snippet {
  margin:8px 0 0 0;
  color:#444;
  font-size:14px;
  line-height:1.35;
}

/* read more link */
.read-more {
  color:#0073bb;
  font-weight:600;
  text-decoration:none;
  margin-left:6px;
}
.read-more:hover { text-decoration:underline; }

/* responsive */
@media (max-width:520px){
  .ymac-item { gap:10px; }
  .ymac-thumb { width:60px; height:60px; flex:0 0 60px; }
  .biz-name { font-size:15px; }
}
