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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fdfdfd;
  color: #333;
  line-height: 1.6;
}

header {
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-logo-container {
  width: 225px;
}

#nav-logo {
  width: inherit;
}

.social-icons {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: 10px;
  font-size: x-large;
}

.social-icons > a > i {
  color: grey;
}

.hero {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
}

.switch-container {
  display: flex;
  justify-content: center;
  margin: 0px auto 30px auto;
  background: #f1f1f1;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  font-family: sans-serif;
}

.switch-button {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  transition: background 0.3s, color 0.3s;
}

.switch-button.active {
  background-color: #333;
  color: #fff;
  font-weight: bold;
}

.slideshow-container {
  max-height: 400px;
  margin: 10px auto;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slide {
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-height: 230px;
}

.slide img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 12px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  background-color: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 4px;
  user-select: none;
  z-index: 1;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.booking, .view-menu {
  display: flex;
  justify-content: center;
}

.booking iframe {
  border: none;
  border-radius: 8px;
  width: 100%;
  height: 600px;
}

.opening_hours, .contact {
  max-width: 960px;
  margin: 0 auto;
}

.opening-hours, .team, .testimonials {
  margin-top: 2rem;
}

.hours {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.hours div ul {
  list-style: none;
  padding-left: 0;
}

.team ul {
  list-style: none;
  padding-left: 0;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1rem 0;
  border-left: 4px solid #ccc;
  padding-left: 1rem;
  color: #555;
}

.map iframe {
  width: 100%;
  height: 400px;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #f2f2f2;
  margin-top: 2rem;
  font-size: 0.9rem;
}

#booksy-widget-dialog {
  width: 90% !important;
  margin: 25% auto !important;
  overflow: scroll !important;
}

#booksy-widget-dialog iframe {  
  height: 715px !important;
  width: 100% !important;
}

.hours-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.hours-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

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

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 7px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  line-height: normal;
}

.hours-list li:last-child {
  border-bottom: none;
}

.day {
  font-weight: 500;
  color: #444;
}

.time {
  font-weight: 400;
  color: #666;
}

.today {
  background-color: #0000000f;
  font-weight: bold;
  border-radius: 8px;
  padding: 8px;
  color: #007b5e;
}

.team-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.team-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.team-member {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 12px;
  cursor: pointer;
}

.team-member:last-child {
  margin-bottom: 0;
}

.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.member-info {
  flex: 1;
}

.name {
  font-weight: 600;
  color: #333;
}

.role {
  font-size: 14px;
  color: #666;
}

.see-more-btn {
  font-size: 14px;
  color: #007b5e;
  background: none;
  border: none;
  padding: 4px 8px;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
}

.modal-content {
  background-color: #fff;
  margin: 15% auto;
  padding: 20px;
  width: 90%;
  max-width: 350px;
  border-radius: 10px;
  text-align: center;
}

.close {
  color: #999;
  float: right;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
}

.reviews-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.reviews-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
  color: #333;
}

.review-slider {
  position: relative;
  min-height: 100px;
}

.review-slide {
  display: none;
  text-align: center;
  padding: 8px;
}

.review-slide.active {
  display: block;
}

.review-controls {
  display: flex;
  justify-content: center;
  margin-top: 12px;
}

.review-btn {
  background-color: transparent;
  border: none;
  font-size: 20px;
  margin: 0 12px;
  cursor: pointer;
  color: #333;
}

.review-btn:hover {
  color: #007b5e;
}

.findus-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.findus-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.map-wrapper {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.address {
  text-align: center;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.review-img {
  width: 100%;
  border-radius: 12px;
}

.staff-modal-avatar {
  width: 150px;
  height: 150px;
  margin: 25px 0px auto;
}

.staff-modal-header {
  font-size: xx-large;
}

.staff-modal-text {
  margin-top: 25px;
}

.menu-container {
  max-width: 400px;
  margin: 20px auto;
  padding: 16px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-family: 'Segoe UI', sans-serif;
}

.menu-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
  text-align: center;
  color: #333;
}

.menu-preview img {
  width: 100%;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}

.menu-preview img:hover {
  transform: scale(1.02);
}

/* Modal Styles */
.menu-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.9);
}

.menu-modal-content {
  display: block;
  margin: 20px auto;
  width: 90%;
  max-height: 90vh;
}

.menu-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.menu-button {
  display: inline-block;
  background-color: #26cbc5;
  color: white;
  padding: 8px 35px;
  border-radius: 9px;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: lighter;
  letter-spacing: 1.5px;
  transition: background-color 0.3s ease;
  text-decoration: none;
  margin-top: 10px;
  cursor: pointer;
}

.menu-button:hover {
  background-color: #17b1b1; /* slightly darker on hover */
}