body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fffafa;
  color: #4a4a4a;
  line-height: 1.7;
}

/* Navigation styles */
nav {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.mobile-menu-button {
  display: none;
}

/* Text heading section styles */
.textHEading .container {
  background-color: #f8f8f8;
  padding: 30px 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.textHEading h1 {
  font-size: 1.8rem;
  color: #bb100f;
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
}

.textHEading p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 20px;
  text-align: center;
}

.textHEading .btn-order {
  background-color: rgb(187 16 15);
  color: white;
  border-radius: 30px;
  padding: 16px 20px;
  text-decoration: none;
}


.timeline-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
}

.timeline-left {
  width: 25%;
  position: sticky;
  top: 100px;
  height: fit-content;
}

.timeline {
  list-style: none;
  padding-left: 20px;
  border-left: 3px solid #333;
  position: relative;
}

.timeline li {
  margin: 40px 0;
  font-weight: bold;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 10px 0;
}

.timeline li:hover {
  color: #bb100f;
  transform: translateX(5px);
}

.timeline li.active {
  color: #bb100f;
  font-weight: 700;
}

.timeline li.active::before {
  background-color: #bb100f;
  transform: scale(1.2);
}

.timeline li::before {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #333;
  border-radius: 50%;
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #333;
}

.timeline li:hover::before {
  background-color: #bb100f;
  box-shadow: 0 0 0 2px #bb100f;
}

.timeline-right {
  width: 75%;
  padding-left: 40px;
}

.timeline-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.timeline-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-block img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.timeline-block:hover img {
  transform: scale(1.02);
}

.timeline-block .text h2 {
  margin-bottom: 15px;
  font-size: 22px;
  color: #bb100f;
}

.timeline-block .text p {
  line-height: 1.6;
  font-size: 16px;
  color: #4a4a4a;
}


header h1 {
  margin: 0;
  font-size: 3rem;
  font-weight: 700;
}

header p {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.9;
}

section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

section h2 {
  font-size: 2.5rem;
  color: #bb100f;
  margin-bottom: 3rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.products-grid > .product-card:last-child {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 340px;
  width: 100%;
}

.product-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.product-card h3 {
  font-size: 1.5rem;
  margin: 1.5rem 0 0.5rem 0;
  color: #bb100f;
}

.product-card p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 1rem;
}

.highlight-section {
  background: #f0ebe5;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(187,16,15,0.07);
  position: relative;
  overflow: hidden;
  margin-bottom: 3rem;
}

.special-item {
  display: flex;
  align-items: center;
  gap: 3rem;
  text-align: left;
  background: white;
  padding: 3rem;
  border-radius: 16px;
}

.special-item img {
  max-width: 300px;
  border-radius: 12px;
}

.special-details h3 {
  font-size: 2rem;
  color: #bb100f;
  margin-top: 0;
}

.special-menu-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
  background: rgba(255,255,255,0.85);
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.special-menu-prompt::before {
  content: '\1F372'; /* Unicode for cloche/serving dish */
  font-size: 3.5rem;
  display: block;
  margin-bottom: 0.5rem;
  color: #bb100f;
  filter: drop-shadow(0 2px 6px #c3bab0);
  animation: menu-bounce 2s infinite;
}

@keyframes menu-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-12px); }
  60% { transform: translateY(-6px); }
}

.special-menu-prompt p {
  font-size: 1.18rem;
  color: #4a4a4a;
  margin: 0 0 0.5rem 0;
}

.btn-order {
  display: inline-block;
  background: #bb100f;
  color: #fff;
  padding: 15px 30px;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(187,16,15,0.3);
  position: relative;
  overflow: hidden;
}

.btn-order:hover {
  background: #7a0042;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187,16,15,0.4);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.step {
  text-align: center;
}

.icon-placeholder {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: #bb100f;
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 3rem 2rem;
}

footer a {
  color: #c3bab0;
}

.footer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  opacity: 0.7;
}

