body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #7b4a43;
    color: white;
    padding: 50px 0;
}

header p {
    text-align: left;
}

header h1 {
    font-size: 3em;
    margin: 0;
}

/* Modal background (with blur effect) */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.5); /* extra donkerlaag */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9999;
}

.modal p, button {
  font-size: 1em;
  text-align: center;
}

/* Popup box */
.modal-content {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  animation: fadeIn 0.4s ease;
}

/* Button style */
#close-modal {
  margin-top: 20px;
  padding: 10px 20px;
  background: #7b4a43;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

#close-modal:hover {
  background: #a05d54;
}

/* Fade in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.chinese-title {
    font-family: 'WangHanZongYanKai', Arial, sans-serif;
    font-size: 4em; /* adjust as needed */
    letter-spacing: 0.1em;
}

header button {
    background-color: white;
    color: #7b4a43;
    border: none;
    padding: 15px 30px;
    font-size: 1.2em;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s;
}

header button:hover {
    background-color: #e0e0e0;
}

section {
    padding: 20px;
    text-align: center;
    box-sizing: border-box;
}

.menu {
    margin: 20px auto;
    width: 80%;
    border-collapse: collapse;
}

.menu th, .menu td {
    border: 1px solid #7b4a43;
    padding: 10px;
    text-align: left;
}

.menu th {
    background-color: #7b4a43;
    color: white;
}

footer {
    background-color: #7b4a43;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: white;
    text-decoration: none;
}

.footer-links a {
    color: white;
    margin: 0 1em;
    text-decoration: none;
}

.pattern {
    background-color: #7b4a43;
}

.background-decor {
    background-color: #7b4a43;
    margin-top: 1em;
    margin-bottom: 1em;
}

.background-decor-header {
    background-color: #7b4a43;
    margin-top: 1em;
    margin-bottom: 1em;
}

.background-decor-menu {
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.menu-box {
    background: #fff;
    box-shadow: 0 4px 24px rgba(123,74,67,0.15);
    border-radius: 1.5rem;
    padding: 2rem;
    overflow-x: auto;
    border: 2px solid #7b4a43;
}

.menu-box table {
    width: 100%;
    border-collapse: collapse;
}

.menu-box th, .menu-box td {
    border-bottom: 1px solid #e5d6d2;
    padding: 0.75rem;
    text-align: left;
}

.menu-box th {
    background: #7b4a43;
    color: #fff;
    font-size: 1.1rem;
}

.menu-note {
    font-size: 0.9rem;
    color: #7b4a43;
    margin-top: 1rem;
}

.menu-category {
    background: #f7f3f1;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(123,74,67,0.07);
    padding: 1rem 1rem 1.5rem 1rem;
}

.menu-category h3 {
    color: #7b4a43;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
}

.menu-category table {
    width: 100%;
    border-collapse: collapse;
    background: transparent;
}

.menu-category td {
    border-bottom: 1px solid #e5d6d2;
    padding: 0.5rem;
}

.menu-category tr:last-child td {
    border-bottom: none;
}

/* Header layout */
.main-header {
  position: relative; /* stacking context for pseudo/absolute children */
  overflow: visible;
  z-index: 1;
  /* keep the visual height you already had */
  height: 60vh;
    background: #7b4a43;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.main-header p {
    color: #fff;
    font-family: Arial, sans-serif;
    margin: 0;
    text-align: left;
    font-weight: 400;
    letter-spacing: 0.01em;
}
.header-content {
    position: relative;
    z-index: 2;
    display: flex;
    width: 90vw;
    max-width: 1400px;
    height: 100%;
    align-items: center;
    justify-content: space-between;
}
.header-left {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}
.header-buttons button {
    margin-right: 1rem;
    padding: 0.7em 1.5em;
    background: #e6c7b2;
    color: #7b4a43;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    transition: background 0.2s;
}
.header-buttons button:hover {
    background: #fff;
}
.header-right {
    flex: 1.2;
    display: flex;
    justify-content: flex-end;
}
.opening-hours-box {
    background: rgba(255,255,255,0.13);
    color: #fff;
    border-radius: 12px;
    padding: 2rem 2.5rem;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    
    min-width: 320px;
    max-width: 400px;
    text-align: center;
}
#restaurant-status {
    margin-top: 1.2em;
    font-weight: bold;
    font-size: 1.1em;
    padding: 0.7em 1em;
    border-radius: 6px;
    text-align: center;
}
.status-open {
    background: #4caf50;
    color: #fff;
}
.status-closed {
    background: #f44336;
    color: #fff;
}
#restaurant-info {
    background: linear-gradient(rgba(123,74,67,0.55), rgba(123,74,67,0.55)), url('../images/wokpan.jpg') center center/cover no-repeat;
    color: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(123,74,67,0.15);
    padding: 2.5rem 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    font-size: 1.15em;
}
#restaurant-info ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

#restaurant-info ul li {
    background: rgba(255,255,255,0.82);
    color: #7b4a43;
    border-radius: 10px;
    margin: 0.7em 0;
    padding: 1em 1.2em;
    font-size: 0.8em;
    box-shadow: 0 2px 8px rgba(123,74,67,0.09);
    text-align: left;
    font-weight: 500;
    letter-spacing: 0.01em;
}