.logo {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  z-index: 10;
}

.logo img {
  height: 60px;
}

#about-owners {
  background: white;
  padding-top: 4rem;
  padding-bottom: 0;
}

.owner-section {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.owner-section.reverse {
  flex-direction: row-reverse;
}

.owner-image {
  flex: 1;
}

.owner-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.owner-text {
  flex: 1.2;
  text-align: left;
}

.owner-text h2 {
  text-align: left;
  margin-bottom: 1.5rem;
}

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

@media (max-width: 768px) {
  .special-item {
    flex-direction: column;
    text-align: center;
  }
}

.hero-header {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-header-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}

.hero-header-text h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}

.hero-header-sub {
  font-size: 1.5rem;
  font-weight: 300;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.hero-header-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-header-image img {
  max-width: 340px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.13);
}

@media (max-width: 900px) {
  .hero-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .hero-header-image {
    justify-content: center;
    width: 100%;
  }
  .hero-header-text {
    text-align: center;
    width: 100%;
  }
  .hero-header-text h1 {
    font-size: 2.8rem;
  }
}



.bistro-intro {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.8rem;
  color: #bb100f;
  margin-bottom: 30px;
  font-weight: 700;
}

.intro-text {
  background-color: #f8f8f8;
  padding: 30px 40px;
  border-radius: 12px;
  margin-bottom: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.intro-text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin: 0;
}

.discover-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
}

.discover-story-label {
  font-size: 1.4rem;
  color: #bb100f;
  font-weight: 600;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.discover-story-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  box-shadow: 0 2px 12px rgba(187,16,15,0.10);
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  margin-top: 0;
  position: relative;
}
.discover-story-btn:hover, .discover-story-btn:focus {
  background: #f0ebe5;
  box-shadow: 0 6px 24px rgba(187,16,15,0.13);
  transform: translateY(-2px) scale(1.06);
}
.down-arrow-svg {
  display: block;
  margin: 0 auto;
  transition: transform 0.3s cubic-bezier(.4, .2, .6, 1);
}
.discover-story-btn:hover .down-arrow-svg,
.discover-story-btn:focus .down-arrow-svg {
  transform: translateY(4px) scale(1.12);
}

.arrow-down {
  font-size: 1.8rem;
  color: #bb100f;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .bistro-intro {
    padding: 60px 20px;
  }

  .intro-content h2 {
    font-size: 2.2rem;
  }

  .intro-text {
    padding: 25px 30px;
  }

  .intro-text p {
    font-size: 1.1rem;
  }

  .discover-story p {
    font-size: 1.2rem;
  }
}

.visit-section {
  background: #f0ebe5;
  margin: 60px auto 0 auto;
  border-radius: 18px;
}