#restaurant-info h2 {
    text-shadow: 0 2px 8px rgba(123,74,67,0.18);
}

#about-us {
    background-color: #7b4a43;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 4rem;
}

#about-us img {
    height: 450px;
    width: auto;
    max-width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(123,74,67,0.3);
}

#about-us ul {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    text-align: left;
}

#about-us h2 {
    text-shadow: 0 2px 8px rgba(123,74,67,0.18);
    font-size: 1.7em;
}

.bestel-nu-section {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(123,74,67,0.13);
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.bestel-nu-image {
    width: 220px;
    height: 160px;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(123,74,67,0.10);
    flex-shrink: 0;
}

.bestel-nu-content {
    flex: 1;
    min-width: 220px;
}

.bestel-nu-content h2 {
    color: #7b4a43;
    margin-top: 0;
    margin-bottom: 0.7em;
    font-size: 2em;
}

.bestel-nu-content p {
    color: #7b4a43;
    margin-bottom: 1.2em;
    font-size: 1.1em;
}

.bestel-nu-buttons {
    display: flex;
    gap: 1.2em;
    flex-wrap: wrap;
}

.bestel-nu-btn {
    background: #7b4a43;
    color: #fff;
    padding: 0.9em 2em;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.2s;
    border: none;
    display: inline-block;
    margin-bottom: 0.5em;
    box-shadow: 0 2px 8px rgba(123,74,67,0.07);
}

.bestel-nu-btn:hover {
    background: #a86c5a;
}

.bestel-nu-section {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(123,74,67,0.13);
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.privacy-div {
    flex: 1;
    min-width: 220px;
}

.privacy-section {
    background: #fff;
    border-radius: 1.5rem;
    box-shadow: 0 4px 24px rgba(123,74,67,0.13);
    max-width: 900px;
    margin: 2.5rem auto;
    padding: 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    text-align: left;
}

.privacy-section h2 {
    color: #7b4a43;
    margin-top: 0;
    margin-bottom: 0.7em;
    font-size: 2em;
}

.privacy-section p {
    color: #7b4a43;
    margin-bottom: 1.2em;
    font-size: 1.1em;
}

.reviews-section {
  max-width: 100vw;
  overflow: hidden;
  margin: 2.5rem auto;
  padding: 2rem 0;
  text-align: center; 
  color: #7b4a43;
}

.reviews-section h2 {
  margin-bottom: 1.5rem;
  font-size: 2em;
}

.reviews-slider {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.5s ease;
}


.review {
  flex: 0 0 350px; /* 3 zichtbaar naast elkaar */
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.review-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 24px rgba(123,74,67,0.13);
}

.stars {
  color: #f4c542;
  font-size: 1.3em;
  margin-bottom: 0.5rem;
}

.review span {
  display: block;
  margin-top: 0.8rem;
  font-weight: bold;
  color: #a86c5a;
}

#reviews .button {
  display: inline-block;
  margin-top: 2em;
  padding: 0.9em 2em;
  background-color: #7b4a43; 
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

#reviews .button:hover {
  background-color: #a86c5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

#reviews .button:active {
  transform: translateY(0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.button {
    display: inline-block;
    background: #f5d6c6;
    color: #7b4a43;
    padding: 0.9em 2em;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border: none;
    margin: 0.5em;
    cursor: pointer;
    transition: background 0.2s;
}
.button:hover {
    background: #eac2ad;
}

/* Remove bullets and spacing on the openingsuren list */
.opening-hours-box ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.opening-hours-box ul li {
  list-style: none;
  padding-left: 0;
  margin: 0.35em 0;
}

@font-face {
    font-family: 'WangHanZongYanKai';
    src: url('../fonts/wt064.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .main-header {
        height: 100vh;
        min-height: 500px;
    }
    .header-content {
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        height: auto;
        gap: 2rem;
        text-align: center;
    }
    .header-left {
        align-items: center;
        text-align: center;
    }
    .header-buttons {
        justify-content: center;
        width: 100%;
    }
    .header-right {
        justify-content: flex-start;
    }
    .opening-hours-box {
        min-width: unset;
        width: 100%;
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        
    }
    .bestel-nu-section {
        flex-direction: column;
        align-items: center;
        padding: 1.2rem 0.5rem;
    }
    .bestel-nu-image {
        width: 90vw;
        max-width: 320px;
        height: 120px;
    }
    .bestel-nu-content {
        width: 100%;
        min-width: unset;
        text-align: center;
    }
    .bestel-nu-buttons {
        flex-direction: column;
        gap: 0.7em;
        align-items: center;
    }

    #about-us {
        flex-direction: column;
        text-align: center;
    }

    #about-us img {
        height: auto;
        width: 100%;
    }

    #about-us ul {
        text-align: center;
    }
      .background-decor-header { 
        display: none; 
    }

  .main-header { 
    height: auto; 
    min-height: 46vh; 
    padding-top: 1rem; 
}

}