.visit-columns {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.visit-left {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
}

.visit-left iframe {
  flex: 1 1 auto;
  height: 100%;
  min-height: 320px;
}

.visit-right {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: stretch;
}

.visit-right h3 {
  color: #bb100f;
  font-size: 1.3rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.visit-hours {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
}

.visit-hours li {
  color: #444;
  font-size: 1rem;
  margin-bottom: 7px;
}

.visit-contact {
  margin-top: 18px;
  text-align: center;
}

.visit-contact p {
  margin-bottom: 12px;
  color: #444;
  font-size: 1.08rem;
}

.visit-contact a {
  color: #bb100f;
  text-decoration: none;
  font-weight: 500;
}

.visit-reserve-btn {
  display: inline-block;
  background: #bb100f;
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  margin-top: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(187,16,15,0.3);
  border: none;
  cursor: pointer;
  width: auto;
  min-width: 200px;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visit-reserve-btn:hover {
  background: #7a0042;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187,16,15,0.4);
}

@media (max-width: 900px) {
  .visit-columns {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .visit-left iframe {
    min-height: 280px;
    height: 280px;
  }
  .visit-right {
    padding: 24px 12px;
  }
  .visit-section {
    /* padding: 0 4vw 32px 4vw; */
  }
}

.owners-flip-section {
  padding: 4rem 2rem 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.owners-flip-container {
  display: flex;
  gap: 5rem;
  justify-content: space-evenly;
  width: 100%;
}

.owner-card {
  background: white;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 320px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.owner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.owner-image {
  margin-bottom: 1.5rem;
}

.owner-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.owner-info h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: #bb100f;
  font-weight: 700;
}

.owner-info p {
  font-size: 1.08rem;
  color: #4a4a4a;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .owners-flip-container {
    flex-direction: column;
    gap: 2.5rem;
    align-items: center;
    justify-content: center;
  }
  .owner-card {
    width: 90vw;
    max-width: 340px;
  }
}

@media (max-width: 600px) {
  .special-menu-prompt {
    padding: 1.2rem 0.5rem;
    max-width: 98vw;
  }
  .highlight-section {
    padding: 1.2rem 0.5rem;
  }
}

/* Enhanced Mobile Responsiveness for Phone View */
@media (max-width: 768px) {
  /* Mobile menu button */
  .mobile-menu-button {
    display: block;
  }

  /* General mobile optimizations */
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  section {
    padding: 2rem 1rem;
  }

  section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }



  /* Hero section mobile optimization */
  .hero-header {
    height: 60vh;
    min-height: 400px;
  }

  .hero-header-text h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .hero-header-sub {
    font-size: 1rem;
    line-height: 1.4;
  }

  /* Logo mobile optimization */
  .logo {
    padding: 0.8rem 1rem;
  }

  .logo img {
    width: 120px;
  }

  /* Timeline mobile optimization */
  .timeline-container {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }

  .timeline-left {
    width: 100%;
    position: static;
    order: 2;
  }

  .timeline {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    border-left: none;
    border-bottom: 3px solid #333;
    padding: 0 0 20px 0;
    gap: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .timeline::-webkit-scrollbar {
    display: none;
  }

  .timeline li {
    margin: 0;
    padding: 0.5rem 1rem;
    white-space: nowrap;
    font-size: 0.9rem;
    border-radius: 20px;
    background: #f5f5f5;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .timeline li::before {
    display: none;
  }

  .timeline li.active {
    background: #bb100f;
    color: white;
  }

  .timeline-right {
    width: 100%;
    padding-left: 0;
    order: 1;
  }

  .timeline-block {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .timeline-block .text h2 {
    font-size: 1.4rem;
  }

  .timeline-block .text p {
    font-size: 0.95rem;
  }

  /* Products section mobile optimization */
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .products-grid > .product-card:last-child {
    max-width: 100%;
  }

  .product-card {
    margin: 0;
  }

  .product-card img {
    height: 180px;
  }

  .product-card h3 {
    font-size: 1.3rem;
    margin: 1rem 0 0.5rem 0;
  }

  .product-card p {
    padding: 0 1rem 1rem 1rem;
    font-size: 0.95rem;
  }

  /* Flip cards mobile optimization */
  .owners-flip-section {
    padding: 2rem 1rem;
  }

  .owners-flip-container {
    gap: 1.5rem;
  }

  .owner-card {
    width: 100%;
    max-width: 300px;
    padding: 1.5rem 1rem;
  }

  .owner-image img {
    width: 90px;
    height: 90px;
  }

  .owner-info h3 {
    font-size: 1.2rem;
  }

  .owner-info p {
    font-size: 0.9rem;
  }

  /* Visit section mobile optimization */
  .visit-section {
    padding: 2rem 1rem;
  }

  .visit-columns {
    gap: 1.5rem;
  }

  .visit-left iframe {
    min-height: 220px;
    height: 220px;
  }

  .visit-right {
    padding: 1.5rem 1rem;
  }

  .visit-right h3 {
    font-size: 1.2rem;
  }

  .visit-hours li {
    font-size: 0.95rem;
  }

  .visit-reserve-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    width: auto;
    min-width: 180px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Special menu section mobile optimization */
  .special-menu-prompt {
    padding: 1.5rem 1rem;
  }

  .special-menu-prompt p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  /* Gerechten gallery mobile optimization */
  .gerechten-gallery-section {
    padding: 2rem 1rem;
  }

  .gerechten-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.5rem;
  }

  .gerecht-item img {
    height: 280px;
  }

  #load-more-gerechten {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }

  .btn-order {
    display: inline-block;
    background: #bb100f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(187,16,15,0.3);
    border: none;
    cursor: pointer;
    width: auto;
    min-width: 200px;
    text-align: center;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .btn-order:hover {
    background: #7a0042;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(187,16,15,0.4);
  }

  /* Intro section mobile optimization */
  .bistro-intro {
    padding: 2rem 1rem;
  }

  .intro-content h2 {
    font-size: 1.8rem;
  }

  .intro-text p {
    font-size: 0.95rem;
  }

  .discover-story {
    margin-top: 1.5rem;
  }

  .discover-story-label {
    font-size: 0.9rem;
  }

  .discover-story-btn {
    width: 50px;
    height: 50px;
  }

  .down-arrow-svg {
    width: 24px;
    height: 24px;
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .hero-header-text h1 {
    font-size: 1.8rem;
  }

  .hero-header-sub {
    font-size: 0.9rem;
  }



  .timeline li {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }

  .timeline {
    max-width: 250px;
    padding: 0 0 0 15px;
  }

  .timeline li::before {
    width: 10px;
    height: 10px;
    left: -22px;
  }

  .product-card img {
    height: 160px;
  }

  .owner-card {
    padding: 1.5rem 1rem;
  }

  .owner-image img {
    width: 90px;
    height: 90px;
  }

  .owner-info h3 {
    font-size: 1.2rem;
  }

  .owner-info p {
    font-size: 0.9rem;
  }

  .visit-left iframe {
    min-height: 220px;
    height: 220px;
  }

  .btn-order,
  .visit-reserve-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    min-height: 44px;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-header {
    height: 50vh;
    min-height: 300px;
  }

  .timeline-container {
    padding: 1.5rem 1rem;
  }

  .owners-flip-container {
    flex-direction: row;
    gap: 1rem;
  }

  .owner-card {
    width: 45%;
    padding: 1.5rem 1rem;
  }

  .owner-image img {
    width: 80px;
    height: 80px;
  }

  .owner-info h3 {
    font-size: 1.1rem;
  }

  .owner-info p {
    font-size: 0.85rem;
  }
}

/* Marquee styles */
.marquee {
  margin: 0em 10px;
  overflow: hidden;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: scroll-one 30s linear infinite;
}

.marquee-content {
  display: flex;
}

@keyframes scroll-one {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.business-images-section img {
  transition: transform 0.3s, box-shadow 0.3s;
}

.business-images-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(187, 16, 15, 0.15);
  border-radius: 0.5rem !important;
}

.business-images-section {
  background: #ffffff;
}

/* Gerechten Gallery Section */
.gerechten-gallery-section {
  background: #f8f8f8;
}

.gerechten-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.gerecht-item {
  transition: transform 0.3s ease;
}

.gerecht-item:hover {
  transform: translateY(-5px);
}

.gerecht-item img {
  transition: all 0.3s ease;
}

#load-more-gerechten {
  box-shadow: 0 4px 15px rgba(187, 16, 15, 0.3);
}

#load-more-gerechten:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(187, 16, 15, 0.4);
}

/* Mobile menu button custom styles */
.mobile-menu-button {
  background: #bb100f !important;
  border: none !important;
  color: #fff !important;
  transition: background 0.2s, color 0.2s;
}

.mobile-menu-button:hover, .mobile-menu-button:focus {
  background: #c3bab0 !important;
  color: #bb100f !important;
  border: none !important;
}
 